diff options
author | Marius Mauch <genone@gentoo.org> | 2007-05-08 22:56:03 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2007-05-08 22:56:03 +0000 |
commit | bf8475ed0fd9231e8d2d6aa42dfab7f666a03f4d (patch) | |
tree | 2fa2d056e9f25c26b4a3107850623e7cf8531631 /net-libs/courier-authlib | |
parent | Replacing einfo with ewarn (diff) | |
download | historical-bf8475ed0fd9231e8d2d6aa42dfab7f666a03f4d.tar.gz historical-bf8475ed0fd9231e8d2d6aa42dfab7f666a03f4d.tar.bz2 historical-bf8475ed0fd9231e8d2d6aa42dfab7f666a03f4d.zip |
Replacing einfo with elog
Package-Manager: portage-2.1.2.7
Diffstat (limited to 'net-libs/courier-authlib')
-rw-r--r-- | net-libs/courier-authlib/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/courier-authlib/courier-authlib-0.58.ebuild | 12 | ||||
-rw-r--r-- | net-libs/courier-authlib/courier-authlib-0.59.2.ebuild | 12 |
3 files changed, 17 insertions, 13 deletions
diff --git a/net-libs/courier-authlib/ChangeLog b/net-libs/courier-authlib/ChangeLog index 1a8fb2f47e78..3e10f88846e5 100644 --- a/net-libs/courier-authlib/ChangeLog +++ b/net-libs/courier-authlib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/courier-authlib # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.65 2007/04/08 14:32:19 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/ChangeLog,v 1.66 2007/05/08 22:50:40 genone Exp $ + + 08 May 2007; Marius Mauch <genone@gentoo.org> courier-authlib-0.58.ebuild, + courier-authlib-0.59.2.ebuild: + Replacing einfo with elog 08 Apr 2007; Luca Longinotti <chtekk@gentoo.org> metadata.xml: Update metadata. diff --git a/net-libs/courier-authlib/courier-authlib-0.58.ebuild b/net-libs/courier-authlib/courier-authlib-0.58.ebuild index 47ccbcd53d89..a1b274dac632 100644 --- a/net-libs/courier-authlib/courier-authlib-0.58.ebuild +++ b/net-libs/courier-authlib/courier-authlib-0.58.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.58.ebuild,v 1.14 2007/04/08 14:10:55 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.58.ebuild,v 1.15 2007/05/08 22:50:40 genone Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -35,9 +35,9 @@ S="${WORKDIR}/${P%%_pre}" pkg_setup() { if ! has_version 'dev-tcltk/expect' ; then ewarn 'The dev-tcltk/expect package is not installed.' - einfo 'Without it, you will not be able to change system login passwords.' - einfo 'However non-system authentication modules (LDAP, MySQL, PostgreSQL,' - einfo 'and others) will work just fine.' + ewarn 'Without it, you will not be able to change system login passwords.' + ewarn 'However non-system authentication modules (LDAP, MySQL, PostgreSQL,' + ewarn 'and others) will work just fine.' fi } @@ -171,7 +171,7 @@ pkg_postinst() { list="$(find /etc/courier -type f -maxdepth 1 | grep \"^/etc/courier/auth\")" if [ ! -z "${list}" ] ; then ewarn "Courier authentication files are now in /etc/courier/authlib/" - einfo "The following files are no longer needed and can likely be removed:" - einfo " rm $(echo \"${list}\")" + elog "The following files are no longer needed and can likely be removed:" + elog " rm $(echo \"${list}\")" fi } diff --git a/net-libs/courier-authlib/courier-authlib-0.59.2.ebuild b/net-libs/courier-authlib/courier-authlib-0.59.2.ebuild index 4fe4b8fc6a84..94012ff7543f 100644 --- a/net-libs/courier-authlib/courier-authlib-0.59.2.ebuild +++ b/net-libs/courier-authlib/courier-authlib-0.59.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.59.2.ebuild,v 1.1 2007/04/08 14:10:55 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.59.2.ebuild,v 1.2 2007/05/08 22:50:40 genone Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -33,9 +33,9 @@ pkg_setup() { if ! has_version 'dev-tcltk/expect' ; then ewarn 'The dev-tcltk/expect package is not installed.' - einfo 'Without it, you will not be able to change system login passwords.' - einfo 'However non-system authentication modules (LDAP, MySQL, PostgreSQL,' - einfo 'and others) will work just fine.' + ewarn 'Without it, you will not be able to change system login passwords.' + ewarn 'However non-system authentication modules (LDAP, MySQL, PostgreSQL,' + ewarn 'and others) will work just fine.' fi } @@ -179,7 +179,7 @@ pkg_postinst() { list="$(find /etc/courier -maxdepth 1 -type f | grep \"^/etc/courier/auth\")" if [[ ! -z "${list}" ]] ; then ewarn "Courier authentication files are now in /etc/courier/authlib/" - einfo "The following files are no longer needed and can likely be removed:" - einfo " rm $(echo \"${list}\")" + elog "The following files are no longer needed and can likely be removed:" + elog " rm $(echo \"${list}\")" fi } |