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/reg/
Date: Mon, 11 Jun 2018 09:34:48
Message-Id: 1528709635.6edcfc66998ac7294dc5c2f20ee4e4386f4606b8.mrueg@gentoo
1 commit: 6edcfc66998ac7294dc5c2f20ee4e4386f4606b8
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 11 09:33:55 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 11 09:33:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6edcfc66
7
8 app-emulation/reg: Remove old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-emulation/reg/Manifest | 1 -
13 app-emulation/reg/reg-0.13.0.ebuild | 31 -------------------------------
14 2 files changed, 32 deletions(-)
15
16 diff --git a/app-emulation/reg/Manifest b/app-emulation/reg/Manifest
17 index 72a6bf3e63c..fb3513d706c 100644
18 --- a/app-emulation/reg/Manifest
19 +++ b/app-emulation/reg/Manifest
20 @@ -1,2 +1 @@
21 -DIST reg-0.13.0.tar.gz 14958008 BLAKE2B 7afdb3f00732ad3fe4e8581d0773ba3d8ed4e9d41704e5aec7e45f16e407d19cc30cf8d4461d32719200b0253d26b609ff641c760b220685edb98bfb49f9b6b6 SHA512 7b9c23de23b798e9da4902a00d965c62452997240f53980eda478c8fa59ade985ca2f25fbe902597bcb32440dfcd41bd72c4631b4f4be956a48b75875e134018
22 DIST reg-0.13.1.tar.gz 2931156 BLAKE2B 56245364c348f800e77b25d4c7326a721bd041ac865aa4ac55eefa60a6d1746176e109247967f42bc48727c56fd91c47f2d76aa245f208aff64a26b77b4394f8 SHA512 c64b5a21cb5f2e3d64d9a80309a2eab3e1002b6aba1a59b87d873326e9c2c722ccbfa0778aa14a2cc1fca86dcd3ad1bf7eeef3e7293c835fef00e11e413decfb
23
24 diff --git a/app-emulation/reg/reg-0.13.0.ebuild b/app-emulation/reg/reg-0.13.0.ebuild
25 deleted file mode 100644
26 index e053da6337a..00000000000
27 --- a/app-emulation/reg/reg-0.13.0.ebuild
28 +++ /dev/null
29 @@ -1,31 +0,0 @@
30 -# Copyright 1999-2018 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/genuinetools/reg"
37 -EGIT_COMMIT="v${PV}"
38 -GIT_COMMIT="b2cdf0428ddc051f8a39143b63311b515e26d012"
39 -ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
40 -KEYWORDS="~amd64"
41 -
42 -DESCRIPTION="Docker registry v2 command line client"
43 -HOMEPAGE="https://github.com/genuinetools/reg"
44 -SRC_URI="${ARCHIVE_URI}"
45 -LICENSE="MIT"
46 -SLOT="0"
47 -IUSE=""
48 -
49 -RESTRICT="test"
50 -
51 -src_compile() {
52 - pushd src/${EGO_PN} || die
53 - GOPATH="${S}" go build -v -ldflags "-X ${EGO_PN}/version.GITCOMMIT=${GIT_COMMIT} -X ${EGO_PN}/version.VERSION=${PV}" -o "${S}"/bin/reg . || die
54 - popd || die
55 -}
56 -
57 -src_install() {
58 - dobin bin/*
59 - dodoc src/${EGO_PN}/README.md
60 -}