wok rev 25785
Add sip-pyqt and update PyQt-x11-gpl for ffado-mixer
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Tue Sep 24 21:45:20 2024 +0200 (8 weeks ago) |
parents | 7582bdc812ce |
children | 87d074f1c795 |
files | PyQt-x11-gpl/receipt ffado-tools/receipt libffado/receipt sip-pyqt/receipt sip3-dev/receipt sip3/receipt |
line diff
1.1 --- a/PyQt-x11-gpl/receipt Tue Sep 24 14:47:04 2024 +0000 1.2 +++ b/PyQt-x11-gpl/receipt Tue Sep 24 21:45:20 2024 +0200 1.3 @@ -14,7 +14,8 @@ 1.4 DEPENDS="python libQtDesigner libQtScript libQtCore libQtGui \ 1.5 libQtWebkit libQtXml libQtNetwork libQtSvg libQtSql \ 1.6 libQtDBus libQtClucene sip gcc-lib-base dbus" 1.7 -BUILD_DEPENDS="python-dev sip-dev Qt4-dev qmake" 1.8 +BUILD_DEPENDS="python-dev sip-dev Qt4-dev qmake \ 1.9 +dbus-dev dbus-python-dev" 1.10 1.11 current_version() 1.12 { 1.13 @@ -25,8 +26,8 @@ 1.14 # Rules to configure and make the package. 1.15 compile_rules() 1.16 { 1.17 - sed -i 's|sys.stdin.readline()|"yes" # &|' configure.py 1.18 - python configure.py 1.19 + python configure.py \ 1.20 + --confirm-license 1.21 make $MAKEFLAGS && 1.22 make DESTDIR=$DESTDIR install 1.23 }
2.1 --- a/ffado-tools/receipt Tue Sep 24 14:47:04 2024 +0000 2.2 +++ b/ffado-tools/receipt Tue Sep 24 21:45:20 2024 +0200 2.3 @@ -9,7 +9,8 @@ 2.4 WEB_SITE="https://www.ffado.org/" 2.5 2.6 WANTED="libffado" 2.7 -DEPENDS="libffado libdbus-c++" 2.8 +DEPENDS="libffado libdbus-c++ python libQtCore \ 2.9 +libQtGui libQtWidgets" 2.10 2.11 # Rules to gen a SliTaz package suitable for Tazpkg. 2.12 genpkg_rules() 2.13 @@ -17,4 +18,5 @@ 2.14 mkdir -p $fs/usr/bin $fs/usr/lib 2.15 cp -a $install/usr/bin/ffado* $fs/usr/bin 2.16 cp -a $install/usr/lib/libffado $fs/usr/lib 2.17 + cp -a $install/usr/lib/python* $fs/usr/lib 2.18 }
3.1 --- a/libffado/receipt Tue Sep 24 14:47:04 2024 +0000 3.2 +++ b/libffado/receipt Tue Sep 24 21:45:20 2024 +0200 3.3 @@ -11,10 +11,10 @@ 3.4 WGET_URL="$WEB_SITE/files/$TARBALL" 3.5 3.6 DEPENDS="libraw1394 libconfig libxml3++ libiec61883" 3.7 -BUILD_DEPENDS="scons dbus-python3-dev Py3Qt-x11-gpl sip3 \ 3.8 +BUILD_DEPENDS="scons dbus-python-dev PyQt-x11-gpl sip \ 3.9 dbus-dev gcc83 dbus-c++-dev libraw1394-dev libconfig-dev \ 3.10 alsa-lib-dev libiec61883-dev libxml3++-dev xdg-utils \ 3.11 -jack-audio-connection-kit-dev" 3.12 +jack-audio-connection-kit-dev sip-pyqt" 3.13 3.14 # Rules to configure and make the package. 3.15 compile_rules() 3.16 @@ -39,7 +39,7 @@ 3.17 DETECT_USERSPACE_ENV=False \ 3.18 PREFIX=/usr \ 3.19 PYPKGDIR=$site_packages \ 3.20 - PYTHON_INTERPRETER=/usr/bin/python3 \ 3.21 + PYTHON_INTERPRETER=/usr/bin/python \ 3.22 DEBUG=no 3.23 3.24 scons DESTDIR=$install install
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/sip-pyqt/receipt Tue Sep 24 21:45:20 2024 +0200 4.3 @@ -0,0 +1,40 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="sip-pyqt" 4.7 +SOURCE="sip" 4.8 +VERSION="4.19.25" # last version for Python 2 4.9 +CATEGORY="development" 4.10 +SHORT_DESC="PyQt sip module." 4.11 +MAINTAINER="maintainer@slitaz.org" 4.12 +LICENSE="GPL2 GPL3" 4.13 +WEB_SITE="https://github.com/Python-SIP/sip" 4.14 +REPOLOGY="python:sip" 4.15 + 4.16 +TARBALL="$SOURCE-$VERSION.tar.gz" 4.17 +#WGET_URL="$SF_MIRROR/pyqt/$TARBALL" 4.18 +WGET_URL="https://www.riverbankcomputing.com/static/Downloads/$SOURCE/$VERSION/$TARBALL" 4.19 + 4.20 +DEPENDS="gcc-lib-base python" 4.21 +BUILD_DEPENDS="python-dev" 4.22 + 4.23 +# What is the latest version available today? 4.24 +current_version() 4.25 +{ 4.26 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 4.27 + sed '/tag\//!d;s|.*tag/v*||;s|".*||;q' 4.28 +} 4.29 + 4.30 +# Rules to configure and make the package. 4.31 +compile_rules() 4.32 +{ 4.33 + python configure.py --sip-module PyQt4.sip --no-tools && 4.34 + make && 4.35 + make install DESTDIR=$DESTDIR 4.36 +} 4.37 + 4.38 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.39 +genpkg_rules() 4.40 +{ 4.41 + cook_copy_folders bin 4.42 + cook_copy_folders lib 4.43 +}
5.1 --- a/sip3-dev/receipt Tue Sep 24 14:47:04 2024 +0000 5.2 +++ b/sip3-dev/receipt Tue Sep 24 21:45:20 2024 +0200 5.3 @@ -6,7 +6,7 @@ 5.4 SHORT_DESC="Development files for sip3." 5.5 MAINTAINER="allan316@gmail.com" 5.6 LICENSE="GPL2 GPL3" 5.7 -WEB_SITE="https://sip3.io/" 5.8 +WEB_SITE="https://github.com/Python-SIP/sip" 5.9 5.10 WANTED="sip3" 5.11 DEPENDS="sip3"
6.1 --- a/sip3/receipt Tue Sep 24 14:47:04 2024 +0000 6.2 +++ b/sip3/receipt Tue Sep 24 21:45:20 2024 +0200 6.3 @@ -6,7 +6,7 @@ 6.4 SHORT_DESC="C/C++ Bindings Generator for Python v3." 6.5 MAINTAINER="allan316@gmail.com" 6.6 LICENSE="GPL2 GPL3" 6.7 -WEB_SITE="https://sip3.io/" 6.8 +WEB_SITE="https://github.com/Python-SIP/sip" 6.9 REPOLOGY="python:sip" 6.10 6.11 TARBALL="sip-$VERSION.tar.gz"