sip: update to 4.19.23

Close: #24076
This commit is contained in:
Đoàn Trần Công Danh 2020-08-09 16:33:13 +07:00 committed by Danh Doan
parent 84c132b15a
commit bb6da8f926

View file

@ -1,23 +1,24 @@
# Template file for 'sip'
pkgname=sip
version=4.19.19
revision=2
version=4.19.23
revision=1
create_wrksrc=yes
hostmakedepends="python-devel python3-devel"
makedepends="${hostmakedepends}"
short_desc="Python extension module generator for C/C++ libraries"
maintainer="Alessio Sergi <al3hex@gmail.com>"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-only, GPL-3.0-only, custom:SIP"
homepage="https://riverbankcomputing.com/software/sip/intro"
distfiles="https://www.riverbankcomputing.com/static/Downloads/sip/${version}/sip-${version}.tar.gz"
checksum=5436b61a78f48c7e8078e93a6b59453ad33780f80c644e5f3af39f94be1ede44
checksum=22ca9bcec5388114e40d4aafd7ccd0c4fe072297b628d0c5cdfa2f010c0bc7e7
pre_build() {
mkdir -p sip-${py2_ver}
mv * sip-${py2_ver} || true
post_extract() {
mv sip-$version sip-${py2_ver}
cp -a sip-${py2_ver} sip-${py3_ver}
cp -a sip-${py2_ver} sip-${py3_ver}-PyQt5
cp -a sip-${py2_ver} sip-${py2_ver}-PyQt5
}
do_build() {
for pyver in $py2_ver $py3_ver ${py3_ver}-PyQt5 ${py2_ver}-PyQt5; do
if [ "${pyver%-PyQt5}" != "$py2_ver" ]; then
@ -36,6 +37,7 @@ do_build() {
make ${makejobs}
done
}
do_install() {
cd ${wrksrc}/sip-${py2_ver}
# install sip
@ -65,44 +67,47 @@ do_install() {
python-sip_package() {
lib32disabled=yes
depends="${sourcepkg}-${version}_${revision} python"
pycompile_module="sipconfig.py"
depends="python"
short_desc="Python2 SIP bindings"
pkg_install() {
vmove ${py2_sitelib}/sip.so
vmove ${py2_sitelib}/sipconfig.py
vmove ${py2_sitelib}/sip.pyi
vlicense sip-${py2_ver}/LICENSE
}
}
python-sip-devel_package() {
depends="python-sip-${version}_${revision}"
pycompile_module="sipdistutils.py"
lib32disabled=yes
depends="sip-${version}_${revision} python-sip-${version}_${revision}"
short_desc="Python2 SIP bindings - development files"
pkg_install() {
vmove ${py2_inc}
vmove ${py2_sitelib}/sipdistutils.py
}
}
python3-sip_package() {
lib32disabled=yes
depends="${sourcepkg}-${version}_${revision} python3"
pycompile_module="sipconfig.py"
depends="python3"
short_desc="Python3 SIP bindings"
pkg_install() {
vmove ${py3_sitelib}/sip.so
vmove ${py3_sitelib}/sipconfig.py
vmove ${py3_sitelib}/sip.pyi
vlicense sip-${py3_ver}/LICENSE
}
}
python3-sip-devel_package() {
depends="python3-sip-${version}_${revision}"
pycompile_module="sipdistutils.py"
depends="python3-sip-${version}_${revision} sip-${version}_${revision}"
short_desc="Python3 SIP bindings - development files"
pkg_install() {
vmove ${py3_inc}
vmove ${py3_sitelib}/sipdistutils.py
}
}
python3-sip-PyQt5_package() {
lib32disabled=yes
depends="${sourcepkg}-${version}_${revision} python3"
@ -112,12 +117,14 @@ python3-sip-PyQt5_package() {
vmove ${py3_sitelib}/PyQt5/sip.pyi
}
}
python-sip-PyQt5_package() {
lib32disabled=yes
depends="${sourcepkg}-${version}_${revision} python"
depends="python"
short_desc="Python2 SIP bindings (PyQt5 version)"
pkg_install() {
vmove ${py2_sitelib}/PyQt5/sip.so
vmove ${py2_sitelib}/PyQt5/sip.pyi
vlicense sip-${py2_ver}-PyQt5/LICENSE
}
}