Gentoo Archives: gentoo-python

From: "Michał Górny" <mgorny@g.o>
To: gentoo-python@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: [gentoo-python] [PATCH 5/6] [python-distutils-ng] Support pypy-bin.
Date: Mon, 22 Jul 2013 09:51:21
Message-Id: 1374486679-15887-5-git-send-email-mgorny@gentoo.org
In Reply to: [gentoo-python] [PATCH] Eclass support for pypy-bin by "Michał Górny"
1 ---
2 gx86/eclass/python-distutils-ng.eclass | 3 ++-
3 1 file changed, 2 insertions(+), 1 deletion(-)
4
5 diff --git a/gx86/eclass/python-distutils-ng.eclass b/gx86/eclass/python-distutils-ng.eclass
6 index 249757f..6018913 100644
7 --- a/gx86/eclass/python-distutils-ng.eclass
8 +++ b/gx86/eclass/python-distutils-ng.eclass
9 @@ -132,7 +132,8 @@ for impl in ${PYTHON_COMPAT}; do
10 jython?.?)
11 dep_str="dev-java/jython:${dep_str: -3}${_PYTHON_USE}" ;;
12 pypy?.?)
13 - dep_str="dev-python/pypy:${dep_str: -3}${_PYTHON_USE}" ;;
14 + dep_str="|| ( dev-python/pypy:${dep_str: -3}${_PYTHON_USE}
15 + dev-python/pypy-bin:${dep_str: -3}${_PYTHON_USE} )" ;;
16 *)
17 die "Unsupported implementation: ${impl}" ;;
18 esac
19 --
20 1.8.3.2