diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-12-30 13:24:55 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-12-30 13:58:52 +0100 |
commit | b1b38d9aca3eb434c6a70bca37f4d41b847c3016 (patch) | |
tree | 288578573da4a88e7a86b4499db61b2d03a1d3c9 /eclass/python-utils-r1.eclass | |
parent | python-utils-r1.eclass: Remove PYTHON_TARGETS="pypy" (diff) | |
download | gentoo-b1b38d9aca3eb434c6a70bca37f4d41b847c3016.tar.gz gentoo-b1b38d9aca3eb434c6a70bca37f4d41b847c3016.tar.bz2 gentoo-b1b38d9aca3eb434c6a70bca37f4d41b847c3016.zip |
python-utils-r1.eclass: Remove PYTHON_TARGETS="jython2_7"
Jython was supported as an experimental implementation but due to
interoperability issues and very slow development, its (re-)deployment
in ebuilds never took off. Now that Python 2.7 is going away, there's
no point in keeping its future support.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-utils-r1.eclass')
-rw-r--r-- | eclass/python-utils-r1.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 09b501a4ad24..301c9a029b5f 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -39,7 +39,6 @@ inherit toolchain-funcs # @DESCRIPTION: # All supported Python implementations, most preferred last. _PYTHON_ALL_IMPLS=( - jython2_7 pypy3 python2_7 python3_6 python3_7 python3_8 @@ -78,10 +77,10 @@ _python_impl_supported() { # keep in sync with _PYTHON_ALL_IMPLS! # (not using that list because inline patterns shall be faster) case "${impl}" in - python2_7|python3_[678]|jython2_7|pypy3) + python2_7|python3_[678]|pypy3) return 0 ;; - pypy|pypy1_[89]|pypy2_0|python2_[56]|python3_[12345]) + jython2_7|pypy|pypy1_[89]|pypy2_0|python2_[56]|python3_[12345]) return 1 ;; *) |