New package: sip-4.16.3 with python{,3.4}-sip subpkgs; replaces old

python-sip
This commit is contained in:
Alessio Sergi 2014-10-21 19:31:43 +02:00
parent 9218b47537
commit 7db9b6d14f
6 changed files with 102 additions and 58 deletions

1
srcpkgs/python-sip Symbolic link
View File

@ -0,0 +1 @@
sip

1
srcpkgs/python-sip-devel Symbolic link
View File

@ -0,0 +1 @@
sip

View File

@ -1,57 +0,0 @@
# Template file for 'python-sip'
pkgname=python-sip
version=4.16.2
revision=2
wrksrc="sip-${version}"
maintainer="Dominik Honnef <dominik@honnef.co>"
hostmakedepends="python-devel python3.4-devel"
makedepends="${hostmakedepends}"
depends="python"
license="GPL"
homepage="http://www.riverbankcomputing.co.uk/software/sip/intro"
short_desc="Python extension module generator for C and C++ libraries"
distfiles="http://sourceforge.net/projects/pyqt/files/sip/sip-4.16.2/sip-4.16.2.tar.gz"
checksum=a55a2324a46ab42e42ae57c52ef06583b17d25c987973fe2e7ff2e8a649294ce
_do_sip_build() {
local v=$1 suffix=$2
python${v} configure.py \
--bindir="/usr/bin" \
--sipdir="/usr/share/sip${v}" \
--destdir="/usr/lib/python${v}/site-packages" \
--incdir="/usr/include/python${v}${suffix}" \
INCDIR="${XBPS_CROSS_BASE}/usr/include/python${v}${suffix}" \
CC="${CC}" \
CFLAGS="${CFLAGS}" \
CXX="${CXX}" \
CXXFLAGS="${CXXFLAGS}" \
LINK="${CXX}" \
LINK_SHLIB="${CXX}" \
LFLAGS="${LDFLAGS}" \
STRIP=""
make $makejobs
make DESTDIR=${DESTDIR} install
mv ${DESTDIR}/usr/bin/sip ${DESTDIR}/usr/bin/sip${v}
}
do_build() {
_do_sip_build 2.7
_do_sip_build 3.4 "m"
}
do_install() {
ln -s /usr/bin/sip2.7 ${DESTDIR}/usr/bin/sip
}
python3.4-sip_package() {
depends="python3.4"
pkg_install() {
sed -i -e "s|'/usr/bin/sip'|'/usr/bin/sip3.4'|g" ${DESTDIR}/usr/lib/python3.4/site-packages/sipconfig.py
mkdir -p ${PKGDESTDIR}/usr/{lib,bin,include}
mv ${DESTDIR}/usr/bin/sip3.4 ${PKGDESTDIR}/usr/bin/
mv ${DESTDIR}/usr/lib/python3.4 ${PKGDESTDIR}/usr/lib/
mv ${DESTDIR}/usr/include/python3.4m ${PKGDESTDIR}/usr/include/
}
}

View File

@ -1 +1 @@
python-sip
sip

1
srcpkgs/python3.4-sip-devel Symbolic link
View File

@ -0,0 +1 @@
sip

98
srcpkgs/sip/template Normal file
View File

@ -0,0 +1,98 @@
# Template file for 'sip'
pkgname=sip
version=4.16.3
revision=1
wrksrc="sip-${version}"
hostmakedepends="python-devel python3.4-devel"
makedepends="${hostmakedepends}"
replaces="python-sip<4.16.2_2"
short_desc="Python extension module generator for C and C++ libraries"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="http://www.riverbankcomputing.co.uk/software/sip/intro"
license="GPL-2, GPL-3, SIP"
distfiles="${SOURCEFORGE_SITE}/pyqt/${pkgname}-${version}.tar.gz"
checksum=fd8a65693612f1d0c5dcd41881cd92496d770b3b9e03a138e533e3afc892f421
_do_sip_build() {
local v=$1 suffix=$2
python${v} configure.py \
CC="${CC}" CFLAGS="${CFLAGS}" CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \
LINK="${CXX}" LINK_SHLIB="${CXX}" LFLAGS="${LDFLAGS}" STRIP="" \
INCDIR="${XBPS_CROSS_BASE}/usr/include/python${v}${suffix}"
make ${makejobs}
}
post_extract() {
cp -a ${wrksrc} /tmp/python3.4-sip-build
mv /tmp/python3.4-sip-build ${wrksrc}
}
do_build() {
# build python-sip
_do_sip_build 2.7
# build python3.4-sip
cd ${wrksrc}/python3.4-sip-build
_do_sip_build 3.4 "m"
}
do_install() {
# install sip
make DESTDIR=${DESTDIR} install -C sipgen
# install python-sip
make DESTDIR=${DESTDIR} install -C siplib
vinstall sipconfig.py 644 usr/lib/python2.7/site-packages
vinstall sipdistutils.py 644 usr/lib/python2.7/site-packages
# install python3.4-sip
cd ${wrksrc}/python3.4-sip-build
make DESTDIR=${DESTDIR} install -C siplib
vinstall sipconfig.py 644 usr/lib/python3.4/site-packages
vinstall sipdistutils.py 644 usr/lib/python3.4/site-packages
}
python-sip_package() {
replaces="python-sip<4.16.2_2"
depends="sip python"
pycompile_module="sipconfig.py"
short_desc+=" - Python2 SIP bindings"
pkg_install() {
vmove usr/lib/python2.7/site-packages/sipconfig.py
}
}
python-sip-devel_package() {
replaces="python-sip<4.16.2_2"
depends="python-sip>=${version}_${revision}"
pycompile_module="sipdistutils.py"
short_desc+=" - Python2 SIP development files"
pkg_install() {
vmove usr/include/python2.7
vmove usr/lib/python2.7/site-packages/sipdistutils.py
}
}
python3.4-sip_package() {
replaces="python3.4-sip<4.16.2_2"
depends="sip python3.4"
pycompile_version="3.4"
pycompile_module="sipconfig.py"
short_desc+=" - Python3.4 SIP bindings"
pkg_install() {
vmove usr/lib/python3.4/site-packages/sipconfig.py
}
}
python3.4-sip-devel_package() {
replaces="python3.4-sip<4.16.2_2"
depends="python3.4-sip>=${version}_${revision}"
pycompile_version="3.4"
pycompile_module="sipdistutils.py"
short_desc+=" - Python3.4 SIP development files"
pkg_install() {
vmove usr/include/python3.4m
vmove usr/lib/python3.4/site-packages/sipdistutils.py
}
}