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, 01 Aug 2019 13:56:29
Message-Id: 1564667772.9c7faadf7c21a38c6fae5a98916da1413c4c79cc.mrueg@gentoo
1 commit: 9c7faadf7c21a38c6fae5a98916da1413c4c79cc
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 1 13:56:12 2019 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 1 13:56:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c7faadf
7
8 net-misc/istioctl: Version bump to 1.1.12
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
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.12.ebuild | 35 ++++++++++++++++++++++++++++++++
15 2 files changed, 36 insertions(+)
16
17 diff --git a/net-misc/istioctl/Manifest b/net-misc/istioctl/Manifest
18 index 214d5a07884..b48f2375900 100644
19 --- a/net-misc/istioctl/Manifest
20 +++ b/net-misc/istioctl/Manifest
21 @@ -1 +1,2 @@
22 +DIST istioctl-1.1.12.tar.gz 20720842 BLAKE2B c7b70ee162daabcf82cc8cbd8ec61d49b68189fcab43a1f04daa9dee6701075330557d2567cabae7f8fa37a2b3ebac23def53cca43930a9c1bf5079c15198f48 SHA512 a7aa37a2ec12b802d38a27cc4b6131ec604e14f0c64d2a3619f2918cc24cbf7bf0e291d58185e0481d544b28264f8782636abdca5afdacde6c3ad41ae616b90d
23 DIST istioctl-1.1.8.tar.gz 20718514 BLAKE2B 20b492932906bab3d8fd2e66452acf42a3b8fc07bb42e95217410b32ede68f2dc4256f4e33b104428996a3cfa2f30c798ccf2cc3794079c8936d353330763c88 SHA512 907bff4a7239e0e615fcc3ea92c98d944916dc88c744d574b5362e622729e8fb5a79e549a7f0beece5235918d7891ef6283e6b1e3f789980450d7eee1e131e2b
24
25 diff --git a/net-misc/istioctl/istioctl-1.1.12.ebuild b/net-misc/istioctl/istioctl-1.1.12.ebuild
26 new file mode 100644
27 index 00000000000..40518fcd4c1
28 --- /dev/null
29 +++ b/net-misc/istioctl/istioctl-1.1.12.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="473d9b3"
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 +}