wok rev 24326
Update some current_version
line diff
1.1 --- a/alarm-clock/receipt Thu Jan 27 10:35:34 2022 +0100 1.2 +++ b/alarm-clock/receipt Thu Jan 27 12:16:00 2022 +0000 1.3 @@ -8,7 +8,7 @@ 1.4 MAINTAINER="pankso@slitaz.org" 1.5 LICENSE="GPL3" 1.6 #WEB_SITE="https://web.archive.org/web/20100209072308/http://www.alarm-clock.pl/" 1.7 -WEB_SITE="https://github.com/shaggytwodope/alarm-clock" 1.8 +WEB_SITE="https://github.com/nick-s-b/alarm-clock" 1.9 1.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.11 #WGET_URL="http://www.alarm-clock.pl/files/$TARBALL" 1.12 @@ -19,9 +19,10 @@ 1.13 BUILD_DEPENDS="$DEPENDS autoconf automake file gstreamer-1.0-dev gtk+-dev \ 1.14 intltool libnotify-dev libtool libunique-dev" 1.15 1.16 +# What is the latest version available today? 1.17 current_version() 1.18 { 1.19 - wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 1.20 + wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ 1.21 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 1.22 } 1.23
2.1 --- a/aqualung/receipt Thu Jan 27 10:35:34 2022 +0100 2.2 +++ b/aqualung/receipt Thu Jan 27 12:16:00 2022 +0000 2.3 @@ -18,6 +18,13 @@ 2.4 BUILD_DEPENDS="alsa-lib-dev automake bzip2-dev flac-dev gtk+-dev lame-dev libmad-dev 2.5 libogg-dev libsamplerate-dev libsndfile-dev libvorbis-dev libxml2-dev" 2.6 2.7 +# What is the latest version available today? 2.8 +current_version() 2.9 +{ 2.10 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 2.11 + sed '/archive.*tar/!d;s|.*/v*\(.*\).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/aspell-cs/receipt Thu Jan 27 10:35:34 2022 +0100 3.2 +++ b/aspell-cs/receipt Thu Jan 27 12:16:00 2022 +0000 3.3 @@ -14,10 +14,16 @@ 3.4 DEPENDS="aspell" 3.5 BUILD_DEPENDS="aspell aspell-dev" 3.6 3.7 +# What is the latest version available today? 3.8 +current_version() 3.9 +{ 3.10 + wget -O - $WEB_SITE 2>/dev/null | \ 3.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 3.12 +} 3.13 + 3.14 # Rules to configure and make the package. 3.15 compile_rules() 3.16 { 3.17 - cd $src 3.18 ./configure && \ 3.19 make && make DESTDIR=$DESTDIR install 3.20 } 3.21 @@ -28,4 +34,3 @@ 3.22 mkdir -p $fs/usr/lib 3.23 cp -a $install/usr/lib/* $fs/usr/lib 3.24 } 3.25 -
4.1 --- a/aspell-da/receipt Thu Jan 27 10:35:34 2022 +0100 4.2 +++ b/aspell-da/receipt Thu Jan 27 12:16:00 2022 +0000 4.3 @@ -15,6 +15,13 @@ 4.4 DEPENDS="aspell" 4.5 BUILD_DEPENDS="aspell aspell-dev" 4.6 4.7 +# What is the latest version available today? 4.8 +current_version() 4.9 +{ 4.10 + wget -O - $WEB_SITE 2>/dev/null | \ 4.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 4.12 +} 4.13 + 4.14 # Rules to configure and make the package. 4.15 compile_rules() 4.16 {
5.1 --- a/aspell-de/receipt Thu Jan 27 10:35:34 2022 +0100 5.2 +++ b/aspell-de/receipt Thu Jan 27 12:16:00 2022 +0000 5.3 @@ -15,6 +15,13 @@ 5.4 DEPENDS="aspell" 5.5 BUILD_DEPENDS="aspell aspell-dev" 5.6 5.7 +# What is the latest version available today? 5.8 +current_version() 5.9 +{ 5.10 + wget -O - $WEB_SITE 2>/dev/null | \ 5.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 5.12 +} 5.13 + 5.14 # Rules to configure and make the package. 5.15 compile_rules() 5.16 {
6.1 --- a/aspell-en/receipt Thu Jan 27 10:35:34 2022 +0100 6.2 +++ b/aspell-en/receipt Thu Jan 27 12:16:00 2022 +0000 6.3 @@ -17,6 +17,13 @@ 6.4 6.5 HOST_ARCH="i486 arm" 6.6 6.7 +# What is the latest version available today? 6.8 +current_version() 6.9 +{ 6.10 + wget -O - $WEB_SITE 2>/dev/null | \ 6.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 6.12 +} 6.13 + 6.14 # Rules to configure and make the package. 6.15 compile_rules() 6.16 {
7.1 --- a/aspell-es/receipt Thu Jan 27 10:35:34 2022 +0100 7.2 +++ b/aspell-es/receipt Thu Jan 27 12:16:00 2022 +0000 7.3 @@ -15,6 +15,13 @@ 7.4 DEPENDS="aspell" 7.5 BUILD_DEPENDS="aspell-dev" 7.6 7.7 +# What is the latest version available today? 7.8 +current_version() 7.9 +{ 7.10 + wget -O - $WEB_SITE 2>/dev/null | \ 7.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).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/aspell-fr/receipt Thu Jan 27 10:35:34 2022 +0100 8.2 +++ b/aspell-fr/receipt Thu Jan 27 12:16:00 2022 +0000 8.3 @@ -14,6 +14,13 @@ 8.4 DEPENDS="aspell" 8.5 BUILD_DEPENDS="aspell-dev" 8.6 8.7 +# What is the latest version available today? 8.8 +current_version() 8.9 +{ 8.10 + wget -O - $WEB_SITE 2>/dev/null | \ 8.11 + sed "/$PACKAGE/!d;s|.*$PACKAGE-\\(.*\\).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/aspell-hu/receipt Thu Jan 27 10:35:34 2022 +0100 9.2 +++ b/aspell-hu/receipt Thu Jan 27 12:16:00 2022 +0000 9.3 @@ -14,10 +14,16 @@ 9.4 DEPENDS="aspell" 9.5 BUILD_DEPENDS="aspell aspell-dev" 9.6 9.7 +# What is the latest version available today? 9.8 +current_version() 9.9 +{ 9.10 + wget -O - $WEB_SITE 2>/dev/null | \ 9.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 9.12 +} 9.13 + 9.14 # Rules to configure and make the package. 9.15 compile_rules() 9.16 { 9.17 - cd $src 9.18 ./configure && \ 9.19 make && make DESTDIR=$DESTDIR install 9.20 } 9.21 @@ -28,5 +34,3 @@ 9.22 mkdir -p $fs/usr/lib 9.23 cp -a $install/usr/lib/* $fs/usr/lib 9.24 } 9.25 - 9.26 -
10.1 --- a/aspell-id/receipt Thu Jan 27 10:35:34 2022 +0100 10.2 +++ b/aspell-id/receipt Thu Jan 27 12:16:00 2022 +0000 10.3 @@ -14,10 +14,16 @@ 10.4 DEPENDS="aspell" 10.5 BUILD_DEPENDS="aspell aspell-dev" 10.6 10.7 +# What is the latest version available today? 10.8 +current_version() 10.9 +{ 10.10 + wget -O - $WEB_SITE 2>/dev/null | \ 10.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 10.12 +} 10.13 + 10.14 # Rules to configure and make the package. 10.15 compile_rules() 10.16 { 10.17 - cd $src 10.18 ./configure && \ 10.19 make && make DESTDIR=$DESTDIR install 10.20 } 10.21 @@ -28,5 +34,3 @@ 10.22 mkdir -p $fs/usr/lib 10.23 cp -a $install/usr/lib/* $fs/usr/lib 10.24 } 10.25 - 10.26 -
11.1 --- a/aspell-it/receipt Thu Jan 27 10:35:34 2022 +0100 11.2 +++ b/aspell-it/receipt Thu Jan 27 12:16:00 2022 +0000 11.3 @@ -6,7 +6,7 @@ 11.4 SHORT_DESC="Italian aspell dictionary." 11.5 MAINTAINER="erjo@slitaz.org" 11.6 LICENSE="GPL2" 11.7 -WEB_SITE="http://aspell.net/" 11.8 +WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html" 11.9 11.10 SOURCE="aspell6-it" 11.11 TARBALL="$SOURCE-$VERSION.tar.bz2" 11.12 @@ -15,6 +15,13 @@ 11.13 DEPENDS="aspell" 11.14 BUILD_DEPENDS="aspell aspell-dev" 11.15 11.16 +# What is the latest version available today? 11.17 +current_version() 11.18 +{ 11.19 + wget -O - $WEB_SITE 2>/dev/null | \ 11.20 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 11.21 +} 11.22 + 11.23 # Rules to configure and make the package. 11.24 compile_rules() 11.25 {
12.1 --- a/aspell-nl/receipt Thu Jan 27 10:35:34 2022 +0100 12.2 +++ b/aspell-nl/receipt Thu Jan 27 12:16:00 2022 +0000 12.3 @@ -13,10 +13,16 @@ 12.4 DEPENDS="aspell" 12.5 BUILD_DEPENDS="aspell aspell-dev" 12.6 12.7 +# What is the latest version available today? 12.8 +current_version() 12.9 +{ 12.10 + wget -O - $WEB_SITE 2>/dev/null | \ 12.11 + sed "/$PACKAGE/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|;q" 12.12 +} 12.13 + 12.14 # Rules to configure and make the package. 12.15 compile_rules() 12.16 { 12.17 - cd $src 12.18 ./configure && \ 12.19 make && make DESTDIR=$DESTDIR install 12.20 } 12.21 @@ -27,4 +33,3 @@ 12.22 mkdir -p $fs/usr 12.23 cp -a $install/usr/lib $fs/usr 12.24 } 12.25 -
13.1 --- a/aspell-pl/receipt Thu Jan 27 10:35:34 2022 +0100 13.2 +++ b/aspell-pl/receipt Thu Jan 27 12:16:00 2022 +0000 13.3 @@ -15,6 +15,13 @@ 13.4 DEPENDS="aspell" 13.5 BUILD_DEPENDS="aspell aspell-dev" 13.6 13.7 +# What is the latest version available today? 13.8 +current_version() 13.9 +{ 13.10 + wget -O - ${WGET_URL%/*} 2>/dev/null | \ 13.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 13.12 +} 13.13 + 13.14 # Rules to configure and make the package. 13.15 compile_rules() 13.16 {
14.1 --- a/aspell-pt_BR/receipt Thu Jan 27 10:35:34 2022 +0100 14.2 +++ b/aspell-pt_BR/receipt Thu Jan 27 12:16:00 2022 +0000 14.3 @@ -17,6 +17,13 @@ 14.4 14.5 HOST_ARCH="i486 arm" 14.6 14.7 +# What is the latest version available today? 14.8 +current_version() 14.9 +{ 14.10 + wget -O - $WEB_SITE 2>/dev/null | \ 14.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 14.12 +} 14.13 + 14.14 # Rules to configure and make the package. 14.15 compile_rules() 14.16 {
15.1 --- a/aspell-pt_PT/receipt Thu Jan 27 10:35:34 2022 +0100 15.2 +++ b/aspell-pt_PT/receipt Thu Jan 27 12:16:00 2022 +0000 15.3 @@ -15,6 +15,13 @@ 15.4 DEPENDS="aspell" 15.5 BUILD_DEPENDS="aspell aspell-dev" 15.6 15.7 +# What is the latest version available today? 15.8 +current_version() 15.9 +{ 15.10 + wget -O - $WEB_SITE 2>/dev/null | \ 15.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 15.12 +} 15.13 + 15.14 # Rules to configure and make the package. 15.15 compile_rules() 15.16 {
16.1 --- a/aspell-ru/receipt Thu Jan 27 10:35:34 2022 +0100 16.2 +++ b/aspell-ru/receipt Thu Jan 27 12:16:00 2022 +0000 16.3 @@ -14,10 +14,16 @@ 16.4 DEPENDS="aspell" 16.5 BUILD_DEPENDS="aspell aspell-dev" 16.6 16.7 +# What is the latest version available today? 16.8 +current_version() 16.9 +{ 16.10 + wget -O - $WEB_SITE 2>/dev/null | \ 16.11 + sed "/$SOURCE/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;q" 16.12 +} 16.13 + 16.14 # Rules to configure and make the package. 16.15 compile_rules() 16.16 { 16.17 - cd $src 16.18 ./configure && \ 16.19 make && make DESTDIR=$DESTDIR install 16.20 }
17.1 --- a/aspell-sl/receipt Thu Jan 27 10:35:34 2022 +0100 17.2 +++ b/aspell-sl/receipt Thu Jan 27 12:16:00 2022 +0000 17.3 @@ -13,10 +13,16 @@ 17.4 DEPENDS="aspell" 17.5 BUILD_DEPENDS="aspell aspell-dev" 17.6 17.7 +# What is the latest version available today? 17.8 +current_version() 17.9 +{ 17.10 + wget -O - $WEB_SITE 2>/dev/null | \ 17.11 + sed "/$PACKAGE/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|;q" 17.12 +} 17.13 + 17.14 # Rules to configure and make the package. 17.15 compile_rules() 17.16 { 17.17 - cd $src 17.18 ./configure && \ 17.19 make && make DESTDIR=$DESTDIR install 17.20 }
18.1 --- a/aspell/receipt Thu Jan 27 10:35:34 2022 +0100 18.2 +++ b/aspell/receipt Thu Jan 27 12:16:00 2022 +0000 18.3 @@ -17,6 +17,13 @@ 18.4 18.5 HOST_ARCH="i486 arm" 18.6 18.7 +# What is the latest version available today? 18.8 +current_version() 18.9 +{ 18.10 + wget -O - $WEB_SITE 2>/dev/null | \ 18.11 + sed "/tar/!d;s|.*$PACKAGE-\\(.*\\).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/caprice32/receipt Thu Jan 27 10:35:34 2022 +0100 19.2 +++ b/caprice32/receipt Thu Jan 27 12:16:00 2022 +0000 19.3 @@ -14,6 +14,13 @@ 19.4 DEPENDS="libsdl freetype zlib libpng gcc83-lib-base" 19.5 BUILD_DEPENDS="gcc83 libsdl-dev freetype-dev zlib-dev libpng-dev gcc83-lib-base" 19.6 19.7 +# What is the latest version available today? 19.8 +current_version() 19.9 +{ 19.10 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 19.11 + sed '/latest/d;/archive.*tar/!d;s|.*/v*\(.*\).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/ctypes.sh/receipt Thu Jan 27 10:35:34 2022 +0100 20.2 +++ b/ctypes.sh/receipt Thu Jan 27 12:16:00 2022 +0000 20.3 @@ -17,6 +17,13 @@ 20.4 20.5 HOST_ARCH="i486 arm" 20.6 20.7 +# What is the latest version available today? 20.8 +current_version() 20.9 +{ 20.10 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 20.11 + sed '/archive.*tar/!d;s|.*/v*\(.*\).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/e2fsprogs/receipt Thu Jan 27 10:35:34 2022 +0100 21.2 +++ b/e2fsprogs/receipt Thu Jan 27 12:16:00 2022 +0000 21.3 @@ -22,10 +22,11 @@ 21.4 arm) BUILD_DEPENDS="" ;; 21.5 esac 21.6 21.7 +# What is the latest version available today? 21.8 current_version() 21.9 { 21.10 wget -O - https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git 2>/dev/null | \ 21.11 - sed '1,/Download/d;s|.*h=v||;s|.>.*||;q' 21.12 + sed '1,/Download/d;/h=v/!d;s|.*h=v||;s|.>.*||;q' 21.13 } 21.14 21.15 # Rules to configure and make the package.
22.1 --- a/ecryptfs-simple/receipt Thu Jan 27 10:35:34 2022 +0100 22.2 +++ b/ecryptfs-simple/receipt Thu Jan 27 12:16:00 2022 +0000 22.3 @@ -16,10 +16,11 @@ 22.4 BUILD_DEPENDS="cmake libgcrypt-dev pkg-config \ 22.5 ecryptfs-utils-dev util-linux-mount-dev keyutils-dev" 22.6 22.7 +# What is the latest version available today? 22.8 current_version() 22.9 { 22.10 - wget -O - $(dirname $WGET_URL) 2>/dev/null | \ 22.11 - sed "/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q 22.12 + wget -O - https://github.com/mhogomchungu/ecryptfs-simple/tags 2>/dev/null | \ 22.13 + sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' 22.14 } 22.15 22.16 # Rules to configure and make the package.
23.1 --- a/flac/receipt Thu Jan 27 10:35:34 2022 +0100 23.2 +++ b/flac/receipt Thu Jan 27 12:16:00 2022 +0000 23.3 @@ -17,10 +17,11 @@ 23.4 23.5 HOST_ARCH="i486 arm" 23.6 23.7 +# What is the latest version available today? 23.8 current_version() 23.9 { 23.10 - wget -O - $(dirname $WGET_URL) 2>/dev/null | \ 23.11 - sed '/flac-/!d;/tar/!d;s|.*"flac-||;s|.tar.*||' | sort -V | sed '$!d' 23.12 + wget -O - ${WEB_SITE}feeds/feed.xml 2>/dev/null | \ 23.13 + sed '/released/!d;s|.*FLAC ||;s| rel.*||;q' 23.14 } 23.15 23.16 # Rules to configure and make the package.
24.1 --- a/libav/receipt Thu Jan 27 10:35:34 2022 +0100 24.2 +++ b/libav/receipt Thu Jan 27 12:16:00 2022 +0000 24.3 @@ -20,6 +20,13 @@ 24.4 libvpx-dev netatalk-dev nut opencore-amr-dev openjpeg-dev 24.5 schroedinger-dev speex-dev x264 xvidcore-dev zlib-dev" 24.6 24.7 +# What is the latest version available today? 24.8 +current_version() 24.9 +{ 24.10 + wget -O - https://github.com/andoma/libav/tags 2>/dev/null | \ 24.11 + sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' 24.12 +} 24.13 + 24.14 # Rules to configure and make the package. 24.15 compile_rules() 24.16 {
25.1 --- a/libogg/receipt Thu Jan 27 10:35:34 2022 +0100 25.2 +++ b/libogg/receipt Thu Jan 27 12:16:00 2022 +0000 25.3 @@ -15,9 +15,10 @@ 25.4 25.5 HOST_ARCH="i486 arm" 25.6 25.7 +# What is the latest version available today? 25.8 current_version() 25.9 { 25.10 - wget -O - $(dirname $WGET_URL) 2>/dev/null | \ 25.11 + wget -O - https://www.xiph.org/downloads/ 2>/dev/null | \ 25.12 sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q 25.13 } 25.14
26.1 --- a/libvorbis/receipt Thu Jan 27 10:35:34 2022 +0100 26.2 +++ b/libvorbis/receipt Thu Jan 27 12:16:00 2022 +0000 26.3 @@ -16,9 +16,10 @@ 26.4 26.5 HOST_ARCH="i486 arm" 26.6 26.7 +# What is the latest version available today? 26.8 current_version() 26.9 { 26.10 - wget -O - $(dirname $WGET_URL) 2>/dev/null | \ 26.11 + wget -O - https://www.xiph.org/downloads/ 2>/dev/null | \ 26.12 sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q 26.13 } 26.14
27.1 --- a/opentyrian/receipt Thu Jan 27 10:35:34 2022 +0100 27.2 +++ b/opentyrian/receipt Thu Jan 27 12:16:00 2022 +0000 27.3 @@ -13,6 +13,13 @@ 27.4 DEPENDS="libsdl libsdl-mixer libsdl-net tyrian" 27.5 BUILD_DEPENDS="libsdl-dev libsdl-mixer-dev libsdl-net-dev mercurial" 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|.*/v*\(.*\).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/opus-tools/receipt Thu Jan 27 10:35:34 2022 +0100 28.2 +++ b/opus-tools/receipt Thu Jan 27 12:16:00 2022 +0000 28.3 @@ -14,6 +14,7 @@ 28.4 BUILD_DEPENDS="libogg libogg-dev opus-dev pkg-config flac-dev \ 28.5 opusfile-dev libopusenc-dev" 28.6 28.7 +# What is the latest version available today? 28.8 current_version() 28.9 { 28.10 wget -O - ${WEB_SITE}downloads/ 2>/dev/null | \
29.1 --- a/opus/receipt Thu Jan 27 10:35:34 2022 +0100 29.2 +++ b/opus/receipt Thu Jan 27 12:16:00 2022 +0000 29.3 @@ -13,6 +13,7 @@ 29.4 DEPENDS="" 29.5 BUILD_DEPENDS="" 29.6 29.7 +# What is the latest version available today? 29.8 current_version() 29.9 { 29.10 wget -O - ${WEB_SITE}downloads/ 2>/dev/null | \
30.1 --- a/opusfile/receipt Thu Jan 27 10:35:34 2022 +0100 30.2 +++ b/opusfile/receipt Thu Jan 27 12:16:00 2022 +0000 30.3 @@ -13,6 +13,7 @@ 30.4 DEPENDS="libssl libogg opus" 30.5 BUILD_DEPENDS="openssl-dev libogg libogg-dev opus-dev pkg-config" 30.6 30.7 +# What is the latest version available today? 30.8 current_version() 30.9 { 30.10 wget -O - ${WEB_SITE}downloads/ 2>/dev/null | \
31.1 --- a/palemoon/receipt Thu Jan 27 10:35:34 2022 +0100 31.2 +++ b/palemoon/receipt Thu Jan 27 12:16:00 2022 +0000 31.3 @@ -18,6 +18,13 @@ 31.4 libvpx-dev mesa-dev python-setuptools virtualenv zlib-dev bzip2-dev python-dev \ 31.5 pixman pixman-dev libffi libffi-dev" # sqlite sqlite-dev libevent libevent-dev 31.6 31.7 +# What is the latest version available today? 31.8 +current_version() 31.9 +{ 31.10 + wget -O - $WEB_SITE 2>/dev/null | \ 31.11 + sed '/released/!d;s|.*oon ||;s| has.*||;q' 31.12 +} 31.13 + 31.14 # Rules to configure and make the package. 31.15 compile_rules() 31.16 {
32.1 --- a/perl-compress-raw-bzip2/receipt Thu Jan 27 10:35:34 2022 +0100 32.2 +++ b/perl-compress-raw-bzip2/receipt Thu Jan 27 12:16:00 2022 +0000 32.3 @@ -19,7 +19,7 @@ 32.4 current_version() 32.5 { 32.6 wget -O - $WEB_SITE 2>/dev/null | \ 32.7 - sed '/ompress-Raw-Bzip2-/!d;s|.*zip2-||;s| -.*||;q' 32.8 + sed '/ompress-Raw-Bzip2-/!d;s|.*zip2-||;s| -.*||;s|"||;q' 32.9 } 32.10 32.11 # Rules to configure and make the package.
33.1 --- a/pyhn/receipt Thu Jan 27 10:35:34 2022 +0100 33.2 +++ b/pyhn/receipt Thu Jan 27 12:16:00 2022 +0000 33.3 @@ -13,6 +13,13 @@ 33.4 DEPENDS="python python-urwid" 33.5 BUILD_DEPENDS="python-dev python-urwid git bzip2" 33.6 33.7 +# What is the latest version available today? 33.8 +current_version() 33.9 +{ 33.10 + wget -O - $WEB_SITE 2>/dev/null | \ 33.11 + sed '/Release/!d;s|.*>Release ||;s|<.*||;q' 33.12 +} 33.13 + 33.14 # Rules to configure and make the package. 33.15 compile_rules() 33.16 {
34.1 --- a/pylorcon/receipt Thu Jan 27 10:35:34 2022 +0100 34.2 +++ b/pylorcon/receipt Thu Jan 27 12:16:00 2022 +0000 34.3 @@ -13,6 +13,13 @@ 34.4 DEPENDS="python lorcon-old" 34.5 BUILD_DEPENDS="python-dev lorcon-old-dev" 34.6 34.7 +# What is the latest version available today? 34.8 +current_version() 34.9 +{ 34.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 34.11 + sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' 34.12 +} 34.13 + 34.14 # Rules to configure and make the package. 34.15 compile_rules() 34.16 {
35.1 --- a/pymux/receipt Thu Jan 27 10:35:34 2022 +0100 35.2 +++ b/pymux/receipt Thu Jan 27 12:16:00 2022 +0000 35.3 @@ -14,6 +14,13 @@ 35.4 BUILD_DEPENDS="python-dev python-docopt python-prompt-toolkit python-pyte 35.5 python-setuptools" 35.6 35.7 +# What is the latest version available today? 35.8 +current_version() 35.9 +{ 35.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 35.11 + sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' 35.12 +} 35.13 + 35.14 # Rules to configure and make the package. 35.15 compile_rules() 35.16 {
36.1 --- a/python-ipy/receipt Thu Jan 27 10:35:34 2022 +0100 36.2 +++ b/python-ipy/receipt Thu Jan 27 12:16:00 2022 +0000 36.3 @@ -6,7 +6,7 @@ 36.4 SHORT_DESC="Python class and tools for IPv4 and IPv6 addresses and networks." 36.5 MAINTAINER="pascal.bellard@slitaz.org" 36.6 LICENSE="BSD" 36.7 -WEB_SITE="https://pypi.org/project/$SOURCE/" 36.8 +WEB_SITE="https://pypi.org/project/IPy/" 36.9 36.10 SOURCE="IPy" 36.11 TARBALL="$SOURCE-$VERSION.tar.gz" 36.12 @@ -15,6 +15,7 @@ 36.13 DEPENDS="python" 36.14 BUILD_DEPENDS="python" 36.15 36.16 +# What is the latest version available today? 36.17 current_version() 36.18 { 36.19 wget -O - $WEB_SITE 2>/dev/null | sed '/, version /!d;s|.*version ||;s|<.*||'
37.1 --- a/qarma/receipt Thu Jan 27 10:35:34 2022 +0100 37.2 +++ b/qarma/receipt Thu Jan 27 12:16:00 2022 +0000 37.3 @@ -14,6 +14,13 @@ 37.4 DEPENDS="libQtDBus libQtGui" 37.5 BUILD_DEPENDS="Qt4-dev qmake xorg-libX11-dev wget" 37.6 37.7 +# What is the latest version available today? 37.8 +current_version() 37.9 +{ 37.10 + wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ 37.11 + sed '/archive.*tar/!d;s|.*/v*\(.*\).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/soundtouch/receipt Thu Jan 27 10:35:34 2022 +0100 38.2 +++ b/soundtouch/receipt Thu Jan 27 12:16:00 2022 +0000 38.3 @@ -14,10 +14,11 @@ 38.4 DEPENDS="gcc-lib-base" 38.5 BUILD_DEPENDS="automake libtool" 38.6 38.7 +# What is the latest version available today? 38.8 current_version() 38.9 { 38.10 - wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ 38.11 - sed '/tar.gz/!d;s|.*/soundtouch-\(.*\).tar.gz".*|\1|;q' 38.12 + wget -O - $WEB_SITE 2>/dev/null | \ 38.13 + sed '/release/!d;s|.* is ||;s| .*||;q' 38.14 } 38.15 38.16 # Rules to configure and make the package.
39.1 --- a/tree/receipt Thu Jan 27 10:35:34 2022 +0100 39.2 +++ b/tree/receipt Thu Jan 27 12:16:00 2022 +0000 39.3 @@ -11,6 +11,13 @@ 39.4 TARBALL="$PACKAGE-$VERSION.tgz" 39.5 WGET_URL="ftp://mama.indstate.edu/linux/tree/$TARBALL" 39.6 39.7 +# What is the latest version available today? 39.8 +current_version() 39.9 +{ 39.10 + wget -O - $WEB_SITE/tags 2>/dev/null | \ 39.11 + sed '/archive.*tar/!d;s|.*/v*\(.*\).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/uget/receipt Thu Jan 27 10:35:34 2022 +0100 40.2 +++ b/uget/receipt Thu Jan 27 12:16:00 2022 +0000 40.3 @@ -17,7 +17,7 @@ 40.4 # What is the latest version available today? 40.5 current_version() 40.6 { 40.7 - wget -O - ${WEB_SITE}downloads/ 2>/dev/null | \ 40.8 + wget --no-check-certificate -O - ${WEB_SITE}downloads/ 2>/dev/null | \ 40.9 sed '/Latest Stable/!d;s|.*sion: ||;s|<.*||' 40.10 } 40.11
41.1 --- a/vorbis-tools/receipt Thu Jan 27 10:35:34 2022 +0100 41.2 +++ b/vorbis-tools/receipt Thu Jan 27 12:16:00 2022 +0000 41.3 @@ -16,12 +16,14 @@ 41.4 BUILD_DEPENDS="libogg-dev libvorbis-dev flac-dev libao-dev curl-dev speex-dev \ 41.5 libcrypto-dev" 41.6 41.7 +# What is the latest version available today? 41.8 current_version() 41.9 { 41.10 - wget -O - $(dirname $WGET_URL) 2>/dev/null | \ 41.11 + wget -O - https://www.xiph.org/downloads/ 2>/dev/null | \ 41.12 sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q 41.13 } 41.14 41.15 + 41.16 # Rules to configure and make the package. 41.17 compile_rules() 41.18 {
42.1 --- a/vym/receipt Thu Jan 27 10:35:34 2022 +0100 42.2 +++ b/vym/receipt Thu Jan 27 12:16:00 2022 +0000 42.3 @@ -13,10 +13,11 @@ 42.4 DEPENDS="libQtCore libQtNetwork libQtXml libQtSql libQtGui libQt3Support zip" 42.5 BUILD_DEPENDS="qmake Qt4-dev" 42.6 42.7 +# What is the latest version available today? 42.8 current_version() 42.9 { 42.10 wget -O - https://sourceforge.net/projects/$PACKAGE/files/ 2>/dev/null | \ 42.11 - sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 42.12 + sed '/Development/d;/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 42.13 sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|;q" 42.14 } 42.15
43.1 --- a/xtrkcad/receipt Thu Jan 27 10:35:34 2022 +0100 43.2 +++ b/xtrkcad/receipt Thu Jan 27 12:16:00 2022 +0000 43.3 @@ -21,10 +21,11 @@ 43.4 pkg-config xorg-kbproto xorg-libX11-dev xorg-libXau-dev 43.5 xorg-libXdmcp-dev xorg-renderproto xorg-xproto zlib-dev" 43.6 43.7 +# What is the latest version available today? 43.8 current_version() 43.9 { 43.10 wget -O - https://sourceforge.net/projects/xtrkcad-fork/files/ 2>/dev/null | \ 43.11 - sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 43.12 + sed '/Development/d;/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 43.13 sed 's| |\n|g' | sed '/Version%/!d;s|%20| |g;s|.*sion ||;s|/.*||;q' 43.14 } 43.15