diff options
author | 2020-07-10 18:29:14 -0500 | |
---|---|---|
committer | 2020-07-10 18:29:14 -0500 | |
commit | af41558f035c4433f943cfe72f367cdc40b7be6b (patch) | |
tree | ec8146eda86597a8979188156e962efe53b505d0 /dev-go/gogo-protobuf/gogo-protobuf-1.3.1.ebuild | |
parent | profiles: mask dev-tex/xmltex for removal (diff) | |
download | gentoo-af41558f035c4433f943cfe72f367cdc40b7be6b.tar.gz gentoo-af41558f035c4433f943cfe72f367cdc40b7be6b.tar.bz2 gentoo-af41558f035c4433f943cfe72f367cdc40b7be6b.zip |
dev-go/gogo-protobuf: 1.3.1 bump
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'dev-go/gogo-protobuf/gogo-protobuf-1.3.1.ebuild')
-rw-r--r-- | dev-go/gogo-protobuf/gogo-protobuf-1.3.1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-go/gogo-protobuf/gogo-protobuf-1.3.1.ebuild b/dev-go/gogo-protobuf/gogo-protobuf-1.3.1.ebuild new file mode 100644 index 000000000000..638494adde97 --- /dev/null +++ b/dev-go/gogo-protobuf/gogo-protobuf-1.3.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit go-module + +DESCRIPTION="Protocol Buffers for Go with Gadgets" +HOMEPAGE="https://github.com/gogo/protobuf" + +EGO_SUM=( + "github.com/kisielk/errcheck v1.1.0" + "github.com/kisielk/errcheck v1.1.0/go.mod" + "github.com/kisielk/errcheck v1.2.0" + "github.com/kisielk/errcheck v1.2.0/go.mod" + "github.com/kisielk/gotool v1.0.0" + "github.com/kisielk/gotool v1.0.0/go.mod" + "golang.org/x/tools v0.0.0-20180221164845-07fd8470d635" + "golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod" + "golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563" + "golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod" + ) +go-module_set_globals +SRC_URI="https://github.com/gogo/protobuf/archive/v${PV}.tar.gz -> ${P}.tar.gz + ${EGO_SUM_SRC_URI}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RESTRICT+=" test" + +S="${WORKDIR}/protobuf-${PV}" + +src_compile() { + GOBIN="${S}/bin" emake install || die +} + +src_install() { + dobin bin/* + dodoc README +} |