summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2013-02-08 03:38:09 +0000
committerPatrick Lauer <patrick@gentoo.org>2013-02-08 03:38:09 +0000
commit415ad7cc3b7d0a753bd05bef95962f1d476a8f82 (patch)
treeb4a4fee2d7bb8fcedbe9f4efe95fdd12fd3ea349 /eclass
parentRemove old. Fix dependency in 201208 snapshot, should only depend on akonadi-... (diff)
downloadgentoo-2-415ad7cc3b7d0a753bd05bef95962f1d476a8f82.tar.gz
gentoo-2-415ad7cc3b7d0a753bd05bef95962f1d476a8f82.tar.bz2
gentoo-2-415ad7cc3b7d0a753bd05bef95962f1d476a8f82.zip
Fixing confusing message in distutils.eclass
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog8
-rw-r--r--eclass/distutils.eclass12
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