Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/istioctl/
Date: Thu, 11 Apr 2019 11:11:07
Message-Id: 1554980977.c4c805b3ee6f085f32e524cf871f54341fcfac4d.mrueg@gentoo
1 commit: c4c805b3ee6f085f32e524cf871f54341fcfac4d
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 11 11:09:37 2019 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 11 11:09:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4c805b3
7
8 net-misc/istioctl: Version bump to 1.1.2
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
12
13 net-misc/istioctl/Manifest | 1 +
14 net-misc/istioctl/istioctl-1.1.2.ebuild | 35 +++++++++++++++++++++++++++++++++
15 2 files changed, 36 insertions(+)
16
17 diff --git a/net-misc/istioctl/Manifest b/net-misc/istioctl/Manifest
18 index 5d3dc14d644..b2d8ab1cb1e 100644
19 --- a/net-misc/istioctl/Manifest
20 +++ b/net-misc/istioctl/Manifest
21 @@ -1 +1,2 @@
22 DIST istioctl-1.0.2.tar.gz 18828091 BLAKE2B 064e9ad8b2629809c7b55514ad0a537bae8785bfebabea610a54ead0a0e665cdc718218376e07dcf5e235f8674bdd9e2eaa7a79bfd5d5485a5ddc841e1c52527 SHA512 d444dd8e0676ac9b36dc3901595f15d6504991619a82057f924141f752d2a45866df9ca388d6c63e1fbe43be4d4156f3efc748be59b565f865a0c5b3d02bda07
23 +DIST istioctl-1.1.2.tar.gz 20682375 BLAKE2B bf0da863cade30baeceddcdaa358bce561a1848d018bd31890b2f0fb01e4ac908ca5da8d09a433fefae43c959c1aecba198ffd341c2c1f31de7a575abca973bb SHA512 6f9533f76b1847742198d48bed8fc2b0e288180d4033faf89857eb525c4d956f279a823c13196dd23fd9e46ab4261f9ff31746ac232e19530268d43cfdbaa083
24
25 diff --git a/net-misc/istioctl/istioctl-1.1.2.ebuild b/net-misc/istioctl/istioctl-1.1.2.ebuild
26 new file mode 100644
27 index 00000000000..9ed0c95c5ee
28 --- /dev/null
29 +++ b/net-misc/istioctl/istioctl-1.1.2.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit golang-vcs-snapshot
37 +
38 +GIT_COMMIT="2b1331886076df103179e3da5dc9077fed59c989"
39 +
40 +KEYWORDS="~amd64"
41 +DESCRIPTION="Istio configuration command line utility"
42 +EGO_PN="istio.io/istio"
43 +HOMEPAGE="https://github.com/istio/istio"
44 +MY_PV=${PV/_/-}
45 +SRC_URI="https://github.com/istio/istio/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +IUSE=""
49 +
50 +RESTRICT="test"
51 +
52 +src_compile() {
53 + pushd "src/${EGO_PN}" || die
54 + BUILDINFO="istio.io/istio/pkg/version.buildVersion=${PV}
55 + istio.io/istio/pkg/version.buildGitRevision=${GIT_COMMIT}
56 + istio.io/istio/pkg/version.buildStatus=Clean" \
57 + VERBOSE=1 GOPATH="${WORKDIR}/${P}" TAG=${PV} emake istioctl
58 + popd || die
59 +}
60 +
61 +src_install() {
62 + dobin out/linux_amd64/release/${PN}
63 + pushd "src/${EGO_PN}" || die
64 + dodoc README.md
65 +}