diff options
author | 2012-01-30 22:04:32 +0000 | |
---|---|---|
committer | 2012-01-30 22:04:32 +0000 | |
commit | 361f5cd0297ee06a29d1e4757c8573efad9c8542 (patch) | |
tree | bbaf791dcf217aeb9b1232f64d7c6f14fdea269a /eclass | |
parent | old (diff) | |
download | gentoo-2-361f5cd0297ee06a29d1e4757c8573efad9c8542.tar.gz gentoo-2-361f5cd0297ee06a29d1e4757c8573efad9c8542.tar.bz2 gentoo-2-361f5cd0297ee06a29d1e4757c8573efad9c8542.zip |
Avoid inheriting eutils from python.eclass.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/python.eclass | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 5a3c84b19e48..d3066074892e 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.105 2012/01/30 20:18:38 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.106 2012/01/30 22:04:32 floppym Exp $ + + 30 Jan 2012; Mike Gilbert <floppym@gentoo.org> python.eclass: + Avoid inheriting eutils from python.eclass. 30 Jan 2012; Mike Gilbert <floppym@gentoo.org> python.eclass: Detect needless usage of python_convert_shebangs(). Patch by Arfrever. diff --git a/eclass/python.eclass b/eclass/python.eclass index 66a316b95344..c92cab54560a 100644 --- a/eclass/python.eclass +++ b/eclass/python.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.146 2012/01/30 20:18:38 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.147 2012/01/30 22:04:32 floppym Exp $ # @ECLASS: python.eclass # @MAINTAINER: @@ -11,7 +11,7 @@ # Must call inherit before EXPORT_FUNCTIONS to avoid QA warning. if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then - inherit eutils multilib + inherit multilib fi # Export pkg_setup every time to avoid issues with eclass inheritance order. @@ -560,7 +560,7 @@ python_convert_shebangs() { done if [[ "${shebangs_converted}" == "0" ]]; then - eqawarn "${FUNCNAME}(): Python scripts not found" + ewarn "${FUNCNAME}(): Python scripts not found" fi } |