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: app-emulation/kompose/
Date: Tue, 01 Aug 2017 12:24:44
Message-Id: 1501590260.29e849bd76d5ab1c50940e19d6b119ce256dc45e.mrueg@gentoo
1 commit: 29e849bd76d5ab1c50940e19d6b119ce256dc45e
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 1 12:24:20 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 1 12:24:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29e849bd
7
8 app-emulation/kompose: Version bump to 1.0.0
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 app-emulation/kompose/Manifest | 1 +
13 app-emulation/kompose/kompose-1.0.0.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/app-emulation/kompose/Manifest b/app-emulation/kompose/Manifest
17 index 5a5cd698f02..06f2cb02296 100644
18 --- a/app-emulation/kompose/Manifest
19 +++ b/app-emulation/kompose/Manifest
20 @@ -1 +1,2 @@
21 DIST kompose-0.7.0.tar.gz 4980909 SHA256 6b649e91494e57ffd6c6f1d6150072d4c5589d75568172a8f3a0d6cbd7322599 SHA512 a0e8b16221ff25ca5a219646a06dd9254a87c76d5477c5a6c175e782625eb02e41c720278ec409e10f82e8c278ecd941a3d3d49b4220602fec2d3715dbf5e2a7 WHIRLPOOL 460ac6a5c3f25682ec968fef01b72c0b39a8e04cc3d3643f639010e642813a708ea6e91a74dc6d089d90aba6cece6574b83a6b515d2c11bdf9afab34491567f6
22 +DIST kompose-1.0.0.tar.gz 5071108 SHA256 b9c9bfc9f25c67cf7d8d8b76467487255f9882fca563f8e9ef990f647cd2406e SHA512 719b16467b1448d65319d2281a0d641342861c23e10bca204d698c7ae9ad139bee391cc5e17050bdd407b4a982aa55a3db21482225f4370976b1b5ca7fa97bdb WHIRLPOOL 35437e8a9e5ed48f7d397a79496be6dec4b62e00770453103f1746778e7df1969dd76adb81a7a029da4beb20277cff48dfa3d83c9e8bd24b902d195f5f9a9b04
23
24 diff --git a/app-emulation/kompose/kompose-1.0.0.ebuild b/app-emulation/kompose/kompose-1.0.0.ebuild
25 new file mode 100644
26 index 00000000000..dc91ae740a6
27 --- /dev/null
28 +++ b/app-emulation/kompose/kompose-1.0.0.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +inherit golang-build golang-vcs-snapshot
35 +
36 +EGO_PN="github.com/kubernetes/kompose"
37 +EGIT_COMMIT="v${PV}"
38 +COMPOSE_COMMIT="253ec14"
39 +ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
40 +KEYWORDS="~amd64"
41 +
42 +DESCRIPTION="Tool to move from docker-compose to Kubernetes"
43 +HOMEPAGE="https://github.com/kubernetes/kompose"
44 +SRC_URI="${ARCHIVE_URI}"
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +IUSE="hardened"
48 +
49 +RESTRICT="test"
50 +
51 +src_compile() {
52 + export CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')"
53 + GOPATH="${S}" go build -ldflags="-X github.com/kubernetes/kompose/cmd.GITCOMMIT=${COMPOSE_COMMIT}" -o bin/kompose src/${EGO_PN}/main.go || die
54 +}
55 +
56 +src_install() {
57 + dobin bin/*
58 + dodoc -r src/${EGO_PN}/{docs,{README,RELEASE,ROADMAP,CHANGELOG,CONTRIBUTING}.md}
59 +}