Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/debootstrap: ChangeLog debootstrap-1.0.72.ebuild
Date: Wed, 29 Jul 2015 04:31:53
Message-Id: 20150729043146.92A3C113@oystercatcher.gentoo.org
1 jer 15/07/29 04:31:46
2
3 Modified: ChangeLog
4 Added: debootstrap-1.0.72.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.287 dev-util/debootstrap/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/debootstrap/ChangeLog?rev=1.287&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/debootstrap/ChangeLog?rev=1.287&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/debootstrap/ChangeLog?r1=1.286&r2=1.287
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/debootstrap/ChangeLog,v
20 retrieving revision 1.286
21 retrieving revision 1.287
22 diff -u -r1.286 -r1.287
23 --- ChangeLog 10 Jul 2015 06:57:53 -0000 1.286
24 +++ ChangeLog 29 Jul 2015 04:31:46 -0000 1.287
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/debootstrap
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/ChangeLog,v 1.286 2015/07/10 06:57:53 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/ChangeLog,v 1.287 2015/07/29 04:31:46 jer Exp $
30 +
31 +*debootstrap-1.0.72 (29 Jul 2015)
32 +
33 + 29 Jul 2015; Jeroen Roovers <jer@g.o> +debootstrap-1.0.72.ebuild:
34 + Version bump.
35
36 *debootstrap-1.0.71 (10 Jul 2015)
37
38
39
40
41 1.1 dev-util/debootstrap/debootstrap-1.0.72.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.72.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.72.ebuild?rev=1.1&content-type=text/plain
45
46 Index: debootstrap-1.0.72.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.72.ebuild,v 1.1 2015/07/29 04:31:46 jer Exp $
51
52 EAPI=5
53 inherit eutils
54
55 DESCRIPTION="Debian/Ubuntu bootstrap scripts"
56 HOMEPAGE="http://packages.qa.debian.org/d/debootstrap.html"
57 SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz
58 mirror://gentoo/devices.tar.gz"
59
60 LICENSE="MIT"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
63
64 RDEPEND="
65 app-arch/dpkg
66 net-misc/wget
67 sys-devel/binutils
68 "
69
70 DOCS=( TODO debian/changelog )
71
72 src_unpack() {
73 unpack ${PN}_${PV}.tar.gz
74 cp "${DISTDIR}"/devices.tar.gz "${S}"
75 }
76
77 src_compile() {
78 return
79 }
80
81 src_install() {
82 default
83 doman debootstrap.8
84 }
85
86 pkg_postinst() {
87 if ! has_version ${CATEGORY}/${PN} && ! has_version app-crypt/gnupg; then
88 elog "To check Release files against a keyring"
89 elog " (--keyring=K), please install app-crypt/gnupg."
90 fi
91 }