diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-12-28 11:24:15 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-12-28 11:24:15 +0000 |
commit | 3b00ce62a6c25869ce15b57c3757ba2bf30be3f3 (patch) | |
tree | f2df7544a44b5a25e9b8f3d6f9c52b4c8441aaa2 /eclass | |
parent | Verbosely deprecate python_parallel_foreach_impl and DISTUTILS_NO_PARALLEL_BU... (diff) | |
download | historical-3b00ce62a6c25869ce15b57c3757ba2bf30be3f3.tar.gz historical-3b00ce62a6c25869ce15b57c3757ba2bf30be3f3.tar.bz2 historical-3b00ce62a6c25869ce15b57c3757ba2bf30be3f3.zip |
Do not check for PYTHON_TEST_VERBOSITY, it is intended for make.conf.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/python-utils-r1.eclass | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index b3dc29ff660f..a4378948b97e 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1484 2014/12/28 10:56:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1485 2014/12/28 11:24:15 mgorny Exp $ + + 28 Dec 2014; Michał Górny <mgorny@gentoo.org> python-utils-r1.eclass: + Do not check for PYTHON_TEST_VERBOSITY, it is intended for make.conf. 28 Dec 2014; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass, python-r1.eclass: diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 980a4952e6a6..51991a1c2cad 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.71 2014/12/27 23:52:24 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-utils-r1.eclass,v 1.72 2014/12/28 11:24:15 mgorny Exp $ # @ECLASS: python-utils-r1 # @MAINTAINER: @@ -1188,8 +1188,7 @@ _python_check_dead_variables() { done for v in PYTHON_TESTS_RESTRICTED_ABIS PYTHON_EXPORT_PHASE_FUNCTIONS \ - PYTHON_VERSIONED_{SCRIPTS,EXECUTABLES} PYTHON_NONVERSIONED_EXECUTABLES \ - PYTHON_TEST_VERBOSITY + PYTHON_VERSIONED_{SCRIPTS,EXECUTABLES} PYTHON_NONVERSIONED_EXECUTABLES do if [[ ${!v} ]]; then die "${v} is invalid for python-r1 suite" |