diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-10-26 15:01:00 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-10-26 15:01:00 +0000 |
commit | 6d9fc5cc59885aae388435ab4cdbbf4fab7e389d (patch) | |
tree | e9d8436a1ee3b0e0fdc4ae333d2f88cd6e2455c5 /app-portage | |
parent | Marked ~hppa (bug #489452). (diff) | |
download | gentoo-2-6d9fc5cc59885aae388435ab4cdbbf4fab7e389d.tar.gz gentoo-2-6d9fc5cc59885aae388435ab4cdbbf4fab7e389d.tar.bz2 gentoo-2-6d9fc5cc59885aae388435ab4cdbbf4fab7e389d.zip |
Clean up the log messages a bit.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/flaggie/ChangeLog | 5 | ||||
-rw-r--r-- | app-portage/flaggie/flaggie-9999.ebuild | 14 |
2 files changed, 11 insertions, 8 deletions
diff --git a/app-portage/flaggie/ChangeLog b/app-portage/flaggie/ChangeLog index 72469555c2b4..075df8df32a4 100644 --- a/app-portage/flaggie/ChangeLog +++ b/app-portage/flaggie/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-portage/flaggie # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/flaggie/ChangeLog,v 1.55 2013/10/14 20:30:15 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/flaggie/ChangeLog,v 1.56 2013/10/26 15:01:00 mgorny Exp $ + + 26 Oct 2013; Michał Górny <mgorny@gentoo.org> flaggie-9999.ebuild: + Clean up the log messages a bit. 14 Oct 2013; Michał Górny <mgorny@gentoo.org> flaggie-0.2.1.ebuild, flaggie-9999.ebuild: diff --git a/app-portage/flaggie/flaggie-9999.ebuild b/app-portage/flaggie/flaggie-9999.ebuild index 4c3b05c18730..99bc262ccd58 100644 --- a/app-portage/flaggie/flaggie-9999.ebuild +++ b/app-portage/flaggie/flaggie-9999.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/app-portage/flaggie/flaggie-9999.ebuild,v 1.7 2013/10/14 20:30:15 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/flaggie/flaggie-9999.ebuild,v 1.8 2013/10/26 15:01:00 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 ) @@ -34,13 +34,13 @@ python_install_all() { } pkg_postinst() { - ewarn "Please denote that flaggie creates backups of your package.* files" + ewarn "Please note that flaggie creates backups of your package.* files" ewarn "before performing each change through appending a single '~'." ewarn "If you'd like to keep your own backup of them, please use another" ewarn "naming scheme (or even better some VCS)." - elog - elog "bash-completion support requires:" - elog " app-shells/gentoo-bashcomp" - has_version app-shells/gentoo-bashcomp && \ - elog "(installed already)" + if ! has_version app-shells/gentoo-bashcomp; then + elog + elog "If you want to use bash-completion, you need to install:" + elog " app-shells/gentoo-bashcomp" + fi } |