commit: 22660bcdd3c8aea97dc22ebb681b4789bbae0d82 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Nov 8 08:37:04 2015 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Wed Nov 11 10:20:51 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22660bcd
python-utils-r1.eclass: Switch tests to use python3.4 Use Python 3.4 during tests since Python 3.3 is now deprecated and is less likely to be installed on user's systems and some tests will require Python installed. eclass/tests/python-utils-r1.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/eclass/tests/python-utils-r1.sh b/eclass/tests/python-utils-r1.sh index e49636a..bd05e9e 100755 --- a/eclass/tests/python-utils-r1.sh +++ b/eclass/tests/python-utils-r1.sh @@ -69,13 +69,13 @@ test_var PYTHON_LIBPATH python2_7 /usr/lib/libpython2.7$(get_libname) test_var PYTHON_PKG_DEP python2_7 '*dev-lang/python*:2.7' test_var PYTHON_SCRIPTDIR python2_7 /usr/lib/python-exec/python2.7 -test_var EPYTHON python3_3 python3.3 -test_var PYTHON python3_3 /usr/bin/python3.3 -test_var PYTHON_SITEDIR python3_3 /usr/lib/python3.3/site-packages -test_var PYTHON_INCLUDEDIR python3_3 /usr/include/python3.3 -test_var PYTHON_LIBPATH python3_3 /usr/lib/libpython3.3$(get_libname) -test_var PYTHON_PKG_DEP python3_3 '*dev-lang/python*:3.3' -test_var PYTHON_SCRIPTDIR python3_3 /usr/lib/python-exec/python3.3 +test_var EPYTHON python3_4 python3.4 +test_var PYTHON python3_4 /usr/bin/python3.4 +test_var PYTHON_SITEDIR python3_4 /usr/lib/python3.4/site-packages +test_var PYTHON_INCLUDEDIR python3_4 /usr/include/python3.4 +test_var PYTHON_LIBPATH python3_4 /usr/lib/libpython3.4$(get_libname) +test_var PYTHON_PKG_DEP python3_4 '*dev-lang/python*:3.4' +test_var PYTHON_SCRIPTDIR python3_4 /usr/lib/python-exec/python3.4 test_var EPYTHON jython2_7 jython2.7 test_var PYTHON jython2_7 /usr/bin/jython2.7
