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: Sun, 03 Jun 2018 13:33:15
Message-Id: 1528032781.b3620f5a2deaa7709595f8ffaf73f7e61a8a4462.jer@gentoo
1 commit: b3620f5a2deaa7709595f8ffaf73f7e61a8a4462
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 13:30:18 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 13:33:01 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3620f5a
7
8 dev-util/debootstrap: Version 1.0.100.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-util/debootstrap/Manifest | 1 +
13 dev-util/debootstrap/debootstrap-1.0.100.ebuild | 48 +++++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/dev-util/debootstrap/Manifest b/dev-util/debootstrap/Manifest
17 index e0a9b67576d..f42c61ef172 100644
18 --- a/dev-util/debootstrap/Manifest
19 +++ b/dev-util/debootstrap/Manifest
20 @@ -1,3 +1,4 @@
21 +DIST debootstrap_1.0.100.tar.gz 72269 BLAKE2B 76cb0268d3401463bd4ba72f0bab6b2d854b762df092c7fd6320b15d0de17d6a53ca1beb32df0cbe6beffe0a85909611a8b5ff8b9356fbf61501360cd2eeec98 SHA512 36bdf55207d73f9b5c259b1d9c19c36918778ca35478bf654a97d82d5e98fb6293fbf68adfa2e0a113e0d53ec48f19173232587fb1f727068b2516e9e51436d3
22 DIST debootstrap_1.0.89.tar.gz 69020 BLAKE2B 9175d0936b6c9a28a29ee1b24bd835c41aaf807bc24a029201aaa45d07789206ee06e38b0a70c1e507ab448a3ec9c0fded2838bfb868334270b5159b34cbe9eb SHA512 3f230ce3eff6359353d106c806ce395861fb47fc1416eb0b498af7ce12a45ce7572b18284633d6d4d07b73a4a203e03bc205df3eae0db6f637237d25d0a69b1a
23 DIST debootstrap_1.0.98.tar.gz 71819 BLAKE2B 4ac11484540407b8a4ebd1dac42ba99bc1d079989bcbe9b5a69ebb97f621e6beae34a2057726517a69a111087dbbe788e205b73a65a5330578aba3f63db9e34d SHA512 4ab6c6599f09c0d0d851d991cbe780ab6a74df4dd46df02d40e1e03682ea57680a69044a1524c75392e1e726aa538b4fca4fb26e42a140ac4cc00f86c0af29cd
24 DIST debootstrap_1.0.99.tar.gz 71865 BLAKE2B 073c3c42133e2fa459cfc3e6a1737e8ceeb2f28986c139734c77a40fb57db293bf664493f6e10f4c1cfac83297b61e9e8fe1da267cc848a1e459fdd6af2ef157 SHA512 1eae4be2b50e98c1c867701affee8b4c63a54418af789bca78ff411c4c97a6284139850d71c118fddd6c62df9223f9ff960a21d45ccf8bdadc9bf0b11eb315fe
25
26 diff --git a/dev-util/debootstrap/debootstrap-1.0.100.ebuild b/dev-util/debootstrap/debootstrap-1.0.100.ebuild
27 new file mode 100644
28 index 00000000000..93ffd5d2d1a
29 --- /dev/null
30 +++ b/dev-util/debootstrap/debootstrap-1.0.100.ebuild
31 @@ -0,0 +1,48 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +inherit eutils
37 +
38 +DESCRIPTION="Debian/Ubuntu bootstrap scripts"
39 +HOMEPAGE="https://packages.qa.debian.org/d/debootstrap.html"
40 +SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz
41 + mirror://gentoo/devices.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
46 +
47 +RDEPEND="
48 + app-arch/dpkg
49 + net-misc/wget
50 + sys-devel/binutils
51 +"
52 +DOCS=( TODO debian/changelog )
53 +
54 +src_unpack() {
55 + unpack ${PN}_${PV}.tar.gz
56 + cp "${DISTDIR}"/devices.tar.gz "${S}"
57 +}
58 +
59 +src_compile() {
60 + return
61 +}
62 +
63 +src_install() {
64 + default
65 + doman debootstrap.8
66 +}
67 +
68 +pkg_postinst() {
69 + if ! has_version ${CATEGORY}/${PN} && ! has_version app-crypt/gnupg; then
70 + elog "To check Release files against a keyring (--keyring=K), please"
71 + elog "install app-crypt/gnupg"
72 + fi
73 +
74 + if ! has_version app-crypt/debian-archive-keyring || ! has_version app-crypt/ubuntu-keyring; then
75 + elog "To check Release files from Debian or Ubuntu, please install"
76 + elog " app-crypt/debian-archive-keyring or"
77 + elog " app-crypt/ubuntu-keyring as required"
78 + fi
79 +}