blob: b9be16e09d612f92d5bbe49a39eb8cd9d08a2d72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# 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.7.ebuild,v 1.5 2012/01/16 05:26:31 mr_bones_ Exp $
EAPI="4"
inherit eutils toolchain-funcs check-reqs python versionator
DESCRIPTION="PyPy is 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"
SLOTVER=$(get_version_component_range 1-2 ${PV})
LICENSE="MIT"
SLOT="${SLOTVER}"
PYTHON_ABI="2.7-pypy-${SLOTVER}"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples +jit sandbox test bzip2 ncurses xml ssl"
RDEPEND=">=sys-libs/zlib-1.1.3
virtual/libffi
virtual/libintl
bzip2? ( app-arch/bzip2 )
ncurses? ( sys-libs/ncurses )
xml? ( dev-libs/expat )
ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}"
PDEPEND="app-admin/python-updater"
S="${WORKDIR}/${PN}-pypy-release-${PV}"
DOC="README LICENSE"
pkg_pretend() {
CHECKREQS_MEMORY="1250M"
use amd64 && CHECKREQS_MEMORY="2500M"
check-reqs_pkg_pretend
}
src_prepare() {
epatch "${FILESDIR}/${PV}-patches.patch"
epatch "${FILESDIR}/${PV}-scripts-location.patch"
}
src_compile() {
if use jit; then
conf="-Ojit"
else
conf="-O2"
fi
if use sandbox; then
conf+=" --sandbox"
fi
conf+=" ./pypy/translator/goal/targetpypystandalone.py"
# Avoid linking against libraries disabled by use flags
optional_use=("bzip2" "ncurses" "xml" "ssl")
optional_mod=("bz2" "_minimal_curses" "pyexpat" "_ssl")
for ((i = 0; i < ${#optional_use[*]}; i++)); do
if use ${optional_use[$i]}; then
conf+=" --withmod-${optional_mod[$i]}"
else
conf+=" --withoutmod-${optional_mod[$i]}"
fi
done
translate_cmd="$(PYTHON -2) ./pypy/translator/goal/translate.py $conf"
echo ${_BOLD}"${translate_cmd}"${_NORMAL}
${translate_cmd} || die "compile error"
}
src_install() {
INSPATH="/usr/$(get_libdir)/pypy${SLOT}"
insinto ${INSPATH}
doins -r include lib_pypy lib-python pypy-c
fperms a+x ${INSPATH}/pypy-c
dosym ../$(get_libdir)/pypy${SLOT}/pypy-c /usr/bin/pypy-c${SLOT}
}
src_test() {
$(PYTHON -2) ./pypy/test_all.py --pypy=./pypy-c lib-python
}
|