Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/buildah/
Date: Thu, 28 Jun 2018 19:20:18
Message-Id: 1530213594.ba82d90e279725f635fdab7524c18177fdc3cd1e.zmedico@gentoo
1 commit: ba82d90e279725f635fdab7524c18177fdc3cd1e
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 28 19:19:05 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 28 19:19:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba82d90e
7
8 app-emulation/buildah: remove version 1.0
9
10 Closes: https://bugs.gentoo.org/658338
11 Package-Manager: Portage-2.3.41, Repoman-2.3.9
12
13 app-emulation/buildah/Manifest | 1 -
14 app-emulation/buildah/buildah-1.0.ebuild | 46 --------------------------------
15 2 files changed, 47 deletions(-)
16
17 diff --git a/app-emulation/buildah/Manifest b/app-emulation/buildah/Manifest
18 index 609d9b7c884..a7372b56026 100644
19 --- a/app-emulation/buildah/Manifest
20 +++ b/app-emulation/buildah/Manifest
21 @@ -1,2 +1 @@
22 -DIST buildah-1.0.tar.gz 2865669 BLAKE2B 7749ed00637fff9c2bcee63ef9e8985b3e6e2abff1c1f4787dc0730b9765576fac9173dd05cbc289aed3c0d20ff374a78976beb86c73adb221184415e4906a41 SHA512 17779e5bbc20fff6da607898620a8193e11ef13ddc033e7868776aab53a710e09428dca0450f11368d750bf7179fd4850ac3a8a445bd9537d987bd837853f4e5
23 DIST buildah-1.1.tar.gz 4253820 BLAKE2B ae30a677a2f569d87da0ab85732078912598cf25f7b22ad25540f5d89797983a8549eef1bc8d151d4e0be078b97e024df145bb882bdd8443becb07774bfb5875 SHA512 9957590d7413436195307746682496616fd2350b832242f33fb4cb07c1144addae445eeff062f403d26a68329f1153468489032bc9bbcf870839c760a720ef95
24
25 diff --git a/app-emulation/buildah/buildah-1.0.ebuild b/app-emulation/buildah/buildah-1.0.ebuild
26 deleted file mode 100644
27 index baf50ef426d..00000000000
28 --- a/app-emulation/buildah/buildah-1.0.ebuild
29 +++ /dev/null
30 @@ -1,46 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -inherit bash-completion-r1 golang-vcs-snapshot
36 -
37 -KEYWORDS="~amd64"
38 -DESCRIPTION="A tool that facilitates building OCI images"
39 -HOMEPAGE="https://github.com/projectatomic/buildah"
40 -LICENSE="Apache-2.0"
41 -SLOT="0"
42 -IUSE=""
43 -EGO_PN="${HOMEPAGE#*//}"
44 -EGIT_COMMIT="v${PV}"
45 -GIT_COMMIT="1ab80bc"
46 -SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
47 -RDEPEND="app-crypt/gpgme:=
48 - app-emulation/skopeo
49 - dev-libs/libgpg-error:=
50 - dev-libs/libassuan:=
51 - sys-fs/lvm2:=
52 - sys-libs/libseccomp:="
53 -DEPEND="${RDEPEND}"
54 -RESTRICT="test"
55 -S="${WORKDIR}/${P}/src/${EGO_PN}"
56 -
57 -src_prepare() {
58 - default
59 - sed -e 's|^\(GIT_COMMIT := \).*|\1'${GIT_COMMIT}'|' -i Makefile || die
60 -}
61 -
62 -src_compile() {
63 - GOPATH="${WORKDIR}/${P}" emake all
64 -}
65 -
66 -src_install() {
67 - dodoc README.md
68 - doman docs/*.1
69 - dodoc -r docs/tutorials
70 - dobin ${PN} imgtype
71 - dobashcomp contrib/completions/bash/buildah
72 -}
73 -
74 -src_test() {
75 - GOPATH="${WORKDIR}/${P}" emake test-unit
76 -}