diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-11-08 09:37:04 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-11-11 11:20:51 +0100 |
commit | 22660bcdd3c8aea97dc22ebb681b4789bbae0d82 (patch) | |
tree | c9b419ff9afd3b8a41b4c6828331c2c499d3df5c /eclass | |
parent | 9e276c984be1309437d2356c63752ac96d14bb57 (diff) | |
download | gentoo-22660bcdd3c8aea97dc22ebb681b4789bbae0d82.tar.gz gentoo-22660bcdd3c8aea97dc22ebb681b4789bbae0d82.tar.xz |
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.
Diffstat (limited to 'eclass')
-rwxr-xr-x | eclass/tests/python-utils-r1.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/eclass/tests/python-utils-r1.sh b/eclass/tests/python-utils-r1.sh index e49636a6111..bd05e9ebc3c 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 |