community/py3-qt5: upgrade to 5.8.2, modernize APKBUILD

This commit is contained in:
Francesco Colista 2017-04-17 14:31:38 +00:00
parent 745cf9d373
commit b01afbe87f

View File

@ -1,20 +1,23 @@
# Contributor: Francesco Colista <fcolista@alpinelinux.org> # Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org> # Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=py3-qt5 pkgname=py3-qt5
_pkgname=PyQt _pkgname=PyQt5
pkgver=5.7 pkgver=5.8.2
pkgrel=1 pkgrel=0
pkgdesc="A set of Python 3 bindings for the Qt toolkit" pkgdesc="A set of Python 3 bindings for the Qt toolkit"
url="http://riverbankcomputing.co.uk/software/pyqt/intro" url="http://riverbankcomputing.co.uk/software/pyqt/intro"
arch="all" arch="all"
license="GPL2+" license="GPL2+"
depends="py3-sip" depends="py3-sip"
makedepends="python3-dev py-dbus-dev qt5-qtbase-dev py3-sip-dev libx11-dev qt5-qtsvg-dev" makedepends="python3-dev py-dbus-dev qt5-qtbase-dev py3-sip-dev libx11-dev qt5-qtsvg-dev"
subpackages="" source="http://sourceforge.net/projects/pyqt/files/$_pkgname/PyQt-$pkgver/${_pkgname}_gpl-$pkgver.zip"
install="" builddir="${srcdir}/${_pkgname}_gpl-${pkgver}"
source="http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-$pkgver/PyQt5_gpl-$pkgver.zip"
check() {
cd "$builddir"
make check
}
builddir="${srcdir}/PyQt5_gpl-${pkgver}"
build() { build() {
cd "$builddir" cd "$builddir"
python3 configure.py \ python3 configure.py \
@ -24,14 +27,12 @@ build() {
--qsci-api --qsci-api
# Thanks Gerardo for the rpath fix # Thanks Gerardo for the rpath fix
find -name 'Makefile' | xargs sed -i 's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g' find -name 'Makefile' | xargs sed -i 's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
make || return 1 make
} }
package(){ package(){
cd "$builddir" cd "$builddir"
make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install || return 1 make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" install
} }
md5sums="43568c2798db2d18a040fd215fcba2f6 PyQt5_gpl-5.7.zip" sha512sums="b50369fe4f3d315886dd2158c7e42f8bb281d5f74eb3c66429266280bb8e4fca5138c678c50283f61b1f30c3cda021508921197281f3188df0457cea828b1c18 PyQt5_gpl-5.8.2.zip"
sha256sums="1607a90af2c2e944e2aebc7ba4a7ec9c327ec78afbaf3a5eab2b6c65cd81d1e5 PyQt5_gpl-5.7.zip"
sha512sums="2f5978e6182f517711b2d37b4ac45e5460fbbc8706a3a07510c82cf9d1d8d18ac1588b492dceed0b5b37aee6dfc4e4aeed736531d885e583401ac89e1f1fbd93 PyQt5_gpl-5.7.zip"