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: Fri, 10 May 2019 08:54:47
Message-Id: 1557478450.ea6ad8e10c8f9693c6ed2d9f54b1aed490a1e677.mrueg@gentoo
1 commit: ea6ad8e10c8f9693c6ed2d9f54b1aed490a1e677
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 10 08:52:01 2019 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri May 10 08:54:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea6ad8e1
7
8 net-misc/istioctl: Version bump to 1.1.6
9
10 Package-Manager: Portage-2.3.66, 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.6.ebuild | 35 +++++++++++++++++++++++++++++++++
15 2 files changed, 36 insertions(+)
16
17 diff --git a/net-misc/istioctl/Manifest b/net-misc/istioctl/Manifest
18 index 2a4cf6b07f8..c5d204c0e1e 100644
19 --- a/net-misc/istioctl/Manifest
20 +++ b/net-misc/istioctl/Manifest
21 @@ -1,3 +1,4 @@
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 DIST istioctl-1.1.4.tar.gz 20705247 BLAKE2B d3727dafcfa8a630a02040fe452a3a2b6c89d4dc2ede4128b9906adf21d97e68f8b126783d248239416a459357bee72ca0f2af19a6d34039ad59b3ade6f3b6d1 SHA512 e866fcad482ef605e4126fffe421eff7fbc1733e5d949e2ebe846f790d8825bb79d5360fe48d29913f0b015c15bc1aac224ac9f39e4e7d5948f2dcd5042570a8
25 +DIST istioctl-1.1.6.tar.gz 20707819 BLAKE2B 0ebd34873e6ff1fec2413afed8b4fe80baee8e9bec55bc2fab15b25266b404fb05fce6bfd0e122c5eb3fa661f5633a431aaa3042ad6d12caf2c4feb58bdbaa5e SHA512 62b9b96547af6f8050f934e4d620ab1990afc805c0abbdbc7933220d28676542222b4452f8207dbe5976116bfe8ae557ee7545e1859b0ab22d9c0c2510950fca
26
27 diff --git a/net-misc/istioctl/istioctl-1.1.6.ebuild b/net-misc/istioctl/istioctl-1.1.6.ebuild
28 new file mode 100644
29 index 00000000000..3242c555827
30 --- /dev/null
31 +++ b/net-misc/istioctl/istioctl-1.1.6.ebuild
32 @@ -0,0 +1,35 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit golang-vcs-snapshot
39 +
40 +GIT_COMMIT="04850e14d38a69a38c16c800e237b1108056513e"
41 +
42 +KEYWORDS="~amd64"
43 +DESCRIPTION="Istio configuration command line utility"
44 +EGO_PN="istio.io/istio"
45 +HOMEPAGE="https://github.com/istio/istio"
46 +MY_PV=${PV/_/-}
47 +SRC_URI="https://github.com/istio/istio/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
48 +LICENSE="Apache-2.0"
49 +SLOT="0"
50 +IUSE=""
51 +
52 +RESTRICT="test"
53 +
54 +src_compile() {
55 + pushd "src/${EGO_PN}" || die
56 + BUILDINFO="istio.io/istio/pkg/version.buildVersion=${PV}
57 + istio.io/istio/pkg/version.buildGitRevision=${GIT_COMMIT}
58 + istio.io/istio/pkg/version.buildStatus=Clean" \
59 + VERBOSE=1 GOPATH="${WORKDIR}/${P}" TAG=${PV} emake istioctl
60 + popd || die
61 +}
62 +
63 +src_install() {
64 + dobin out/linux_amd64/release/${PN}
65 + pushd "src/${EGO_PN}" || die
66 + dodoc README.md
67 +}