blob: e4f625bc944dde74c0b63268be3bdc892cf22fde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGO_SRC="github.com/golang/protobuf"
EGO_PN=${EGO_SRC}/...
EGO_VENDOR=(
"google.golang.org/genproto af9cb2a35e7f169ec875002c1829c9b315cddc04 github.com/google/go-genproto"
"golang.org/x/net aaf60122140d3fcf75376d319f0554393160eb50 github.com/golang/net"
"golang.org/x/sync 1d60e4601c6fd243af51cc01ddf169918a5407ca github.com/golang/sync"
"google.golang.org/protobuf v1.27.1 github.com/protocolbuffers/protobuf-go"
)
inherit golang-build golang-vcs-snapshot
DESCRIPTION="Go support for Google's protocol buffers"
HOMEPAGE="https://github.com/golang/protobuf"
SRC_URI="https://${EGO_SRC}/archive/v${PV}.tar.gz -> ${P}.tar.gz
${EGO_VENDOR_URI}"
LICENSE="BSD"
SLOT="0/${PVR}"
KEYWORDS="amd64 x86"
IUSE="test"
DEPEND="test? ( dev-libs/protobuf )"
RDEPEND=""
RESTRICT="!test? ( test )"
#src_prepare() {
# default
# golden_test.go:113: golden file differs: deprecated/deprecated.pb.go
# sed -e 's:^\(func \)\(TestGolden\):\1_\2:' \
# -i src/${EGO_SRC}/protoc-gen-go/golden_test.go || die
#}
src_compile() {
env GOPATH="${S}" \
go install -v -work -x ${EGO_BUILD_FLAGS} "${EGO_PN}" || die
}
src_test() {
GOPATH="${S}" \
go test -v -work -x "${EGO_PN}" || die
}
src_install() {
rm -rf src/${EGO_SRC}/.git* || die
golang_install_pkgs
rm -rf "${D%/}$(get_golibdir_gopath)/src/${EGO_SRC}/vendor" || die
dobin bin/*
}
|