116 lines
3.2 KiB
Bash
116 lines
3.2 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/pypy/pypy-1.8-r2.ebuild,v 1.1 2012/12/01 10:42:15 mgorny Exp $
|
|
|
|
EAPI=5
|
|
|
|
# XXX: test other implementations
|
|
PYTHON_COMPAT=( python2_7 pypy1_8 )
|
|
inherit check-reqs eutils multilib python-any-r1 toolchain-funcs vcs-snapshot versionator
|
|
|
|
DESCRIPTION="A fast, compliant alternative implementation of the Python language"
|
|
HOMEPAGE="http://pypy.org/"
|
|
SRC_URI="https://bitbucket.org/pypy/pypy/get/release-${PV}.tar.bz2 -> ${P}.tar.bz2"
|
|
|
|
LICENSE="MIT"
|
|
SLOT=$(get_version_component_range 1-2 ${PV})
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="bzip2 doc examples +jit ncurses sandbox shadowstack sqlite ssl +xml"
|
|
|
|
RDEPEND=">=sys-libs/zlib-1.1.3
|
|
virtual/libffi
|
|
virtual/libintl
|
|
dev-libs/expat
|
|
bzip2? ( app-arch/bzip2 )
|
|
ncurses? ( sys-libs/ncurses )
|
|
sqlite? ( dev-db/sqlite:3 )
|
|
ssl? ( dev-libs/openssl )"
|
|
DEPEND="${RDEPEND}
|
|
${PYTHON_DEPS}"
|
|
PDEPEND="app-admin/python-updater"
|
|
|
|
pkg_pretend() {
|
|
CHECKREQS_MEMORY="2G"
|
|
use amd64 && CHECKREQS_MEMORY="4G"
|
|
check-reqs_pkg_pretend
|
|
}
|
|
|
|
pkg_setup() {
|
|
pkg_pretend
|
|
python-any-r1_pkg_setup
|
|
}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}/${PV}-elf-metadata-26a8d3fc57a7.patch"
|
|
epatch "${FILESDIR}/${PV}-sext-instructions-02dc2f6160ee.patch"
|
|
epatch "${FILESDIR}/1.7-scripts-location.patch"
|
|
epatch "${FILESDIR}/pypy-1.7-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch"
|
|
epatch "${FILESDIR}/pypy-1.7-distutils-fix_handling_of_executables_and_flags.patch"
|
|
}
|
|
|
|
src_compile() {
|
|
local args=(
|
|
$(usex jit -Ojit -O2)
|
|
$(usex shadowstack --gcrootfinder=shadowstack '')
|
|
$(usex sandbox --sandbox '')
|
|
|
|
./pypy/translator/goal/targetpypystandalone.py
|
|
)
|
|
|
|
# Avoid linking against libraries disabled by use flags
|
|
local opts=(
|
|
bzip2:bz2
|
|
ncurses:_minimal_curses
|
|
ssl:_ssl
|
|
)
|
|
|
|
local opt
|
|
for opt in "${opts[@]}"; do
|
|
local flag=${opt%:*}
|
|
local mod=${opt#*:}
|
|
|
|
args+=(
|
|
$(usex ${flag} --withmod --withoutmod)-${mod}
|
|
)
|
|
done
|
|
|
|
set -- "${PYTHON}" ./pypy/translator/goal/translate.py --batch "${args[@]}"
|
|
echo -e "\033[1m${@}\033[0m"
|
|
"${@}" || die "compile error"
|
|
}
|
|
|
|
src_install() {
|
|
local INSDESTTREE=/usr/$(get_libdir)/pypy${SLOT}
|
|
doins -r include lib_pypy lib-python pypy-c
|
|
fperms a+x ${INSDESTTREE}/pypy-c
|
|
dosym ../$(get_libdir)/pypy${SLOT}/pypy-c /usr/bin/pypy-c${SLOT}
|
|
dodoc README
|
|
|
|
if ! use sqlite; then
|
|
rm -fr "${ED}${INSDESTTREE}"/lib-python/{2.7,modified-2.7}/sqlite3
|
|
rm -f "${ED}${INSDESTTREE}"/lib_pypy/_sqlite3.py
|
|
fi
|
|
|
|
python_export pypy-c${SLOT} EPYTHON PYTHON PYTHON_SITEDIR
|
|
|
|
# if not using a cross-compiler, use the fresh binary
|
|
if ! tc-is-cross-compiler; then
|
|
local PYTHON=${ED}${INSDESTTREE}/pypy-c
|
|
fi
|
|
|
|
# Generate Grammar and PatternGrammar pickles.
|
|
PYTHONPATH="${ED}${INSDESTTREE}/lib_pypy/__extensions__:${ED}${INSDESTTREE}/lib_pypy:${ED}${INSDESTTREE}/lib-python/modified-2.7:${ED}${INSDESTTREE}/lib-python/2.7" \
|
|
"${PYTHON}" \
|
|
-c "import lib2to3.pygram, lib2to3.patcomp; lib2to3.patcomp.PatternCompiler()" \
|
|
|| die "Generation of Grammar and PatternGrammar pickles failed"
|
|
|
|
# compile the installed modules
|
|
python_optimize
|
|
|
|
echo "EPYTHON='${EPYTHON}'" > epython.py
|
|
python_domodule epython.py
|
|
}
|
|
|
|
src_test() {
|
|
"${PYTHON}" ./pypy/test_all.py --pypy=./pypy-c lib-python
|
|
}
|