eclass/tests/python-utils-r1.sh: Add tests for py3.8
authorMichał Górny <mgorny@gentoo.org>
Thu, 27 Feb 2020 18:00:10 +0000 (19:00 +0100)
committerMichał Górny <mgorny@gentoo.org>
Sun, 19 Apr 2020 16:47:08 +0000 (18:47 +0200)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
eclass/tests/python-utils-r1.sh

index 377bb474a3accfe34ddced59f50d0489acb4bd5f..192c1183e8008350380d6b4f1bdd8b4b888f8db8 100755 (executable)
@@ -101,6 +101,20 @@ fi
 test_var PYTHON_PKG_DEP python3_7 '*dev-lang/python*:3.7'
 test_var PYTHON_SCRIPTDIR python3_7 /usr/lib/python-exec/python3.7
 
+test_var EPYTHON python3_8 python3.8
+test_var PYTHON python3_8 /usr/bin/python3.8
+if [[ -x /usr/bin/python3.8 ]]; then
+       abiflags=$(/usr/bin/python3.8 -c 'import sysconfig; print(sysconfig.get_config_var("ABIFLAGS"))')
+       test_var PYTHON_SITEDIR python3_8 "/usr/lib/python3.8/site-packages"
+       test_var PYTHON_INCLUDEDIR python3_8 "/usr/include/python3.8${abiflags}"
+       test_var PYTHON_LIBPATH python3_8 "/usr/lib*/libpython3.8${abiflags}$(get_libname)"
+       test_var PYTHON_CONFIG python3_8 "/usr/bin/python3.8${abiflags}-config"
+       test_var PYTHON_CFLAGS python3_8 "*-I/usr/include/python3.8*"
+       test_var PYTHON_LIBS python3_8 "*-lpython3.8*"
+fi
+test_var PYTHON_PKG_DEP python3_8 '*dev-lang/python*:3.8'
+test_var PYTHON_SCRIPTDIR python3_8 /usr/lib/python-exec/python3.8
+
 test_var EPYTHON pypy3 pypy3
 test_var PYTHON pypy3 /usr/bin/pypy3
 if [[ -x /usr/bin/pypy3 ]]; then