From 1b8648f468e75ae18c8aadefbe6b7694356681fe Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Wed, 28 Oct 2015 13:41:19 -0700 Subject: [PATCH] eclass: hack in python3_5 so new ebuilds don't fail eclasses and profiles are due for an update but that is more than I want to bite off today. In order to import current python ebuilds we just need 3.5 to be considered valid. --- .../third_party/portage-stable/eclass/python-utils-r1.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk_container/src/third_party/portage-stable/eclass/python-utils-r1.eclass b/sdk_container/src/third_party/portage-stable/eclass/python-utils-r1.eclass index beabcc6272..576132d8bd 100644 --- a/sdk_container/src/third_party/portage-stable/eclass/python-utils-r1.eclass +++ b/sdk_container/src/third_party/portage-stable/eclass/python-utils-r1.eclass @@ -42,7 +42,7 @@ inherit eutils multilib toolchain-funcs _PYTHON_ALL_IMPLS=( jython2_5 jython2_7 pypy pypy3 - python3_3 python3_4 + python3_3 python3_4 python3_5 python2_7 ) @@ -66,7 +66,7 @@ _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_[34]|jython2_[57]) + python2_7|python3_[345]|jython2_[57]) return 0 ;; pypy1_[89]|pypy2_0|python2_[56]|python3_[12])