From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B5E0A138334 for ; Mon, 11 Jun 2018 09:34:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC083E08CD; Mon, 11 Jun 2018 09:34:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A8270E08CD for ; Mon, 11 Jun 2018 09:34:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7EFF5335C81 for ; Mon, 11 Jun 2018 09:34:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFE223C for ; Mon, 11 Jun 2018 09:34:44 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1528709635.6edcfc66998ac7294dc5c2f20ee4e4386f4606b8.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/reg/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/reg/Manifest app-emulation/reg/reg-0.13.0.ebuild X-VCS-Directories: app-emulation/reg/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 6edcfc66998ac7294dc5c2f20ee4e4386f4606b8 X-VCS-Branch: master Date: Mon, 11 Jun 2018 09:34:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c69cd5fa-f38e-4b3c-a8bc-233eb305c05e X-Archives-Hash: b4c098d41662d5476dde807ae123beb1 commit: 6edcfc66998ac7294dc5c2f20ee4e4386f4606b8 Author: Manuel Rüger gentoo org> AuthorDate: Mon Jun 11 09:33:55 2018 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Jun 11 09:33:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6edcfc66 app-emulation/reg: Remove old Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-emulation/reg/Manifest | 1 - app-emulation/reg/reg-0.13.0.ebuild | 31 ------------------------------- 2 files changed, 32 deletions(-) diff --git a/app-emulation/reg/Manifest b/app-emulation/reg/Manifest index 72a6bf3e63c..fb3513d706c 100644 --- a/app-emulation/reg/Manifest +++ b/app-emulation/reg/Manifest @@ -1,2 +1 @@ -DIST reg-0.13.0.tar.gz 14958008 BLAKE2B 7afdb3f00732ad3fe4e8581d0773ba3d8ed4e9d41704e5aec7e45f16e407d19cc30cf8d4461d32719200b0253d26b609ff641c760b220685edb98bfb49f9b6b6 SHA512 7b9c23de23b798e9da4902a00d965c62452997240f53980eda478c8fa59ade985ca2f25fbe902597bcb32440dfcd41bd72c4631b4f4be956a48b75875e134018 DIST reg-0.13.1.tar.gz 2931156 BLAKE2B 56245364c348f800e77b25d4c7326a721bd041ac865aa4ac55eefa60a6d1746176e109247967f42bc48727c56fd91c47f2d76aa245f208aff64a26b77b4394f8 SHA512 c64b5a21cb5f2e3d64d9a80309a2eab3e1002b6aba1a59b87d873326e9c2c722ccbfa0778aa14a2cc1fca86dcd3ad1bf7eeef3e7293c835fef00e11e413decfb diff --git a/app-emulation/reg/reg-0.13.0.ebuild b/app-emulation/reg/reg-0.13.0.ebuild deleted file mode 100644 index e053da6337a..00000000000 --- a/app-emulation/reg/reg-0.13.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit golang-build golang-vcs-snapshot - -EGO_PN="github.com/genuinetools/reg" -EGIT_COMMIT="v${PV}" -GIT_COMMIT="b2cdf0428ddc051f8a39143b63311b515e26d012" -ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" -KEYWORDS="~amd64" - -DESCRIPTION="Docker registry v2 command line client" -HOMEPAGE="https://github.com/genuinetools/reg" -SRC_URI="${ARCHIVE_URI}" -LICENSE="MIT" -SLOT="0" -IUSE="" - -RESTRICT="test" - -src_compile() { - pushd src/${EGO_PN} || die - GOPATH="${S}" go build -v -ldflags "-X ${EGO_PN}/version.GITCOMMIT=${GIT_COMMIT} -X ${EGO_PN}/version.VERSION=${PV}" -o "${S}"/bin/reg . || die - popd || die -} - -src_install() { - dobin bin/* - dodoc src/${EGO_PN}/README.md -}