diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-11-12 16:05:18 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-11-12 17:03:16 +0100 |
commit | 1220629606e4287bc60274825ccb9ab3f9db76f1 (patch) | |
tree | 796118ff88dc811231f76828a1b77efb8f87f343 /dev-python/pypy-bin | |
parent | dev-lang/python: Fix epython.py module first install (diff) | |
download | gentoo-1220629606e4287bc60274825ccb9ab3f9db76f1.tar.gz gentoo-1220629606e4287bc60274825ccb9ab3f9db76f1.tar.bz2 gentoo-1220629606e4287bc60274825ccb9ab3f9db76f1.zip |
dev-python/pypy*: Fix epython.py module first install
Diffstat (limited to 'dev-python/pypy-bin')
-rw-r--r-- | dev-python/pypy-bin/pypy-bin-2.4.0.ebuild | 9 | ||||
-rw-r--r-- | dev-python/pypy-bin/pypy-bin-2.5.1-r1.ebuild | 9 | ||||
-rw-r--r-- | dev-python/pypy-bin/pypy-bin-2.6.0-r1.ebuild | 9 | ||||
-rw-r--r-- | dev-python/pypy-bin/pypy-bin-4.0.0.ebuild | 9 |
4 files changed, 24 insertions, 12 deletions
diff --git a/dev-python/pypy-bin/pypy-bin-2.4.0.ebuild b/dev-python/pypy-bin/pypy-bin-2.4.0.ebuild index 24849b662992..55e1fc219962 100644 --- a/dev-python/pypy-bin/pypy-bin-2.4.0.ebuild +++ b/dev-python/pypy-bin/pypy-bin-2.4.0.ebuild @@ -146,11 +146,14 @@ src_install() { einfo "Generating caches and byte-compiling ..." - python_export pypy EPYTHON PYTHON PYTHON_SITEDIR - local PYTHON=${ED%/}${INSDESTTREE}/pypy-c + local -x PYTHON=${ED%/}${INSDESTTREE}/pypy-c local -x LD_LIBRARY_PATH="${ED%/}${INSDESTTREE}" + # we can't use eclass function since PyPy is dumb and always gives + # paths relative to the interpreter + local PYTHON_SITEDIR=${EPREFIX}/usr/$(get_libdir)/pypy/site-packages + python_export pypy EPYTHON - echo "EPYTHON='${EPYTHON}'" > epython.py + echo "EPYTHON='${EPYTHON}'" > epython.py || die python_domodule epython.py # Generate Grammar and PatternGrammar pickles. diff --git a/dev-python/pypy-bin/pypy-bin-2.5.1-r1.ebuild b/dev-python/pypy-bin/pypy-bin-2.5.1-r1.ebuild index 52a15ef0f675..52c27982ad07 100644 --- a/dev-python/pypy-bin/pypy-bin-2.5.1-r1.ebuild +++ b/dev-python/pypy-bin/pypy-bin-2.5.1-r1.ebuild @@ -146,11 +146,14 @@ src_install() { einfo "Generating caches and byte-compiling ..." - python_export pypy EPYTHON PYTHON PYTHON_SITEDIR - local PYTHON=${ED%/}${INSDESTTREE}/pypy-c + local -x PYTHON=${ED%/}${INSDESTTREE}/pypy-c local -x LD_LIBRARY_PATH="${ED%/}${INSDESTTREE}" + # we can't use eclass function since PyPy is dumb and always gives + # paths relative to the interpreter + local PYTHON_SITEDIR=${EPREFIX}/usr/$(get_libdir)/pypy/site-packages + python_export pypy EPYTHON - echo "EPYTHON='${EPYTHON}'" > epython.py + echo "EPYTHON='${EPYTHON}'" > epython.py || die python_domodule epython.py # Generate Grammar and PatternGrammar pickles. diff --git a/dev-python/pypy-bin/pypy-bin-2.6.0-r1.ebuild b/dev-python/pypy-bin/pypy-bin-2.6.0-r1.ebuild index 9de657f4105e..5459d26ffb82 100644 --- a/dev-python/pypy-bin/pypy-bin-2.6.0-r1.ebuild +++ b/dev-python/pypy-bin/pypy-bin-2.6.0-r1.ebuild @@ -150,11 +150,14 @@ src_install() { einfo "Generating caches and byte-compiling ..." - python_export pypy EPYTHON PYTHON PYTHON_SITEDIR - local PYTHON=${ED%/}${INSDESTTREE}/pypy-c + local -x PYTHON=${ED%/}${INSDESTTREE}/pypy-c local -x LD_LIBRARY_PATH="${ED%/}${INSDESTTREE}" + # we can't use eclass function since PyPy is dumb and always gives + # paths relative to the interpreter + local PYTHON_SITEDIR=${EPREFIX}/usr/$(get_libdir)/pypy/site-packages + python_export pypy EPYTHON - echo "EPYTHON='${EPYTHON}'" > epython.py + echo "EPYTHON='${EPYTHON}'" > epython.py || die python_domodule epython.py # Generate Grammar and PatternGrammar pickles. diff --git a/dev-python/pypy-bin/pypy-bin-4.0.0.ebuild b/dev-python/pypy-bin/pypy-bin-4.0.0.ebuild index 85644981b21d..1b916dd04be6 100644 --- a/dev-python/pypy-bin/pypy-bin-4.0.0.ebuild +++ b/dev-python/pypy-bin/pypy-bin-4.0.0.ebuild @@ -150,11 +150,14 @@ src_install() { einfo "Generating caches and byte-compiling ..." - python_export pypy EPYTHON PYTHON PYTHON_SITEDIR - local PYTHON=${ED%/}${INSDESTTREE}/pypy-c + local -x PYTHON=${ED%/}${INSDESTTREE}/pypy-c local -x LD_LIBRARY_PATH="${ED%/}${INSDESTTREE}" + # we can't use eclass function since PyPy is dumb and always gives + # paths relative to the interpreter + local PYTHON_SITEDIR=${EPREFIX}/usr/$(get_libdir)/pypy/site-packages + python_export pypy EPYTHON - echo "EPYTHON='${EPYTHON}'" > epython.py + echo "EPYTHON='${EPYTHON}'" > epython.py || die python_domodule epython.py # Generate Grammar and PatternGrammar pickles. |