diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-12-28 15:33:15 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-12-28 15:33:15 +0000 |
commit | e9bcb8bf534f714d6975ac7456cb7c7ae76a1e38 (patch) | |
tree | a8b43a3121641ba0c25acb74abd2b7512a2495a0 /dev-util | |
parent | Stable for sparc, wrt bug #389839 (diff) | |
download | gentoo-2-e9bcb8bf534f714d6975ac7456cb7c7ae76a1e38.tar.gz gentoo-2-e9bcb8bf534f714d6975ac7456cb7c7ae76a1e38.tar.bz2 gentoo-2-e9bcb8bf534f714d6975ac7456cb7c7ae76a1e38.zip |
Version bump.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/debootstrap/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/debootstrap/debootstrap-1.0.46.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/dev-util/debootstrap/ChangeLog b/dev-util/debootstrap/ChangeLog index f04711381805..1f91b0ea2791 100644 --- a/dev-util/debootstrap/ChangeLog +++ b/dev-util/debootstrap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/debootstrap # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/ChangeLog,v 1.199 2012/12/25 22:25:39 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/ChangeLog,v 1.200 2012/12/28 15:33:15 jer Exp $ + +*debootstrap-1.0.46 (28 Dec 2012) + + 28 Dec 2012; Jeroen Roovers <jer@gentoo.org> +debootstrap-1.0.46.ebuild: + Version bump. 25 Dec 2012; Agostino Sarubbo <ago@gentoo.org> debootstrap-1.0.44.ebuild: Stable for ia64, wrt bug #448102 diff --git a/dev-util/debootstrap/debootstrap-1.0.46.ebuild b/dev-util/debootstrap/debootstrap-1.0.46.ebuild new file mode 100644 index 000000000000..4586a8d49946 --- /dev/null +++ b/dev-util/debootstrap/debootstrap-1.0.46.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.46.ebuild,v 1.1 2012/12/28 15:33:15 jer Exp $ + +EAPI=4 +inherit eutils + +DESCRIPTION="Debian/Ubuntu bootstrap scripts" +HOMEPAGE="http://packages.qa.debian.org/d/debootstrap.html" +SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz + mirror://gentoo/devices.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="" + +RDEPEND=" + app-arch/dpkg + net-misc/wget + sys-devel/binutils +" + +DOCS=( TODO debian/changelog ) + +src_unpack() { + unpack ${PN}_${PV}.tar.gz + cp "${DISTDIR}"/devices.tar.gz "${S}" +} + +src_compile() { + return +} + +src_install() { + default + doman debootstrap.8 +} + +pkg_postinst() { + elog "To check Release files against a keyring" + elog " (--keyring=K), please install app-crypt/gnupg." +} |