wok-current rev 24308
Add some current_version
line diff
1.1 --- a/QtWeb/receipt Mon Jan 17 12:42:24 2022 -0500 1.2 +++ b/QtWeb/receipt Mon Jan 17 18:18:17 2022 +0000 1.3 @@ -16,6 +16,13 @@ 1.4 BUILD_DEPENDS="wget cacerts qmake Qt4-dev" 1.5 SUGGESTED="libQtWebkit-video" 1.6 1.7 +# What is the latest version available today? 1.8 +current_version() 1.9 +{ 1.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 1.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 1.12 +} 1.13 + 1.14 # Rules to configure and make the package. 1.15 compile_rules() 1.16 {
2.1 --- a/afio/receipt Mon Jan 17 12:42:24 2022 -0500 2.2 +++ b/afio/receipt Mon Jan 17 18:18:17 2022 +0000 2.3 @@ -13,6 +13,13 @@ 2.4 DEPENDS="" 2.5 BUILD_DEPENDS="" 2.6 2.7 +# What is the latest version available today? 2.8 +current_version() 2.9 +{ 2.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 2.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 2.12 +} 2.13 + 2.14 # Rules to configure and make the package. 2.15 compile_rules() 2.16 {
3.1 --- a/afuse/receipt Mon Jan 17 12:42:24 2022 -0500 3.2 +++ b/afuse/receipt Mon Jan 17 18:18:17 2022 +0000 3.3 @@ -7,12 +7,19 @@ 3.4 MAINTAINER="pascal.bellard@slitaz.org" 3.5 LICENSE="GPL2" 3.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.7 -WEB_SITE="https://github.com/pcarrier/afuse/" 3.8 +WEB_SITE="https://github.com/pcarrier/afuse" 3.9 WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz" 3.10 3.11 DEPENDS="fuse" 3.12 BUILD_DEPENDS="fuse-dev perl-getopt-long autoconf automake libtool " 3.13 3.14 +# What is the latest version available today? 3.15 +current_version() 3.16 +{ 3.17 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 3.18 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 3.19 +} 3.20 + 3.21 # Rules to configure and make the package. 3.22 compile_rules() 3.23 {
4.1 --- a/airgeddon/receipt Mon Jan 17 12:42:24 2022 -0500 4.2 +++ b/airgeddon/receipt Mon Jan 17 18:18:17 2022 +0000 4.3 @@ -13,6 +13,13 @@ 4.4 4.5 DEPENDS="bash iw aircrack-ng curl crunch mdk3" 4.6 4.7 +# What is the latest version available today? 4.8 +current_version() 4.9 +{ 4.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 4.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 4.12 +} 4.13 + 4.14 # Rules to gen a SliTaz package suitable for Tazpkg. 4.15 genpkg_rules() 4.16 {
5.1 --- a/androguard/receipt Mon Jan 17 12:42:24 2022 -0500 5.2 +++ b/androguard/receipt Mon Jan 17 18:18:17 2022 +0000 5.3 @@ -6,7 +6,7 @@ 5.4 SHORT_DESC="Reverse engineering tool for Android applications." 5.5 MAINTAINER="pascal.bellard@slitaz.org" 5.6 LICENSE="Apache2" 5.7 -WEB_SITE="https://github.com/androguard/androguard/" 5.8 +WEB_SITE="https://github.com/androguard/androguard" 5.9 5.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 5.11 WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz" 5.12 @@ -14,6 +14,13 @@ 5.13 DEPENDS="python" 5.14 BUILD_DEPENDS="python-dev python-setuptools" 5.15 5.16 +# What is the latest version available today? 5.17 +current_version() 5.18 +{ 5.19 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 5.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 5.21 +} 5.22 + 5.23 # Rules to configure and make the package. 5.24 compile_rules() 5.25 {
6.1 --- a/bootchart/receipt Mon Jan 17 12:42:24 2022 -0500 6.2 +++ b/bootchart/receipt Mon Jan 17 18:18:17 2022 +0000 6.3 @@ -13,6 +13,13 @@ 6.4 6.5 SUGGESTED="pybootchartgui" 6.6 6.7 +# What is the latest version available today? 6.8 +current_version() 6.9 +{ 6.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 6.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 6.12 +} 6.13 + 6.14 # Rules to gen a SliTaz package suitable for Tazpkg. 6.15 genpkg_rules() 6.16 {
7.1 --- a/cowpatty/receipt Mon Jan 17 12:42:24 2022 -0500 7.2 +++ b/cowpatty/receipt Mon Jan 17 18:18:17 2022 +0000 7.3 @@ -15,6 +15,13 @@ 7.4 DEPENDS="openssl libpcap" 7.5 BUILD_DEPENDS="openssl-dev libpcap-dev" 7.6 7.7 +# What is the latest version available today? 7.8 +current_version() 7.9 +{ 7.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 7.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 7.12 +} 7.13 + 7.14 # Rules to configure and make the package. 7.15 compile_rules() 7.16 {
8.1 --- a/crypthook/receipt Mon Jan 17 12:42:24 2022 -0500 8.2 +++ b/crypthook/receipt Mon Jan 17 18:18:17 2022 +0000 8.3 @@ -14,6 +14,13 @@ 8.4 DEPENDS="libcrypto" 8.5 BUILD_DEPENDS="openssl-dev" 8.6 8.7 +# What is the latest version available today? 8.8 +current_version() 8.9 +{ 8.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 8.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 8.12 +} 8.13 + 8.14 # Rules to configure and make the package. 8.15 compile_rules() 8.16 {
9.1 --- a/cryptkeeper/receipt Mon Jan 17 12:42:24 2022 -0500 9.2 +++ b/cryptkeeper/receipt Mon Jan 17 18:18:17 2022 +0000 9.3 @@ -6,13 +6,20 @@ 9.4 SHORT_DESC="Linux system tray applet that manages EncFS encrypted folders" 9.5 MAINTAINER="al.bobylev@gmail.com" 9.6 LICENSE="GPL3" 9.7 -WEB_SITE="https://github.com/tomm/cryptkeeper/" 9.8 +WEB_SITE="https://github.com/tomm/cryptkeeper" 9.9 TARBALL="$PACKAGE-$VERSION.tar.gz" 9.10 WGET_URL="http://tom.noflag.org.uk/cryptkeeper/$TARBALL" 9.11 9.12 DEPENDS="gtk+ GConf encfs" 9.13 BUILD_DEPENDS="gtk+-dev GConf-dev xorg-libX11-dev" 9.14 9.15 +# What is the latest version available today? 9.16 +current_version() 9.17 +{ 9.18 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 9.19 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 9.20 +} 9.21 + 9.22 # Rules to configure and make the package. 9.23 compile_rules() 9.24 {
10.1 --- a/dotconf/receipt Mon Jan 17 12:42:24 2022 -0500 10.2 +++ b/dotconf/receipt Mon Jan 17 18:18:17 2022 +0000 10.3 @@ -6,7 +6,7 @@ 10.4 SHORT_DESC="Configuration file parser library." 10.5 MAINTAINER="paul@slitaz.org" 10.6 LICENSE="LGPL2.1" 10.7 -WEB_SITE="https://github.com/williamh/dotconf/" 10.8 +WEB_SITE="https://github.com/williamh/dotconf" 10.9 10.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 10.11 WGET_URL="$[WEB_SITE}archive/v${VERSION%}/$TARBALL" 10.12 @@ -14,6 +14,13 @@ 10.13 DEPENDS="" 10.14 BUILD_DEPENDS="libtool" 10.15 10.16 +# What is the latest version available today? 10.17 +current_version() 10.18 +{ 10.19 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 10.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 10.21 +} 10.22 + 10.23 # Rules to configure and make the package. 10.24 compile_rules() 10.25 {
11.1 --- a/emesene/receipt Mon Jan 17 12:42:24 2022 -0500 11.2 +++ b/emesene/receipt Mon Jan 17 18:18:17 2022 +0000 11.3 @@ -14,6 +14,13 @@ 11.4 DEPENDS="python pygtk pycairo python-pysqlite gst-python" 11.5 BUILD_DEPENDS="python-dev" 11.6 11.7 +# What is the latest version available today? 11.8 +current_version() 11.9 +{ 11.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 11.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 11.12 +} 11.13 + 11.14 # Rules to configure and make the package. 11.15 compile_rules() 11.16 {
12.1 --- a/epdfview-cups/receipt Mon Jan 17 12:42:24 2022 -0500 12.2 +++ b/epdfview-cups/receipt Mon Jan 17 18:18:17 2022 +0000 12.3 @@ -15,6 +15,13 @@ 12.4 DEPENDS="gtk+ poppler glib libpng cups xorg-libXdamage gcc-lib-base libcomerr3" 12.5 BUILD_DEPENDS="gtk+-dev poppler-dev poppler cups cups-dev" 12.6 12.7 +# What is the latest version available today? 12.8 +current_version() 12.9 +{ 12.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 12.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 12.12 +} 12.13 + 12.14 # Rules to configure and make the package. 12.15 compile_rules() 12.16 {
13.1 --- a/faac/receipt Mon Jan 17 12:42:24 2022 -0500 13.2 +++ b/faac/receipt Mon Jan 17 18:18:17 2022 +0000 13.3 @@ -15,6 +15,13 @@ 13.4 DEPENDS="gcc83-lib-base" 13.5 BUILD_DEPENDS="gcc83" 13.6 13.7 +# What is the latest version available today? 13.8 +current_version() 13.9 +{ 13.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 13.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;s|_|.|g;q' 13.12 +} 13.13 + 13.14 # Rules to configure and make the package. 13.15 compile_rules() 13.16 {
14.1 --- a/faad2/receipt Mon Jan 17 12:42:24 2022 -0500 14.2 +++ b/faad2/receipt Mon Jan 17 18:18:17 2022 +0000 14.3 @@ -11,6 +11,13 @@ 14.4 WGET_URL="$SF_MIRROR/faac/$TARBALL" 14.5 TAGS="decoder mp4 mpeg" 14.6 14.7 +# What is the latest version available today? 14.8 +current_version() 14.9 +{ 14.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 14.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;s|_|.|g;q' 14.12 +} 14.13 + 14.14 # Rules to configure and make the package. 14.15 compile_rules() 14.16 {
15.1 --- a/file/receipt Mon Jan 17 12:42:24 2022 -0500 15.2 +++ b/file/receipt Mon Jan 17 18:18:17 2022 +0000 15.3 @@ -23,6 +23,13 @@ 15.4 arm) BUILD_DEPENDS="" ;; 15.5 esac 15.6 15.7 +# What is the latest version available today? 15.8 +current_version() 15.9 +{ 15.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 15.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;s|_|.|g;q' 15.12 +} 15.13 + 15.14 # Rules to configure and make the package. 15.15 compile_rules() 15.16 {
16.1 --- a/firmware-mod-kit/receipt Mon Jan 17 12:42:24 2022 -0500 16.2 +++ b/firmware-mod-kit/receipt Mon Jan 17 18:18:17 2022 +0000 16.3 @@ -16,6 +16,13 @@ 16.4 linux-api-headers" 16.5 BUILD_DEPENDS="liblzma-dev zlib-dev" 16.6 16.7 +# What is the latest version available today? 16.8 +current_version() 16.9 +{ 16.10 + wget -O - https://github.com/rampageX/firmware-mod-kit/tags 2>/dev/null | \ 16.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 16.12 +} 16.13 + 16.14 # Rules to configure and make the package. 16.15 compile_rules() 16.16 {
17.1 --- a/gc/receipt Mon Jan 17 12:42:24 2022 -0500 17.2 +++ b/gc/receipt Mon Jan 17 18:18:17 2022 +0000 17.3 @@ -7,10 +7,17 @@ 17.4 MAINTAINER="pankso@slitaz.org" 17.5 LICENSE="MIT GPL" 17.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 17.7 -WEB_SITE="https://github.com/ivmai/bdwgc/" 17.8 +WEB_SITE="https://github.com/ivmai/bdwgc" 17.9 WGET_URL="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/$TARBALL" 17.10 HOST_ARCH="i486 arm" 17.11 17.12 +# What is the latest version available today? 17.13 +current_version() 17.14 +{ 17.15 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 17.16 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 17.17 +} 17.18 + 17.19 # Rules to configure and make the package. 17.20 compile_rules() 17.21 {
18.1 --- a/hardinfo/receipt Mon Jan 17 12:42:24 2022 -0500 18.2 +++ b/hardinfo/receipt Mon Jan 17 18:18:17 2022 +0000 18.3 @@ -13,6 +13,13 @@ 18.4 DEPENDS="gtk+ pciutils xorg-libXdamage" 18.5 BUILD_DEPENDS="gtk+ gtk+-dev" 18.6 18.7 +# What is the latest version available today? 18.8 +current_version() 18.9 +{ 18.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 18.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 18.12 +} 18.13 + 18.14 # Rules to configure and make the package. 18.15 compile_rules() 18.16 {
19.1 --- a/hydra/receipt Mon Jan 17 12:42:24 2022 -0500 19.2 +++ b/hydra/receipt Mon Jan 17 18:18:17 2022 +0000 19.3 @@ -15,6 +15,13 @@ 19.4 BUILD_DEPENDS="openssl-dev apr-dev gtk+-dev libssh-dev libmysqlclient \ 19.5 postgresql-dev subversion-dev libidn-dev mysql-dev" 19.6 19.7 +# What is the latest version available today? 19.8 +current_version() 19.9 +{ 19.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 19.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 19.12 +} 19.13 + 19.14 # Rules to configure and make the package. 19.15 compile_rules() 19.16 {
20.1 --- a/ibus-hangul/receipt Mon Jan 17 12:42:24 2022 -0500 20.2 +++ b/ibus-hangul/receipt Mon Jan 17 18:18:17 2022 +0000 20.3 @@ -13,6 +13,13 @@ 20.4 DEPENDS="ibus" 20.5 BUILD_DEPENDS="intltool gettext perl ibus-dev glib-dev libhangul-dev" 20.6 20.7 +# What is the latest version available today? 20.8 +current_version() 20.9 +{ 20.10 + wget -O - https://github.com/ibus/ibus/releases 2>/dev/null | \ 20.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 20.12 +} 20.13 + 20.14 # Rules to configure and make the package. 20.15 compile_rules() 20.16 {
21.1 --- a/ibus/receipt Mon Jan 17 12:42:24 2022 -0500 21.2 +++ b/ibus/receipt Mon Jan 17 18:18:17 2022 +0000 21.3 @@ -14,6 +14,13 @@ 21.4 BUILD_DEPENDS="gtk+-dev GConf-dev python-dev dbus-python-dev dbus-glib-dev \ 21.5 intltool gettext perl iso-codes" 21.6 21.7 +# What is the latest version available today? 21.8 +current_version() 21.9 +{ 21.10 + wget -O - https://github.com/ibus/ibus/releases 2>/dev/null | \ 21.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 21.12 +} 21.13 + 21.14 # Rules to configure and make the package. 21.15 compile_rules() 21.16 {
22.1 --- a/icmptx/receipt Mon Jan 17 12:42:24 2022 -0500 22.2 +++ b/icmptx/receipt Mon Jan 17 18:18:17 2022 +0000 22.3 @@ -11,6 +11,13 @@ 22.4 WEB_SITE="https://github.com/jakkarth/icmptx" 22.5 WGET_URL="http://download.github.com/$TARBALL" 22.6 22.7 +# What is the latest version available today? 22.8 +current_version() 22.9 +{ 22.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 22.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 22.12 +} 22.13 + 22.14 # Rules to configure and make the package. 22.15 compile_rules() 22.16 {
23.1 --- a/iftopcolor/receipt Mon Jan 17 12:42:24 2022 -0500 23.2 +++ b/iftopcolor/receipt Mon Jan 17 18:18:17 2022 +0000 23.3 @@ -13,6 +13,13 @@ 23.4 DEPENDS="libpcap ncurses" 23.5 BUILD_DEPENDS="libpcap-dev ncurses-dev git bzip2" 23.6 23.7 +# What is the latest version available today? 23.8 +current_version() 23.9 +{ 23.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 23.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 23.12 +} 23.13 + 23.14 # Rules to configure and make the package. 23.15 compile_rules() 23.16 {
24.1 --- a/iwatch/receipt Mon Jan 17 12:42:24 2022 -0500 24.2 +++ b/iwatch/receipt Mon Jan 17 18:18:17 2022 +0000 24.3 @@ -6,7 +6,7 @@ 24.4 SHORT_DESC="Realtime filesystem monitor." 24.5 MAINTAINER="pascal.bellard@slitaz.org" 24.6 LICENSE="GPL2" 24.7 -WEB_SITE="https://github.com/iij/iwatch/" 24.8 +WEB_SITE="https://github.com/iij/iwatch" 24.9 24.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 24.11 WGET_URL="${WEB_SITE}archive/v$VERSION/$TARBALL" 24.12 @@ -14,6 +14,13 @@ 24.13 DEPENDS="perl-event perl-linux-inotify2 perl-mail-sendmail perl-xml-simple" 24.14 BUILD_DEPENDS="ncurses-dev" 24.15 24.16 +# What is the latest version available today? 24.17 +current_version() 24.18 +{ 24.19 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 24.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 24.21 +} 24.22 + 24.23 # Rules to configure and make the package. 24.24 compile_rules() 24.25 {
25.1 --- a/juffed/receipt Mon Jan 17 12:42:24 2022 -0500 25.2 +++ b/juffed/receipt Mon Jan 17 18:18:17 2022 +0000 25.3 @@ -17,6 +17,13 @@ 25.4 DEPENDS="libQtGui libQtDBus libQtNetwork libqscintilla" 25.5 BUILD_DEPENDS="Qt4-dev cmake qmake libqscintilla-dev" 25.6 25.7 +# What is the latest version available today? 25.8 +current_version() 25.9 +{ 25.10 + wget -O - https://github.com/Mezomish/$PACKAGE/tags 2>/dev/null | \ 25.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 25.12 +} 25.13 + 25.14 # Rules to configure and make the package. 25.15 compile_rules() 25.16 {
26.1 --- a/knock/receipt Mon Jan 17 12:42:24 2022 -0500 26.2 +++ b/knock/receipt Mon Jan 17 18:18:17 2022 +0000 26.3 @@ -15,6 +15,13 @@ 26.4 DEPENDS="iptables libpcap" 26.5 BUILD_DEPENDS="libpcap-dev autoconf automake" 26.6 26.7 +# What is the latest version available today? 26.8 +current_version() 26.9 +{ 26.10 + wget -O - https://github.com/jvinet/knock/tags 2>/dev/null | \ 26.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 26.12 +} 26.13 + 26.14 # Rules to configure and make the package. 26.15 compile_rules() 26.16 {
27.1 --- a/labyrinth/receipt Mon Jan 17 12:42:24 2022 -0500 27.2 +++ b/labyrinth/receipt Mon Jan 17 18:18:17 2022 +0000 27.3 @@ -14,6 +14,13 @@ 27.4 BUILD_DEPENDS="bzip2 git python-dev pygtk-dev gtk+-dev pycairo-dev \ 27.5 pygobject-dev gettext" 27.6 27.7 +# What is the latest version available today? 27.8 +current_version() 27.9 +{ 27.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 27.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 27.12 +} 27.13 + 27.14 # Rules to configure and make the package. 27.15 compile_rules() 27.16 {
28.1 --- a/libass/receipt Mon Jan 17 12:42:24 2022 -0500 28.2 +++ b/libass/receipt Mon Jan 17 18:18:17 2022 +0000 28.3 @@ -14,6 +14,13 @@ 28.4 BUILD_DEPENDS="enca-dev freetype-dev fontconfig-dev libpng-dev \ 28.5 expat-dev fribidi-dev pkg-config libxml2-dev" 28.6 28.7 +# What is the latest version available today? 28.8 +current_version() 28.9 +{ 28.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 28.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 28.12 +} 28.13 + 28.14 # Rules to configure and make the package. 28.15 compile_rules() 28.16 {
29.1 --- a/libcdio-paranoia/receipt Mon Jan 17 12:42:24 2022 -0500 29.2 +++ b/libcdio-paranoia/receipt Mon Jan 17 18:18:17 2022 +0000 29.3 @@ -14,6 +14,13 @@ 29.4 DEPENDS="libcdio" 29.5 BUILD_DEPENDS="libcdio-dev libtool" 29.6 29.7 +# What is the latest version available today? 29.8 +current_version() 29.9 +{ 29.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 29.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;s|\+|.|;q' 29.12 +} 29.13 + 29.14 compile_rules() 29.15 { 29.16 ./configure \
30.1 --- a/libdnet/receipt Mon Jan 17 12:42:24 2022 -0500 30.2 +++ b/libdnet/receipt Mon Jan 17 18:18:17 2022 +0000 30.3 @@ -13,6 +13,13 @@ 30.4 DEPENDS="python" 30.5 BUILD_DEPENDS="python python-dev" 30.6 30.7 +# What is the latest version available today? 30.8 +current_version() 30.9 +{ 30.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 30.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 30.12 +} 30.13 + 30.14 # Rules to configure and make the package. 30.15 compile_rules() 30.16 {
31.1 --- a/libhangul/receipt Mon Jan 17 12:42:24 2022 -0500 31.2 +++ b/libhangul/receipt Mon Jan 17 18:18:17 2022 +0000 31.3 @@ -12,6 +12,13 @@ 31.4 31.5 DEPENDS="" 31.6 31.7 +# What is the latest version available today? 31.8 +current_version() 31.9 +{ 31.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 31.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 31.12 +} 31.13 + 31.14 # Rules to configure and make the package. 31.15 compile_rules() 31.16 {
32.1 --- a/libmcs/receipt Mon Jan 17 12:42:24 2022 -0500 32.2 +++ b/libmcs/receipt Mon Jan 17 18:18:17 2022 +0000 32.3 @@ -7,12 +7,19 @@ 32.4 MAINTAINER="mimas@slitaz.org" 32.5 LICENSE="BSD" 32.6 TARBALL="$PACKAGE-$VERSION.tgz" 32.7 -WEB_SITE="https://github.com/atheme-legacy/libmcs/" 32.8 +WEB_SITE="https://github.com/atheme-legacy/libmcs" 32.9 WGET_URL="http://distfiles.atheme.org/$TARBALL" 32.10 32.11 DEPENDS="libmowgli" 32.12 BUILD_DEPENDS="libmowgli-dev" 32.13 32.14 +# What is the latest version available today? 32.15 +current_version() 32.16 +{ 32.17 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 32.18 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 32.19 +} 32.20 + 32.21 # Rules to configure and make the package. 32.22 compile_rules() 32.23 {
33.1 --- a/libt4k_common/receipt Mon Jan 17 12:42:24 2022 -0500 33.2 +++ b/libt4k_common/receipt Mon Jan 17 18:18:17 2022 +0000 33.3 @@ -16,6 +16,13 @@ 33.4 BUILD_DEPENDS="libsdl-dev libsdl-image-dev libsdl-mixer-dev libsdl-ttf-dev \ 33.5 libsdl-net-dev librsvg-dev libsdl-pango-dev wget libxml2-dev libcroco-dev" 33.6 33.7 +# What is the latest version available today? 33.8 +current_version() 33.9 +{ 33.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 33.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 33.12 +} 33.13 + 33.14 # Rules to configure and make the package. 33.15 compile_rules() 33.16 {
34.1 --- a/lua-posix/receipt Mon Jan 17 12:42:24 2022 -0500 34.2 +++ b/lua-posix/receipt Mon Jan 17 18:18:17 2022 +0000 34.3 @@ -6,7 +6,7 @@ 34.4 SHORT_DESC="POSIX Library for the Lua Programming Language." 34.5 MAINTAINER="maintainer@slitaz.org" 34.6 LICENSE="MIT" 34.7 -WEB_SITE="https://github.com/luaposix/luaposix/" 34.8 +WEB_SITE="https://github.com/luaposix/luaposix" 34.9 34.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 34.11 WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz" 34.12 @@ -14,6 +14,13 @@ 34.13 SUGGESTED="lua" 34.14 BUILD_DEPENDS="lua-dev" 34.15 34.16 +# What is the latest version available today? 34.17 +current_version() 34.18 +{ 34.19 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 34.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 34.21 +} 34.22 + 34.23 # Rules to configure and make the package. 34.24 compile_rules() 34.25 {
35.1 --- a/luafilesystem/receipt Mon Jan 17 12:42:24 2022 -0500 35.2 +++ b/luafilesystem/receipt Mon Jan 17 18:18:17 2022 +0000 35.3 @@ -6,11 +6,18 @@ 35.4 SHORT_DESC="File System Library for the Lua Programming Language (5.2)." 35.5 MAINTAINER="pascal.bellard@slitaz.org" 35.6 LICENSE="MIT" 35.7 -WEB_SITE="https://github.com/keplerproject/luafilesystem/" 35.8 +WEB_SITE="https://github.com/keplerproject/luafilesystem" 35.9 35.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 35.11 WGET_URL="${WEB_SITE}archive/v${VERSION//./_}.tar.gz" 35.12 35.13 +# What is the latest version available today? 35.14 +current_version() 35.15 +{ 35.16 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 35.17 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 35.18 +} 35.19 + 35.20 SUGGESTED="lua" 35.21 BUILD_DEPENDS="lua-dev" 35.22
36.1 --- a/lucene++/receipt Mon Jan 17 12:42:24 2022 -0500 36.2 +++ b/lucene++/receipt Mon Jan 17 18:18:17 2022 +0000 36.3 @@ -17,6 +17,13 @@ 36.4 BUILD_DEPENDS="cmake libboost-date-time-dev libboost-filesystem-dev \ 36.5 libboost-regex-dev libboost-thread-dev libboost-iostreams-dev" 36.6 36.7 +# What is the latest version available today? 36.8 +current_version() 36.9 +{ 36.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 36.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 36.12 +} 36.13 + 36.14 # Rules to configure and make the package. 36.15 compile_rules() 36.16 {
37.1 --- a/luufs/receipt Mon Jan 17 12:42:24 2022 -0500 37.2 +++ b/luufs/receipt Mon Jan 17 18:18:17 2022 +0000 37.3 @@ -17,6 +17,13 @@ 37.4 DEPENDS="fuse" 37.5 BUILD_DEPENDS="fuse-dev" 37.6 37.7 +# What is the latest version available today? 37.8 +current_version() 37.9 +{ 37.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 37.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 37.12 +} 37.13 + 37.14 # Rules to configure and make the package. 37.15 compile_rules() 37.16 {
38.1 --- a/lxqt-appswitcher/receipt Mon Jan 17 12:42:24 2022 -0500 38.2 +++ b/lxqt-appswitcher/receipt Mon Jan 17 18:18:17 2022 +0000 38.3 @@ -15,6 +15,13 @@ 38.4 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake xorg-libX11-dev liblxqt-dev \ 38.5 lxqt-globalkeys-dev libqtxdg-dev " 38.6 38.7 +# What is the latest version available today? 38.8 +current_version() 38.9 +{ 38.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 38.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 38.12 +} 38.13 + 38.14 # Rules to configure and make the package. 38.15 compile_rules() 38.16 {
39.1 --- a/lxqt-common/receipt Mon Jan 17 12:42:24 2022 -0500 39.2 +++ b/lxqt-common/receipt Mon Jan 17 18:18:17 2022 +0000 39.3 @@ -15,6 +15,13 @@ 39.4 DEPENDS="xorg-xprop dbus " 39.5 BUILD_DEPENDS="cmake Qt4-dev qmake liblxqt-dev grep libqtxdg-dev" 39.6 39.7 +# What is the latest version available today? 39.8 +current_version() 39.9 +{ 39.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 39.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 39.12 +} 39.13 + 39.14 # Rules to configure and make the package. 39.15 compile_rules() 39.16 {
40.1 --- a/lxqt-config-randr/receipt Mon Jan 17 12:42:24 2022 -0500 40.2 +++ b/lxqt-config-randr/receipt Mon Jan 17 18:18:17 2022 +0000 40.3 @@ -15,6 +15,13 @@ 40.4 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake xorg-libX11-dev \ 40.5 xorg-libXrandr-dev libqtxdg-dev liblxqt-dev" 40.6 40.7 +# What is the latest version available today? 40.8 +current_version() 40.9 +{ 40.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 40.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 40.12 +} 40.13 + 40.14 # Rules to configure and make the package. 40.15 compile_rules() 40.16 {
41.1 --- a/memo/receipt Mon Jan 17 12:42:24 2022 -0500 41.2 +++ b/memo/receipt Mon Jan 17 18:18:17 2022 +0000 41.3 @@ -7,12 +7,19 @@ 41.4 MAINTAINER="paul@slitaz.org" 41.5 TARBALL="$PACKAGE-$VERSION.tar.gz" 41.6 LICENSE="GPL3" 41.7 -WEB_SITE="https://github.com/mrVanDalo/memo/" 41.8 +WEB_SITE="https://github.com/mrVanDalo/memo" 41.9 WGET_URL="http://www.ideabyte.net/memo/$TARBALL" 41.10 41.11 DEPENDS="ncurses" 41.12 BUILD_DEPENDS="ncurses-dev" 41.13 41.14 +# What is the latest version available today? 41.15 +current_version() 41.16 +{ 41.17 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 41.18 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 41.19 +} 41.20 + 41.21 # Rules to configure and make the package. 41.22 compile_rules() 41.23 {
42.1 --- a/mfoc/receipt Mon Jan 17 12:42:24 2022 -0500 42.2 +++ b/mfoc/receipt Mon Jan 17 18:18:17 2022 +0000 42.3 @@ -13,6 +13,13 @@ 42.4 DEPENDS="libnfc" 42.5 BUILD_DEPENDS="pkg-config libnfc-dev" 42.6 42.7 +# What is the latest version available today? 42.8 +current_version() 42.9 +{ 42.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 42.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 42.12 +} 42.13 + 42.14 # Rules to configure and make the package. 42.15 compile_rules() 42.16 {
43.1 --- a/mktorrent/receipt Mon Jan 17 12:42:24 2022 -0500 43.2 +++ b/mktorrent/receipt Mon Jan 17 18:18:17 2022 +0000 43.3 @@ -6,7 +6,7 @@ 43.4 SHORT_DESC="Command line utility to create BitTorrent metainfo files." 43.5 MAINTAINER="pascal.bellard@slitaz.org" 43.6 LICENSE="GPL2" 43.7 -WEB_SITE="https://github.com/Rudde/mktorrent/" 43.8 +WEB_SITE="https://github.com/Rudde/mktorrent" 43.9 43.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 43.11 WGET_URL="${WEB_SITE}archive/v$VERSION/$TARBALL" 43.12 @@ -16,6 +16,13 @@ 43.13 43.14 HOST_ARCH="i486 arm x86_64" 43.15 43.16 +# What is the latest version available today? 43.17 +current_version() 43.18 +{ 43.19 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 43.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 43.21 +} 43.22 + 43.23 # Rules to configure and make the package. 43.24 compile_rules() 43.25 {
44.1 --- a/nagisk/receipt Mon Jan 17 12:42:24 2022 -0500 44.2 +++ b/nagisk/receipt Mon Jan 17 18:18:17 2022 +0000 44.3 @@ -6,7 +6,7 @@ 44.4 SHORT_DESC="Simple tool to monitor Asterisk from a Nagios server." 44.5 MAINTAINER="pascal.bellard@slitaz.org" 44.6 LICENSE="GPL3" 44.7 -WEB_SITE="https://github.com/nicolargo/nagisk/" 44.8 +WEB_SITE="https://github.com/nicolargo/nagisk" 44.9 44.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 44.11 WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz" 44.12 @@ -14,6 +14,13 @@ 44.13 DEPENDS="nagios-nrpe perl sudo" 44.14 BUILD_DEPENDS="" 44.15 44.16 +# What is the latest version available today? 44.17 +current_version() 44.18 +{ 44.19 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 44.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 44.21 +} 44.22 + 44.23 # Rules to gen a SliTaz package suitable for Tazpkg. 44.24 genpkg_rules() 44.25 {
45.1 --- a/noto-mono/receipt Mon Jan 17 12:42:24 2022 -0500 45.2 +++ b/noto-mono/receipt Mon Jan 17 18:18:17 2022 +0000 45.3 @@ -13,6 +13,13 @@ 45.4 WGET_URL="https://github.com/googlei18n/noto-fonts/raw/$COMMIT/hinted/NotoMono-$font.ttf" 45.5 TAGS="font" 45.6 45.7 +# What is the latest version available today? 45.8 +current_version() 45.9 +{ 45.10 + wget -O - https://github.com/googlei18n/noto-fonts/releases 2>/dev/null | \ 45.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 45.12 +} 45.13 + 45.14 # Rules to configure and make the package. 45.15 compile_rules() 45.16 {
46.1 --- a/noto-sans/receipt Mon Jan 17 12:42:24 2022 -0500 46.2 +++ b/noto-sans/receipt Mon Jan 17 18:18:17 2022 +0000 46.3 @@ -16,6 +16,13 @@ 46.4 46.5 SIBLINGS="noto-serif" 46.6 46.7 +# What is the latest version available today? 46.8 +current_version() 46.9 +{ 46.10 + wget -O - https://github.com/googlei18n/noto-fonts/releases 2>/dev/null | \ 46.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 46.12 +} 46.13 + 46.14 # Rules to configure and make the package. 46.15 compile_rules() 46.16 {
47.1 --- a/noto-serif/receipt Mon Jan 17 12:42:24 2022 -0500 47.2 +++ b/noto-serif/receipt Mon Jan 17 18:18:17 2022 +0000 47.3 @@ -16,6 +16,13 @@ 47.4 47.5 SIBLINGS="noto-serif" 47.6 47.7 +# What is the latest version available today? 47.8 +current_version() 47.9 +{ 47.10 + wget -O - https://github.com/googlei18n/noto-fonts/releases 2>/dev/null | \ 47.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 47.12 +} 47.13 + 47.14 # Rules to configure and make the package. 47.15 compile_rules() 47.16 {
48.1 --- a/phonon-backend-gstreamer/receipt Mon Jan 17 12:42:24 2022 -0500 48.2 +++ b/phonon-backend-gstreamer/receipt Mon Jan 17 18:18:17 2022 +0000 48.3 @@ -7,7 +7,7 @@ 48.4 SHORT_DESC="gstreamer lib for phonon" 48.5 MAINTAINER="psychomaniak@xakep.ru" 48.6 TARBALL="$PACKAGE-$VERSION.tar.xz" 48.7 -WEB_SITE="https://github.com/KDE/phonon/" 48.8 +WEB_SITE="https://github.com/KDE/phonon" 48.9 WGET_URL="http://download.kde.org/stable/phonon/$PACKAGE/$VERSION/src/$TARBALL" 48.10 48.11 DEPENDS="phonon gst-plugins-base gst-plugins-good gst-ffmpeg" 48.12 @@ -16,6 +16,13 @@ 48.13 48.14 PROVIDE="qt4-phonon" 48.15 48.16 +# What is the latest version available today? 48.17 +current_version() 48.18 +{ 48.19 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 48.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 48.21 +} 48.22 + 48.23 compile_rules() 48.24 { 48.25 mkdir build; cd build
49.1 --- a/phonon/receipt Mon Jan 17 12:42:24 2022 -0500 49.2 +++ b/phonon/receipt Mon Jan 17 18:18:17 2022 +0000 49.3 @@ -6,7 +6,7 @@ 49.4 SHORT_DESC="KDE multimedia framework." 49.5 MAINTAINER="psychomaniak@xakep.ru" 49.6 LICENSE="LGPL2.1" 49.7 -WEB_SITE="https://github.com/KDE/phonon/" 49.8 +WEB_SITE="https://github.com/KDE/phonon" 49.9 49.10 TARBALL="$PACKAGE-$VERSION.tar.xz" 49.11 WGET_URL="http://download.kde.org/stable/$PACKAGE/$VERSION/$TARBALL" 49.12 @@ -14,6 +14,13 @@ 49.13 DEPENDS="libQtCore libQtDBus libQtGui libQtXml" 49.14 BUILD_DEPENDS="automoc4 cmake qmake Qt4-dev" 49.15 49.16 +# What is the latest version available today? 49.17 +current_version() 49.18 +{ 49.19 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 49.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 49.21 +} 49.22 + 49.23 compile_rules() 49.24 { 49.25 mkdir build
50.1 --- a/pilot-link/receipt Mon Jan 17 12:42:24 2022 -0500 50.2 +++ b/pilot-link/receipt Mon Jan 17 18:18:17 2022 +0000 50.3 @@ -13,6 +13,13 @@ 50.4 DEPENDS="popt readline" 50.5 BUILD_DEPENDS="popt-dev readline-dev" 50.6 50.7 +# What is the latest version available today? 50.8 +current_version() 50.9 +{ 50.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 50.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 50.12 +} 50.13 + 50.14 # Rules to configure and make the package. 50.15 compile_rules() 50.16 {
51.1 --- a/pktstat/receipt Mon Jan 17 12:42:24 2022 -0500 51.2 +++ b/pktstat/receipt Mon Jan 17 18:18:17 2022 +0000 51.3 @@ -13,6 +13,13 @@ 51.4 DEPENDS="ncurses libpcap" 51.5 BUILD_DEPENDS="ncurses-dev libpcap-dev" 51.6 51.7 +# What is the latest version available today? 51.8 +current_version() 51.9 +{ 51.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 51.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 51.12 +} 51.13 + 51.14 # Rules to configure and make the package. 51.15 compile_rules() 51.16 {
52.1 --- a/protobuf-python/receipt Mon Jan 17 12:42:24 2022 -0500 52.2 +++ b/protobuf-python/receipt Mon Jan 17 18:18:17 2022 +0000 52.3 @@ -6,7 +6,7 @@ 52.4 SHORT_DESC="Protocol buffers - Google's data interchange format (python)." 52.5 MAINTAINER="slaxemulator@gmail.com" 52.6 LICENSE="BSD" 52.7 -WEB_SITE="https://github.com/protocolbuffers/protobuf/" 52.8 +WEB_SITE="https://github.com/protocolbuffers/protobuf" 52.9 52.10 SOURCE="protobuf" 52.11 TARBALL="$SOURCE-$VERSION.tar.gz" 52.12 @@ -15,6 +15,13 @@ 52.13 DEPENDS="protobuf python" 52.14 BUILD_DEPENDS="libatomic protobuf-dev python-dev python-setuptools" 52.15 52.16 +# What is the latest version available today? 52.17 +current_version() 52.18 +{ 52.19 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 52.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 52.21 +} 52.22 + 52.23 # Rules to configure and make the package. 52.24 compile_rules() 52.25 {
53.1 --- a/protobuf/receipt Mon Jan 17 12:42:24 2022 -0500 53.2 +++ b/protobuf/receipt Mon Jan 17 18:18:17 2022 +0000 53.3 @@ -6,7 +6,7 @@ 53.4 SHORT_DESC="Protocol buffers - Google's data interchange format." 53.5 MAINTAINER="pankso@slitaz.org" 53.6 LICENSE="BSD" 53.7 -WEB_SITE="https://github.com/protocolbuffers/protobuf/" 53.8 +WEB_SITE="https://github.com/protocolbuffers/protobuf" 53.9 53.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 53.11 WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz" 53.12 @@ -14,6 +14,13 @@ 53.13 DEPENDS="gcc83-lib-base libatomic" 53.14 BUILD_DEPENDS="automake gcc83 libtool" 53.15 53.16 +# What is the latest version available today? 53.17 +current_version() 53.18 +{ 53.19 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 53.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 53.21 +} 53.22 + 53.23 # Rules to configure and make the package. 53.24 compile_rules() 53.25 {
54.1 --- a/pwauth/receipt Mon Jan 17 12:42:24 2022 -0500 54.2 +++ b/pwauth/receipt Mon Jan 17 18:18:17 2022 +0000 54.3 @@ -7,12 +7,19 @@ 54.4 MAINTAINER="pankso@slitaz.org" 54.5 LICENSE="BSD" 54.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 54.7 -WEB_SITE="https://github.com/phokz/pwauth/" 54.8 +WEB_SITE="https://github.com/phokz/pwauth" 54.9 WGET_URL="https://pwauth.googlecode.com/files/$TARBALL" 54.10 54.11 DEPENDS="" 54.12 BUILD_DEPENDS="wget" 54.13 54.14 +# What is the latest version available today? 54.15 +current_version() 54.16 +{ 54.17 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 54.18 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 54.19 +} 54.20 + 54.21 # Rules to configure and make the package. 54.22 compile_rules() 54.23 {
55.1 --- a/py3k-setuptools_scm/receipt Mon Jan 17 12:42:24 2022 -0500 55.2 +++ b/py3k-setuptools_scm/receipt Mon Jan 17 18:18:17 2022 +0000 55.3 @@ -15,6 +15,13 @@ 55.4 DEPENDS="py3k" 55.5 BUILD_DEPENDS="py3k-dev py3k" 55.6 55.7 +# What is the latest version available today? 55.8 +current_version() 55.9 +{ 55.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 55.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 55.12 +} 55.13 + 55.14 # Rules to configure and make the package. 55.15 compile_rules() 55.16 {
56.1 --- a/python-gevent-psycopg2/receipt Mon Jan 17 12:42:24 2022 -0500 56.2 +++ b/python-gevent-psycopg2/receipt Mon Jan 17 18:18:17 2022 +0000 56.3 @@ -14,6 +14,13 @@ 56.4 DEPENDS="psycopg2 python-gevent" 56.5 BUILD_DEPENDS="wget python-distribute python-dev python openssl" 56.6 56.7 +# What is the latest version available today? 56.8 +current_version() 56.9 +{ 56.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 56.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 56.12 +} 56.13 + 56.14 # Rules to configure and make the package. 56.15 compile_rules() 56.16 {
57.1 --- a/python-oauth2/receipt Mon Jan 17 12:42:24 2022 -0500 57.2 +++ b/python-oauth2/receipt Mon Jan 17 18:18:17 2022 +0000 57.3 @@ -16,6 +16,13 @@ 57.4 DEPENDS="python" 57.5 BUILD_DEPENDS="python python-dev python-setuptools" 57.6 57.7 +# What is the latest version available today? 57.8 +current_version() 57.9 +{ 57.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 57.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 57.12 +} 57.13 + 57.14 # Rules to configure and make the package. 57.15 compile_rules() 57.16 {
58.1 --- a/python-prompt-toolkit/receipt Mon Jan 17 12:42:24 2022 -0500 58.2 +++ b/python-prompt-toolkit/receipt Mon Jan 17 18:18:17 2022 +0000 58.3 @@ -14,6 +14,13 @@ 58.4 DEPENDS="python python-pygments python-six python-wcwidth" 58.5 BUILD_DEPENDS="python-dev python-pygments python-setuptools python-six python-wcwidth" 58.6 58.7 +# What is the latest version available today? 58.8 +current_version() 58.9 +{ 58.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 58.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 58.12 +} 58.13 + 58.14 # Rules to configure and make the package. 58.15 compile_rules() 58.16 {
59.1 --- a/pyvim/receipt Mon Jan 17 12:42:24 2022 -0500 59.2 +++ b/pyvim/receipt Mon Jan 17 18:18:17 2022 +0000 59.3 @@ -15,6 +15,13 @@ 59.4 BUILD_DEPENDS="ptpython python python-dev python-docopt python-prompt-toolkit 59.5 python-pyflakes python-setuptools" 59.6 59.7 +# What is the latest version available today? 59.8 +current_version() 59.9 +{ 59.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 59.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 59.12 +} 59.13 + 59.14 # Rules to configure and make the package. 59.15 compile_rules() 59.16 {
60.1 --- a/qlipper/receipt Mon Jan 17 12:42:24 2022 -0500 60.2 +++ b/qlipper/receipt Mon Jan 17 18:18:17 2022 +0000 60.3 @@ -13,6 +13,13 @@ 60.4 DEPENDS="libQtGui libQtDBus libQtNetwork" 60.5 BUILD_DEPENDS="Qt4-dev cmake qmake" 60.6 60.7 +# What is the latest version available today? 60.8 +current_version() 60.9 +{ 60.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 60.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 60.12 +} 60.13 + 60.14 # Rules to configure and make the package. 60.15 compile_rules() 60.16 {
61.1 --- a/qps/receipt Mon Jan 17 12:42:24 2022 -0500 61.2 +++ b/qps/receipt Mon Jan 17 18:18:17 2022 +0000 61.3 @@ -13,6 +13,13 @@ 61.4 DEPENDS="libQtGui libQtDBus libQtXml" 61.5 BUILD_DEPENDS="Qt4-dev qmake" 61.6 61.7 +# What is the latest version available today? 61.8 +current_version() 61.9 +{ 61.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 61.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 61.12 +} 61.13 + 61.14 # Rules to configure and make the package. 61.15 compile_rules() 61.16 {
62.1 --- a/qtermwidget/receipt Mon Jan 17 12:42:24 2022 -0500 62.2 +++ b/qtermwidget/receipt Mon Jan 17 18:18:17 2022 +0000 62.3 @@ -14,6 +14,13 @@ 62.4 DEPENDS="gcc-lib-base glibc-base" 62.5 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake" 62.6 62.7 +# What is the latest version available today? 62.8 +current_version() 62.9 +{ 62.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 62.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 62.12 +} 62.13 + 62.14 # Rules to configure and make the package. 62.15 compile_rules() 62.16 {
63.1 --- a/quodlibet/receipt Mon Jan 17 12:42:24 2022 -0500 63.2 +++ b/quodlibet/receipt Mon Jan 17 18:18:17 2022 +0000 63.3 @@ -18,6 +18,13 @@ 63.4 gst-plugins-good-dev gstreamer-dev gst-plugins-ugly-dev pygtk-dev intltool \ 63.5 gettext gtk+-dev python-dev file" 63.6 63.7 +# What is the latest version available today? 63.8 +current_version() 63.9 +{ 63.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 63.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 63.12 +} 63.13 + 63.14 # Rules to configure and make the package. 63.15 compile_rules() 63.16 {
64.1 --- a/qxkb/receipt Mon Jan 17 12:42:24 2022 -0500 64.2 +++ b/qxkb/receipt Mon Jan 17 18:18:17 2022 +0000 64.3 @@ -13,6 +13,13 @@ 64.4 DEPENDS="glibc-base libQtSvg xorg-libxkbfile" 64.5 BUILD_DEPENDS="cmake Qt4-dev xorg-libxkbfile-dev qmake" 64.6 64.7 +# What is the latest version available today? 64.8 +current_version() 64.9 +{ 64.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 64.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 64.12 +} 64.13 + 64.14 # Rules to configure and make the package. 64.15 compile_rules() 64.16 {
65.1 --- a/raspberrypi-vc/receipt Mon Jan 17 12:42:24 2022 -0500 65.2 +++ b/raspberrypi-vc/receipt Mon Jan 17 18:18:17 2022 +0000 65.3 @@ -16,6 +16,13 @@ 65.4 65.5 BUILD_DEPENDS="wget" 65.6 65.7 +# What is the latest version available today? 65.8 +current_version() 65.9 +{ 65.10 + wget -O - https://github.com/raspberrypi/firmware/tags 2>/dev/null | \ 65.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 65.12 +} 65.13 + 65.14 # Cross tool PATH is not set in genpkg_rules 65.15 compile_rules() 65.16 {
66.1 --- a/rlwrap/receipt Mon Jan 17 12:42:24 2022 -0500 66.2 +++ b/rlwrap/receipt Mon Jan 17 18:18:17 2022 +0000 66.3 @@ -6,13 +6,20 @@ 66.4 SHORT_DESC="Input history wrapper using GNU readline." 66.5 MAINTAINER="pascal.bellard@slitaz.org" 66.6 LICENSE="GPL2" 66.7 -WEB_SITE="https://github.com/hanslub42/rlwrap/" 66.8 +WEB_SITE="https://github.com/hanslub42/rlwrap" 66.9 66.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 66.11 WGET_URL="${WEB_SITE}archive/v$VERSION/$TARBALL" 66.12 66.13 BUILD_DEPENDS="automake ncurses-dev readline-dev" 66.14 66.15 +# What is the latest version available today? 66.16 +current_version() 66.17 +{ 66.18 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 66.19 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 66.20 +} 66.21 + 66.22 # Rules to configure and make the package. 66.23 compile_rules() 66.24 {
67.1 --- a/rubyripper/receipt Mon Jan 17 12:42:24 2022 -0500 67.2 +++ b/rubyripper/receipt Mon Jan 17 18:18:17 2022 +0000 67.3 @@ -15,6 +15,13 @@ 67.4 DEPENDS="cd-discid cdparanoia-III flac normalize ruby" 67.5 BUILD_DEPENDS="cd-discid cdparanoia-III lame normalize ruby-dev vorbis-tools" 67.6 67.7 +# What is the latest version available today? 67.8 +current_version() 67.9 +{ 67.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 67.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 67.12 +} 67.13 + 67.14 # Rules to configure and make the package. 67.15 compile_rules() 67.16 {
68.1 --- a/shell-fm/receipt Mon Jan 17 12:42:24 2022 -0500 68.2 +++ b/shell-fm/receipt Mon Jan 17 18:18:17 2022 +0000 68.3 @@ -13,6 +13,13 @@ 68.4 DEPENDS="libmad libao taglib zlib" 68.5 BUILD_DEPENDS="libmad-dev libao-dev libao wget pkg-config" 68.6 68.7 +# What is the latest version available today? 68.8 +current_version() 68.9 +{ 68.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 68.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 68.12 +} 68.13 + 68.14 # Rules to configure and make the package. 68.15 compile_rules() 68.16 {
69.1 --- a/snownews/receipt Mon Jan 17 12:42:24 2022 -0500 69.2 +++ b/snownews/receipt Mon Jan 17 18:18:17 2022 +0000 69.3 @@ -14,6 +14,13 @@ 69.4 BUILD_DEPENDS="zlib-dev libxml2-dev ncurses-dev gettext perl \ 69.5 openssl-dev acl libcroco wget" 69.6 69.7 +# What is the latest version available today? 69.8 +current_version() 69.9 +{ 69.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 69.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 69.12 +} 69.13 + 69.14 # Rules to configure and make the package. 69.15 compile_rules() 69.16 {
70.1 --- a/sozi/receipt Mon Jan 17 12:42:24 2022 -0500 70.2 +++ b/sozi/receipt Mon Jan 17 18:18:17 2022 +0000 70.3 @@ -13,6 +13,13 @@ 70.4 DEPENDS="inkscape python pygtk python-lxml" 70.5 BUILD_DEPENDS="wget" 70.6 70.7 +# What is the latest version available today? 70.8 +current_version() 70.9 +{ 70.10 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 70.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 70.12 +} 70.13 + 70.14 # Rules to configure and make the package. 70.15 compile_rules() 70.16 {
71.1 --- a/speedcrunch/receipt Mon Jan 17 12:42:24 2022 -0500 71.2 +++ b/speedcrunch/receipt Mon Jan 17 18:18:17 2022 +0000 71.3 @@ -16,6 +16,13 @@ 71.4 DEPENDS="glibc-base libQtGui libQtXml" 71.5 BUILD_DEPENDS="cmake Qt4-dev qmake" 71.6 71.7 +# What is the latest version available today? 71.8 +current_version() 71.9 +{ 71.10 + wget -O - https://github.com/speedcrunch/SpeedCrunch/tags 2>/dev/null | \ 71.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 71.12 +} 71.13 + 71.14 # Rules to configure and make the package. 71.15 compile_rules() 71.16 {
72.1 --- a/sunxi-tools/receipt Mon Jan 17 12:42:24 2022 -0500 72.2 +++ b/sunxi-tools/receipt Mon Jan 17 18:18:17 2022 +0000 72.3 @@ -13,6 +13,13 @@ 72.4 DEPENDS="libusb" 72.5 BUILD_DEPENDS="wget pkg-config libusb-dev" 72.6 72.7 +# What is the latest version available today? 72.8 +current_version() 72.9 +{ 72.10 + wget -O - https://github.com/amery/sunxi-tools/tags 2>/dev/null | \ 72.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 72.12 +} 72.13 + 72.14 # Rules to configure and make the package. 72.15 compile_rules() 72.16 {
73.1 --- a/tcptrack/receipt Mon Jan 17 12:42:24 2022 -0500 73.2 +++ b/tcptrack/receipt Mon Jan 17 18:18:17 2022 +0000 73.3 @@ -6,7 +6,7 @@ 73.4 SHORT_DESC="TCP connection tracker." 73.5 MAINTAINER="paul@slitaz.org" 73.6 LICENSE="GPL2.1" 73.7 -WEB_SITE="https://github.com/bchretien/tcptrack/" 73.8 +WEB_SITE="https://github.com/bchretien/tcptrack" 73.9 73.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 73.11 WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz" 73.12 @@ -14,6 +14,13 @@ 73.13 DEPENDS="libpcap ncurses" 73.14 BUILD_DEPENDS="libpcap-dev ncurses-dev" 73.15 73.16 +# What is the latest version available today? 73.17 +current_version() 73.18 +{ 73.19 + wget -O - $WEB_SITE/releases 2>/dev/null | \ 73.20 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 73.21 +} 73.22 + 73.23 # Rules to configure and make the package. 73.24 compile_rules() 73.25 {
74.1 --- a/telegram/receipt Mon Jan 17 12:42:24 2022 -0500 74.2 +++ b/telegram/receipt Mon Jan 17 18:18:17 2022 +0000 74.3 @@ -14,6 +14,13 @@ 74.4 DEPENDS="libconfig libedit ncursesw libcrypto" 74.5 BUILD_DEPENDS="wget libconfig-dev lua-dev readline-dev openssl-dev libedit" 74.6 74.7 +# What is the latest version available today? 74.8 +current_version() 74.9 +{ 74.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 74.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 74.12 +} 74.13 + 74.14 # Rules to configure and make the package. 74.15 compile_rules() 74.16 {
75.1 --- a/wavpack/receipt Mon Jan 17 12:42:24 2022 -0500 75.2 +++ b/wavpack/receipt Mon Jan 17 18:18:17 2022 +0000 75.3 @@ -14,6 +14,13 @@ 75.4 DEPENDS="glibc-base" 75.5 BUILD_DEPENDS="autoconf automake libtool" 75.6 75.7 +# What is the latest version available today? 75.8 +current_version() 75.9 +{ 75.10 + wget -O - https://github.com/dbry/WavPack/releases 2>/dev/null | \ 75.11 + sed '/archive.*tar/!d;s|.*/[A-Za-z_-]*\(.*\).tar.*|\1|;q' 75.12 +} 75.13 + 75.14 # Rules to configure and make the package. 75.15 compile_rules() 75.16 {