summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2013-03-23 18:45:41 +0000
committerJeroen Roovers <jer@gentoo.org>2013-03-23 18:45:41 +0000
commit55afc5c839f59331e975180c83b577db197b32b0 (patch)
tree2f9828ccaad4d3cc8997eb9051800328cfe7ac8b /dev-util
parentStable for HPPA (bug #459904). (diff)
downloadgentoo-2-55afc5c839f59331e975180c83b577db197b32b0.tar.gz
gentoo-2-55afc5c839f59331e975180c83b577db197b32b0.tar.bz2
gentoo-2-55afc5c839f59331e975180c83b577db197b32b0.zip
Explain about gnupg only if this is a new install and if gnupg is not installed.
(Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/debootstrap/ChangeLog6
-rw-r--r--dev-util/debootstrap/debootstrap-1.0.47.ebuild8
2 files changed, 10 insertions, 4 deletions
diff --git a/dev-util/debootstrap/ChangeLog b/dev-util/debootstrap/ChangeLog
index def90e136b2d..75c9548fa3cb 100644
--- a/dev-util/debootstrap/ChangeLog
+++ b/dev-util/debootstrap/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/debootstrap
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/ChangeLog,v 1.214 2013/03/23 18:22:00 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/ChangeLog,v 1.215 2013/03/23 18:45:41 jer Exp $
+
+ 23 Mar 2013; Jeroen Roovers <jer@gentoo.org> debootstrap-1.0.47.ebuild:
+ Explain about gnupg only if this is a new install and if gnupg is not
+ installed.
*debootstrap-1.0.47 (23 Mar 2013)
diff --git a/dev-util/debootstrap/debootstrap-1.0.47.ebuild b/dev-util/debootstrap/debootstrap-1.0.47.ebuild
index f986c3167672..77e54df7a45e 100644
--- a/dev-util/debootstrap/debootstrap-1.0.47.ebuild
+++ b/dev-util/debootstrap/debootstrap-1.0.47.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.47.ebuild,v 1.1 2013/03/23 18:22:00 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.47.ebuild,v 1.2 2013/03/23 18:45:41 jer Exp $
EAPI=5
inherit eutils
@@ -38,6 +38,8 @@ src_install() {
}
pkg_postinst() {
- elog "To check Release files against a keyring"
- elog " (--keyring=K), please install app-crypt/gnupg."
+ if ! has_version ${CATEGORY}/${PN} && ! has_version app-crypt/gnupg; then
+ elog "To check Release files against a keyring"
+ elog " (--keyring=K), please install app-crypt/gnupg."
+ fi
}