Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/debootstrap/
Date: Wed, 21 Nov 2018 23:42:42
Message-Id: 1542843751.745c73c6a29ad47591b7963eac28ac8bace7bb32.jer@gentoo
1 commit: 745c73c6a29ad47591b7963eac28ac8bace7bb32
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 21 23:32:20 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 21 23:42:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=745c73c6
7
8 dev-util/debootstrap: Old
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 dev-util/debootstrap/Manifest | 1 -
14 dev-util/debootstrap/debootstrap-1.0.108.ebuild | 48 -------------------------
15 2 files changed, 49 deletions(-)
16
17 diff --git a/dev-util/debootstrap/Manifest b/dev-util/debootstrap/Manifest
18 index 57215e3e430..ea4f88208d6 100644
19 --- a/dev-util/debootstrap/Manifest
20 +++ b/dev-util/debootstrap/Manifest
21 @@ -1,4 +1,3 @@
22 -DIST debootstrap_1.0.108.tar.gz 74631 BLAKE2B 3b676f993843dc70bcbb38929f8e90357c1be45430178fce9ccf7320fc5cf9fed5e9f6eb3137878fe86fcdbc082315f9edecbec321453c22fa588c601206895d SHA512 69f71ffe6668e0fef95f88f74d8625ca32eed11a43b893ad79e4e1abc8c79156bc9a3f8d2465465577d83cfe2ea40692f2f616f173edab0b1d9ea3c3a04b9736
23 DIST debootstrap_1.0.109.tar.gz 74602 BLAKE2B e22239076c917bedd346b1639c80d7faf5399f66518ed67b1f1278a7cef2dfa9b0babe7691597eb1038d5f7c23086c5427a71d587214463692c65c9919914064 SHA512 6e55e14d803617b33bc00381b53c465e403f4aaf8765aecb04332e6c87e9b4fed6a23f55eabc4c11910be42bf9cbf88dacbee992754aa4e233cb79a826177cbb
24 DIST debootstrap_1.0.110.tar.gz 74847 BLAKE2B fe715bf7657aebfab40f4196f69c29ee0a3ee5c882e1618645cebb30e792a8bc5db3c0cbc7b0978b89462f1109a1257c9702260471f4d9c8231062f1947123b4 SHA512 5c89887073d1ddd06eeeb57cf36c908ae5a4094cafbbab1ea6cade376f6babc9bf6c981989a2a1b9b5da89f1ab8096b7283d3d7565a1d90af0174095d93f2a7f
25 DIST debootstrap_1.0.89.tar.gz 69020 BLAKE2B 9175d0936b6c9a28a29ee1b24bd835c41aaf807bc24a029201aaa45d07789206ee06e38b0a70c1e507ab448a3ec9c0fded2838bfb868334270b5159b34cbe9eb SHA512 3f230ce3eff6359353d106c806ce395861fb47fc1416eb0b498af7ce12a45ce7572b18284633d6d4d07b73a4a203e03bc205df3eae0db6f637237d25d0a69b1a
26
27 diff --git a/dev-util/debootstrap/debootstrap-1.0.108.ebuild b/dev-util/debootstrap/debootstrap-1.0.108.ebuild
28 deleted file mode 100644
29 index 93ffd5d2d1a..00000000000
30 --- a/dev-util/debootstrap/debootstrap-1.0.108.ebuild
31 +++ /dev/null
32 @@ -1,48 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -inherit eutils
38 -
39 -DESCRIPTION="Debian/Ubuntu bootstrap scripts"
40 -HOMEPAGE="https://packages.qa.debian.org/d/debootstrap.html"
41 -SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz
42 - mirror://gentoo/devices.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
47 -
48 -RDEPEND="
49 - app-arch/dpkg
50 - net-misc/wget
51 - sys-devel/binutils
52 -"
53 -DOCS=( TODO debian/changelog )
54 -
55 -src_unpack() {
56 - unpack ${PN}_${PV}.tar.gz
57 - cp "${DISTDIR}"/devices.tar.gz "${S}"
58 -}
59 -
60 -src_compile() {
61 - return
62 -}
63 -
64 -src_install() {
65 - default
66 - doman debootstrap.8
67 -}
68 -
69 -pkg_postinst() {
70 - if ! has_version ${CATEGORY}/${PN} && ! has_version app-crypt/gnupg; then
71 - elog "To check Release files against a keyring (--keyring=K), please"
72 - elog "install app-crypt/gnupg"
73 - fi
74 -
75 - if ! has_version app-crypt/debian-archive-keyring || ! has_version app-crypt/ubuntu-keyring; then
76 - elog "To check Release files from Debian or Ubuntu, please install"
77 - elog " app-crypt/debian-archive-keyring or"
78 - elog " app-crypt/ubuntu-keyring as required"
79 - fi
80 -}