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

Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
This commit is contained in:
Pavel Sobolev
2026-07-18 17:17:15 +03:00
parent b80f9f985b
commit 35384eaf95
2 changed files with 31 additions and 0 deletions

View File

@@ -2,3 +2,5 @@ DIST protoc-gen-go-grpc-1.81.1-deps.tar.xz 1315680 BLAKE2B 7240c627f8efe5769a49b
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
DIST protoc-gen-go-grpc-1.82.1-deps.tar.xz 1263984 BLAKE2B 6c18385b9cd82f69a642d2027e7f3f2e4f2ab967132eb981161d87b6c3316b8d5ed0268c5848ea53f492980551c0d12b170f29bd3f7b2f2ae5f7dda5fe462157 SHA512 7db79954eb9e8f6217b9f013b3d7300f53a7643ca7787f2f8c94249a2cf48289ff86abd9f371c47eb4af5e521105ac43c5c53304dca0d7fcb2eb1002f6b662a8
DIST protoc-gen-go-grpc-1.82.1.tar.gz 3093725 BLAKE2B 5f082ecb356af6db9f37f01b2b2769c0515e8c7fb37b892a83a6c78f14d2c465b5d09600d875dc24144005de282623a1baa391d768014b2bc11a0b7190e49f5f SHA512 9f649739946491afe117deef7a56f03fabcb9e4d16d6f9d3c6933dbfb98958cdd5f733a5474be67daab20fe79a39c835aec0160d478db7ae8444a14976ab210b

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
}