dev-go/protoc-gen-go-grpc: add 1.82.0

Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
This commit is contained in:
Pavel Sobolev
2026-07-11 17:11:49 +03:00
parent 7214ab4846
commit 96bf83929a
2 changed files with 31 additions and 0 deletions

View File

@@ -2,3 +2,5 @@ DIST protoc-gen-go-grpc-1.80.0-deps.tar.xz 1294928 BLAKE2B 36f71f2682b8173c5a5b9
DIST protoc-gen-go-grpc-1.80.0.tar.gz 2993187 BLAKE2B 38b2d6d8a1c7a00c1a79215bd90ab85839e42733ec1b43da8314d653c87caed98f13535c30435ae750ae50e8e266fcdf5051c4936546333b14f6a2c28caad4b6 SHA512 4469b11decf4c72ed4fab8e9088a0333f91cf3d3f2271bf86c87c0bdd01d200f1dd1d76ec5d73df25ad6c804bf14d2a5efbd450151bcee912c366b69971557bc
DIST protoc-gen-go-grpc-1.81.1-deps.tar.xz 1315680 BLAKE2B 7240c627f8efe5769a49b175eff9063baca37fc32f9043055378b2eb7a6ce5b774310af62bd583a3c72e01937da3794133f698b7c92baadde19b048d2091c07b SHA512 92ebeba91d9548eb2745e763581de283d7716899a52f3d9887f866fd401edf340461cf7721f3bf8367cad10db34a78f62e449327ba869d0cea3cab0981e9f933
DIST protoc-gen-go-grpc-1.81.1.tar.gz 3044195 BLAKE2B c5381ba198b444c14a05627ec4a8ea1acde5301e83d9f63a3d9e9f3edd9120f6c8e398dc90ad3d9cb9611cb16941d4b4e38caacc65984227a989554c3668ad55 SHA512 f90bb1a0db63de682ae73354390cc6d15ea30a9706ffad4cdf4d40890854ee4309c21c6f97078ec72730a300879891b840cce1a502fc96328f65fb2eef285aa9
DIST protoc-gen-go-grpc-1.82.0-deps.tar.xz 1264236 BLAKE2B 133441230cd87dc7f187347715794cefecc3a52a360bdf9cf6117258dac1c44e256f8eb267253d375887ea22e7b96a3b8888592dc836ee75df49681017771082 SHA512 19e223e6e6d6d0cf2e6feb8d51fafc49e9047a0761b71377181a93a4dfb634c1bfbb6c1fbc6bf6b55143378fa9ff9725bfe84467b4d253d79b3870136c26b226
DIST protoc-gen-go-grpc-1.82.0.tar.gz 3092925 BLAKE2B ad0d8701c226db1ae19970c81effac7d1560221f852a48ca6b48d459318b5bcefa2df6773113b38090b95d816d3f627c27f2411a97c4359bf5491bcfdab1c568 SHA512 b3fa9eb7406d9f9be7b5174d89bef5c6de6d2d1213073c9f7081242065df573023be2496d48f906a95af68a6fd0a032abcd9daa0179c25100535f5013f2ea29a

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Generates Go language bindings of services in protobuf definition files for gRPC"
HOMEPAGE="https://github.com/grpc/grpc-go/tree/master/cmd/protoc-gen-go-grpc"
SRC_URI="
https://github.com/grpc/grpc-go/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://gitlab.com/api/v4/projects/69517529/packages/generic/${PN}/${PV}/${P}-deps.tar.xz
"
S="${WORKDIR}/grpc-go-${PV}/cmd/protoc-gen-go-grpc"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND=">=dev-lang/go-1.25.0"
src_compile() {
ego build
}
src_install() {
dobin protoc-gen-go-grpc
}