diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-02-08 03:38:09 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-02-08 03:38:09 +0000 |
commit | 67a56fbcba746c3156744b483e1ac4a86b7d9bcd (patch) | |
tree | 0c49ea4dd0953cf3757dc01d48a352f53e7f44da /eclass | |
parent | Remove old. Fix dependency in 201208 snapshot, should only depend on akonadi-... (diff) | |
download | historical-67a56fbcba746c3156744b483e1ac4a86b7d9bcd.tar.gz historical-67a56fbcba746c3156744b483e1ac4a86b7d9bcd.tar.bz2 historical-67a56fbcba746c3156744b483e1ac4a86b7d9bcd.zip |
Fixing confusing message in distutils.eclass
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 8 | ||||
-rw-r--r-- | eclass/distutils.eclass | 12 |
2 files changed, 13 insertions, 7 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index ec4bb7480f66..32e00864b3a1 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.663 2013/02/07 15:41:34 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.664 2013/02/08 03:38:09 patrick Exp $ + + 08 Feb 2013; Patrick Lauer <patrick@gentoo.org> distutils.eclass: + Fixing confusing message in distutils.eclass 07 Feb 2013; Michael Palimaka <kensington@gentoo.org> cmake-utils.eclass: Export src_prepare. Improve support for dev-util/ninja wrt bug #439608. Add @@ -796,6 +799,9 @@ Fixing units 19 Oct 2012; Patrick Lauer <patrick@gentoo.org> check-reqs.eclass: + Fixing units + + 19 Oct 2012; Patrick Lauer <patrick@gentoo.org> check-reqs.eclass: Fixing binpkg behaviour 17 Oct 2012; Michael Palimaka <kensington@gentoo.org> cmake-utils.eclass: diff --git a/eclass/distutils.eclass b/eclass/distutils.eclass index 804d7092ee10..2ca49c8cac85 100644 --- a/eclass/distutils.eclass +++ b/eclass/distutils.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.82 2012/03/15 16:51:54 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.83 2013/02/08 03:38:09 patrick Exp $ # @ECLASS: distutils.eclass # @MAINTAINER: @@ -33,15 +33,15 @@ fi ewarn ewarn "\"${EBUILD}\":" ewarn "Deprecation Warning: Usage of distutils.eclass in packages supporting installation" - ewarn "for multiple Python ABIs in EAPI <=1 is deprecated and will be banned on 2011-06-01." - ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." + ewarn "for multiple Python ABIs in EAPI <=1 is deprecated." + ewarn "The ebuild should to be fixed. Please report a bug, if it has not been already reported." ewarn elif has "${EAPI:-0}" 0 1 2 && [[ -z "${SUPPORT_PYTHON_ABIS}" ]]; then ewarn ewarn "\"${EBUILD}\":" ewarn "Deprecation Warning: Usage of distutils.eclass in packages not supporting installation" - ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be banned on 2011-06-01." - ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." + ewarn "for multiple Python ABIs in EAPI <=2 is deprecated." + ewarn "The ebuild should to be fixed. Please report a bug, if it has not been already reported." ewarn fi |