void-packages/srcpkgs/python/template

97 lines
3 KiB
Text
Raw Normal View History

# Template build file for 'python'.
#
# THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/python-tkinter".
#
pkgname=python
2014-12-10 20:47:13 +00:00
version=2.7.9
revision=1
2013-02-07 03:29:14 +00:00
wrksrc="Python-${version}"
hostmakedepends="pkg-config"
makedepends="
libffi-devel readline-devel>=6.3 gdbm-devel libressl-devel expat-devel
sqlite-devel bzip2-devel zlib-devel"
pycompile_dirs="usr/lib/python2.7"
short_desc="Interpreted, interactive, object-oriented programming language"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-06-20 10:30:58 +00:00
homepage="http://www.python.org"
license="PSF"
2013-02-07 03:29:14 +00:00
distfiles="http://www.python.org/ftp/python/$version/Python-$version.tar.xz"
2014-12-10 20:47:13 +00:00
checksum=90d27e14ea7e03570026850e2e50ba71ad20b7eb31035aada1cf3def8f8d4916
2013-11-18 22:19:53 +00:00
pre_configure() {
# Ensure that internal copies of expat, libffi and zlib are not used.
rm -r Modules/expat
rm -r Modules/_ctypes/libffi*
rm -r Modules/zlib
}
do_configure() {
2014-11-12 07:54:29 +00:00
local _args
2014-06-02 09:07:39 +00:00
unset GCC CC CXX CPP LD AR AS RANLIB
2013-11-18 22:19:53 +00:00
if [ "$CROSS_BUILD" ]; then
2014-06-02 09:07:39 +00:00
mkdir -p host-build
cd host-build
env -i PATH=$PATH ../configure
env -i PATH=$PATH make ${makejobs} python
mkdir -p ../hostpython
mv python ../hostpython
cd ..
patch -Np0 -i ${FILESDIR}/Python-2.7.6-xcompile.patch
2014-11-12 07:54:29 +00:00
_args="--build=${XBPS_MACHINE%%-musl}"
2013-11-18 22:19:53 +00:00
fi
2014-11-12 07:54:29 +00:00
./configure ${configure_args} ${_args} \
--with-threads --enable-ipv6 --with-signal-module \
--with-system-ffi --enable-unicode=ucs4 --with-system-expat \
--with-wctype-functions --enable-shared \
ac_cv_file__dev_ptc=no ac_cv_file__dev_ptmx=yes \
ac_cv_have_long_long_format=yes
2013-11-18 22:19:53 +00:00
}
2013-11-18 22:19:53 +00:00
do_build() {
# Avoid invoking pgen for cross-compiles.
touch Include/graminit.h Python/graminit.c
export PATH="$PATH:$wrksrc/hostpython"
make ${makejobs}
}
do_install() {
export PATH="$PATH:$wrksrc/hostpython"
make DESTDIR=${DESTDIR} altinstall
ln -sf python2.7 ${DESTDIR}/usr/bin/python2
ln -sf python2.7 ${DESTDIR}/usr/bin/python
ln -sf python2.7-config ${DESTDIR}/usr/bin/python-config
2013-11-18 22:19:53 +00:00
}
2013-02-07 03:29:14 +00:00
post_install() {
chmod 755 ${DESTDIR}/usr/lib/libpython*.so*
2011-06-20 10:30:58 +00:00
install -Dm644 LICENSE ${DESTDIR}/usr/share/licenses/python/LICENSE
rm -f ${DESTDIR}/usr/bin/smtpd.py
# Remove files that belong to python-tkinter and idle-python
rm ${DESTDIR}/usr/bin/idle
rm -r ${DESTDIR}/usr/lib/python2.7/idlelib
rm -r ${DESTDIR}/usr/lib/python2.7/lib-tk
# Remove test module and tests that fail to be byte-compiled.
rm -r ${DESTDIR}/usr/lib/python2.7/test
rm -r ${DESTDIR}/usr/lib/python2.7/lib2to3/tests
if [ "$CROSS_BUILD" ]; then
# Remove references to cross toolchain.
sed -i "s/$XBPS_CROSS_TRIPLET-//g" \
${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata.py \
${DESTDIR}/usr/lib/python${version%.*}/config/Makefile
fi
}
python-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
2014-07-03 06:55:17 +00:00
vmove usr/lib/python2.7/config/libpython2.7.a
vmove "usr/bin/python*-config"
vmove usr/lib/pkgconfig
2013-05-15 11:50:38 +00:00
vmove usr/include
mkdir -p ${DESTDIR}/usr/include/python2.7
2013-11-18 22:19:53 +00:00
mv ${PKGDESTDIR}/usr/include/python2.7/pyconfig.h \
${DESTDIR}/usr/include/python2.7
}
}