wok-6.x rev 24385
Add some current_version
line diff
1.1 --- a/cherokee/receipt Sun Feb 06 16:04:43 2022 +0000 1.2 +++ b/cherokee/receipt Mon Feb 07 11:38:23 2022 +0000 1.3 @@ -35,6 +35,9 @@ 1.4 sed -i -r 's|(%localstatedir%/log)|\1/cherokee|' \ 1.5 cherokee.conf.sample.pre 1.6 1.7 + # Avoid automake 1.16.5 'error: AM_INIT_AUTOMAKE expanded multiple times' 1.8 + sed -i 's|^AM_INIT_AUTOMAKE$|dnl &|' configure.ac 1.9 + 1.10 ./autogen.sh \ 1.11 --prefix=/usr \ 1.12 --sysconfdir=/etc \
2.1 --- a/daloradius/receipt Sun Feb 06 16:04:43 2022 +0000 2.2 +++ b/daloradius/receipt Mon Feb 07 11:38:23 2022 +0000 2.3 @@ -12,6 +12,13 @@ 2.4 2.5 DEPENDS="php-gd php-mysql freeradius" 2.6 2.7 +# What is the latest version available today? 2.8 +current_version() 2.9 +{ 2.10 + wget -O - https://sourceforge.net/projects/daloradius/files/daloradius/ 2>/dev/null | \ 2.11 + sed '/scope="row/!d;/daloradius\/daloradius/!d;s|.*/daloradius/daloradius-*||;s|/.*||;q' 2.12 +} 2.13 + 2.14 # Rules to gen a SliTaz package suitable for Tazpkg. 2.15 genpkg_rules() 2.16 {
3.1 --- a/dansguardian/receipt Sun Feb 06 16:04:43 2022 +0000 3.2 +++ b/dansguardian/receipt Mon Feb 07 11:38:23 2022 +0000 3.3 @@ -15,6 +15,13 @@ 3.4 DEPENDS="squid" 3.5 BUILD_DEPENDS="pcre-dev" 3.6 3.7 +# What is the latest version available today? 3.8 +current_version() 3.9 +{ 3.10 + wget -O - https://sourceforge.net/projects/dansguardian/files/ 2>/dev/null | \ 3.11 + sed '/scope="row/!d;s|.*/dansguardian-||;s|.tar.*||;q' 3.12 +} 3.13 + 3.14 # Rules to configure and make the package. 3.15 compile_rules() 3.16 {
4.1 --- a/dar/receipt Sun Feb 06 16:04:43 2022 +0000 4.2 +++ b/dar/receipt Mon Feb 07 11:38:23 2022 +0000 4.3 @@ -18,6 +18,14 @@ 4.4 4.5 TODO="split package into dar and dar-dev ?" 4.6 4.7 +# What is the latest version available today? 4.8 +current_version() 4.9 +{ 4.10 + wget -O - https://sourceforge.net/projects/dar/files/dar/ 2>/dev/null | \ 4.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 4.12 + sed '/scope="row/!d;s|.*/dar/||;s|/.*||;q' 4.13 +} 4.14 + 4.15 # Rules to configure and make the package. 4.16 compile_rules() 4.17 {
5.1 --- a/dcfldd/receipt Sun Feb 06 16:04:43 2022 +0000 5.2 +++ b/dcfldd/receipt Mon Feb 07 11:38:23 2022 +0000 5.3 @@ -13,6 +13,14 @@ 5.4 DEPENDS="" 5.5 BUILD_DEPENDS="" 5.6 5.7 +# What is the latest version available today? 5.8 +current_version() 5.9 +{ 5.10 + wget -O - https://sourceforge.net/projects/dcfldd/files/dcfldd/ 2>/dev/null | \ 5.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 5.12 + sed '/scope="row/!d;s|.*/dcfldd/||;s|/.*||;q' 5.13 +} 5.14 + 5.15 # Rules to configure and make the package. 5.16 compile_rules() 5.17 {
6.1 --- a/deadbeef/receipt Sun Feb 06 16:04:43 2022 +0000 6.2 +++ b/deadbeef/receipt Mon Feb 07 11:38:23 2022 +0000 6.3 @@ -20,6 +20,14 @@ 6.4 libmad-dev libogg-dev libsamplerate-dev libsndfile libsndfile-dev 6.5 libvorbis-dev libzip-dev util-linux-uuid-dev yasm zlib-dev" 6.6 6.7 +# What is the latest version available today? 6.8 +current_version() 6.9 +{ 6.10 + wget -O - https://sourceforge.net/projects/deadbeef/files/travis/linux/ 2>/dev/null | \ 6.11 + sed '/scope="row/!d;/\/[0-9]/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 6.12 + sed '/scope="row/!d;/deadbeef-[0-9]/!d;s|.*/deadbeef-||;s|.tar.*||;q' 6.13 +} 6.14 + 6.15 # Rules to configure and make the package. 6.16 compile_rules() 6.17 {
7.1 --- a/dfm/receipt Sun Feb 06 16:04:43 2022 +0000 7.2 +++ b/dfm/receipt Mon Feb 07 11:38:23 2022 +0000 7.3 @@ -13,6 +13,13 @@ 7.4 DEPENDS="bzlib libQtGui libQtNetwork" 7.5 BUILD_DEPENDS="qmake Qt4-dev" 7.6 7.7 +# What is the latest version available today? 7.8 +current_version() 7.9 +{ 7.10 + wget -O - https://sourceforge.net/projects/dfm/files/src/ 2>/dev/null | \ 7.11 + sed '/scope="row/!d;s|.*/Dino_src-||;s|.tar.*||;q' 7.12 +} 7.13 + 7.14 # Rules to configure and make the package. 7.15 compile_rules() 7.16 {
8.1 --- a/disktype/receipt Sun Feb 06 16:04:43 2022 +0000 8.2 +++ b/disktype/receipt Mon Feb 07 11:38:23 2022 +0000 8.3 @@ -12,10 +12,17 @@ 8.4 8.5 DEPENDS="" 8.6 8.7 +# What is the latest version available today? 8.8 +current_version() 8.9 +{ 8.10 + wget -O - https://sourceforge.net/projects/disktype/files/disktype/ 2>/dev/null | \ 8.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 8.12 + sed '/scope="row/!d;s|.*/disktype/||;s|/.*||;q' 8.13 +} 8.14 + 8.15 # Rules to configure and make the package. 8.16 compile_rules() 8.17 { 8.18 - cd $src 8.19 make 8.20 } 8.21
9.1 --- a/djmount/receipt Sun Feb 06 16:04:43 2022 +0000 9.2 +++ b/djmount/receipt Mon Feb 07 11:38:23 2022 +0000 9.3 @@ -16,6 +16,14 @@ 9.4 BUILD_DEPENDS="automake bash fuse-dev readline-dev" # libupnp libupnp-dev 9.5 # included in source archive 9.6 9.7 +# What is the latest version available today? 9.8 +current_version() 9.9 +{ 9.10 + wget -O - https://sourceforge.net/projects/djmount/files/djmount/ 2>/dev/null | \ 9.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 9.12 + sed '/scope="row/!d;s|.*/djmount/||;s|/.*||;q' 9.13 +} 9.14 + 9.15 # Rules to configure and make the package. 9.16 compile_rules() 9.17 {
10.1 --- a/djvulibre/receipt Sun Feb 06 16:04:43 2022 +0000 10.2 +++ b/djvulibre/receipt Mon Feb 07 11:38:23 2022 +0000 10.3 @@ -20,6 +20,14 @@ 10.4 arm*) BUILD_DEPENDS="tiff-dev jpeg-dev " ;; 10.5 esac 10.6 10.7 +# What is the latest version available today? 10.8 +current_version() 10.9 +{ 10.10 + wget -O - https://sourceforge.net/projects/djvu/files/DjVuLibre/ 2>/dev/null | \ 10.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 10.12 + sed '/scope="row/!d;s|.*/DjVuLibre/||;s|/.*||;q' 10.13 +} 10.14 + 10.15 # Rules to configure and make the package. 10.16 compile_rules() 10.17 {
11.1 --- a/dosbox/receipt Sun Feb 06 16:04:43 2022 +0000 11.2 +++ b/dosbox/receipt Mon Feb 07 11:38:23 2022 +0000 11.3 @@ -15,6 +15,14 @@ 11.4 DEPENDS="alsa-lib libpng libsdl libsdl-net mesa xorg-libX11 zlib" 11.5 BUILD_DEPENDS="libsdl-dev libsdl-net-dev xorg-libX11-dev" 11.6 11.7 +# What is the latest version available today? 11.8 +current_version() 11.9 +{ 11.10 + wget -O - https://sourceforge.net/projects/dosbox/files/dosbox/ 2>/dev/null | \ 11.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 11.12 + sed '/scope="row/!d;s|.*/dosbox/||;s|/.*||;s|-|.|g;q' 11.13 +} 11.14 + 11.15 # Rules to configure and make the package. 11.16 compile_rules() 11.17 {
12.1 --- a/drakon-editor/receipt Sun Feb 06 16:04:43 2022 +0000 12.2 +++ b/drakon-editor/receipt Mon Feb 07 11:38:23 2022 +0000 12.3 @@ -13,6 +13,13 @@ 12.4 12.5 DEPENDS="libsqlite-tcl libtkimg tcllib tk" 12.6 12.7 +# What is the latest version available today? 12.8 +current_version() 12.9 +{ 12.10 + wget -O - https://sourceforge.net/projects/drakon-editor/files/ 2>/dev/null | \ 12.11 + sed '/scope="row/!d;/examples/d;s|.*/drakon_editor||;s|.zip.*||;q' 12.12 +} 12.13 + 12.14 # Rules to gen a SliTaz package suitable for Tazpkg. 12.15 genpkg_rules() 12.16 {
13.1 --- a/dssi/receipt Sun Feb 06 16:04:43 2022 +0000 13.2 +++ b/dssi/receipt Mon Feb 07 11:38:23 2022 +0000 13.3 @@ -13,6 +13,14 @@ 13.4 DEPENDS="gcc-lib-base" 13.5 BUILD_DEPENDS="pkg-config alsa-lib-dev ladspa-dev" 13.6 13.7 +# What is the latest version available today? 13.8 +current_version() 13.9 +{ 13.10 + wget -O - https://sourceforge.net/projects/dssi/files/dssi/ 2>/dev/null | \ 13.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 13.12 + sed '/scope="row/!d;s|.*/dssi/||;s|/.*||;q' 13.13 +} 13.14 + 13.15 # Rules to configure and make the package. 13.16 compile_rules() 13.17 {
14.1 --- a/dvdauthor/receipt Sun Feb 06 16:04:43 2022 +0000 14.2 +++ b/dvdauthor/receipt Mon Feb 07 11:38:23 2022 +0000 14.3 @@ -14,6 +14,13 @@ 14.4 DEPENDS="libpng tiff jpeg libxml2 fribidi libdvdread" 14.5 BUILD_DEPENDS="libpng-dev tiff-dev jpeg-dev libxml2-dev libdvdread-dev" 14.6 14.7 +# What is the latest version available today? 14.8 +current_version() 14.9 +{ 14.10 + wget -O - https://sourceforge.net/projects/dvdauthor/files/ 2>/dev/null | \ 14.11 + sed '/scope="row/!d;/dvdauthor-/!d;s|.*/dvdauthor-||;s|.tar.*||;q' 14.12 +} 14.13 + 14.14 # Rules to configure and make the package. 14.15 compile_rules() 14.16 {
15.1 --- a/ebtables/receipt Sun Feb 06 16:04:43 2022 +0000 15.2 +++ b/ebtables/receipt Mon Feb 07 11:38:23 2022 +0000 15.3 @@ -11,6 +11,14 @@ 15.4 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 15.5 TAGS="firewall" 15.6 15.7 +# What is the latest version available today? 15.8 +current_version() 15.9 +{ 15.10 + wget -O - https://sourceforge.net/projects/ebtables/files/ebtables/ 2>/dev/null | \ 15.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 15.12 + sed '/scope="row/!d;/tar/!d;s|.*-v|v|;s|.tar.*||' 15.13 +} 15.14 + 15.15 # Rules to configure and make the package. 15.16 compile_rules() 15.17 {
16.1 --- a/elilo/receipt Sun Feb 06 16:04:43 2022 +0000 16.2 +++ b/elilo/receipt Mon Feb 07 11:38:23 2022 +0000 16.3 @@ -15,6 +15,13 @@ 16.4 # See http://mactel-linux.sourceforge.net/wiki/Main_Page 16.5 # genisoimage -boot-hfs-file 16.6 16.7 +# What is the latest version available today? 16.8 +current_version() 16.9 +{ 16.10 + wget -O - https://sourceforge.net/projects/elilo/files/elilo/ 2>/dev/null | \ 16.11 + sed '/scope="row/!d;s|.*/elilo-||;s|/.*||;q' 16.12 +} 16.13 + 16.14 # Rules to configure and make the package. 16.15 compile_rules() 16.16 {
17.1 --- a/enigma/receipt Sun Feb 06 16:04:43 2022 +0000 17.2 +++ b/enigma/receipt Mon Feb 07 11:38:23 2022 +0000 17.3 @@ -16,6 +16,13 @@ 17.4 libsdl-mixer-dev libsdl-ttf-dev xerces-c-dev" 17.5 # imagemagick for /usr/bin/convert only 17.6 17.7 +# What is the latest version available today? 17.8 +current_version() 17.9 +{ 17.10 + wget -O - https://sourceforge.net/projects/enigma-game/files/ 2>/dev/null | \ 17.11 + sed '/scope="row/!d;s|.*elease%20||;s|/.*||;q' 17.12 +} 17.13 + 17.14 # Rules to configure and make the package. 17.15 compile_rules() 17.16 {
18.1 --- a/espeak/receipt Sun Feb 06 16:04:43 2022 +0000 18.2 +++ b/espeak/receipt Mon Feb 07 11:38:23 2022 +0000 18.3 @@ -17,6 +17,14 @@ 18.4 BUILD_DEPENDS="$DEPENDS portaudio-dev jack-audio-connection-kit-dev" 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 - https://sourceforge.net/projects/espeak/files/espeak/ 2>/dev/null | \ 18.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 18.12 + sed '/scope="row/!d;/-source/!d;s|.*espeak-.*espeak-||;s|-source.*||;q' 18.13 +} 18.14 + 18.15 # Rules to configure and make the package. 18.16 compile_rules() 18.17 {
19.1 --- a/etherape/receipt Sun Feb 06 16:04:43 2022 +0000 19.2 +++ b/etherape/receipt Mon Feb 07 11:38:23 2022 +0000 19.3 @@ -19,6 +19,14 @@ 19.4 libgnome-dev libgnomeui-dev libpcap-dev libtool libxslt-dev 19.5 ossp-uuid-dev" 19.6 19.7 +# What is the latest version available today? 19.8 +current_version() 19.9 +{ 19.10 + wget -O - https://sourceforge.net/projects/etherape/files/etherape/ 2>/dev/null | \ 19.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 19.12 + sed '/scope="row/!d;s|.*/etherape/||;s|/.*||;q' 19.13 +} 19.14 + 19.15 # Rules to configure and make the package. 19.16 compile_rules() 19.17 {
20.1 --- a/etherboot/receipt Sun Feb 06 16:04:43 2022 +0000 20.2 +++ b/etherboot/receipt Mon Feb 07 11:38:23 2022 +0000 20.3 @@ -12,6 +12,14 @@ 20.4 20.5 BUILD_DEPENDS="perl" 20.6 20.7 +# What is the latest version available today? 20.8 +current_version() 20.9 +{ 20.10 + wget -O - https://sourceforge.net/projects/etherboot/files/etherboot/ 2>/dev/null | \ 20.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 20.12 + sed '/scope="row/!d;s|.*/etherboot/||;s|/.*||;q' 20.13 +} 20.14 + 20.15 # Rules to configure and make the package. 20.16 compile_rules() 20.17 {
21.1 --- a/exif/receipt Sun Feb 06 16:04:43 2022 +0000 21.2 +++ b/exif/receipt Mon Feb 07 11:38:23 2022 +0000 21.3 @@ -14,6 +14,14 @@ 21.4 DEPENDS="libexif popt" 21.5 BUILD_DEPENDS="libexif libexif-dev popt-dev" 21.6 21.7 +# What is the latest version available today? 21.8 +current_version() 21.9 +{ 21.10 + wget -O - https://sourceforge.net/projects/libexif/files/libexif/ 2>/dev/null | \ 21.11 + sed '/scope="row/!d;/release/d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 21.12 + sed '/scope="row/!d;s|.*/libexif/||;s|/.*||;q' 21.13 +} 21.14 + 21.15 # Rules to configure and make the package. 21.16 compile_rules() 21.17 {
22.1 --- a/extrema/receipt Sun Feb 06 16:04:43 2022 +0000 22.2 +++ b/extrema/receipt Mon Feb 07 11:38:23 2022 +0000 22.3 @@ -14,6 +14,14 @@ 22.4 DEPENDS="gtk+ wxWidgets28 xorg-libXxf86vm libxml2" 22.5 BUILD_DEPENDS="gtk+-dev wxWidgets28-dev" 22.6 22.7 +# What is the latest version available today? 22.8 +current_version() 22.9 +{ 22.10 + wget -O - https://sourceforge.net/projects/extrema/files/extrema/ 2>/dev/null | \ 22.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 22.12 + sed '/scope="row/!d;s|.*%20v||;s|/.*||;q' 22.13 +} 22.14 + 22.15 # Rules to configure and make the package. 22.16 compile_rules() 22.17 {
23.1 --- a/extundelete/receipt Sun Feb 06 16:04:43 2022 +0000 23.2 +++ b/extundelete/receipt Mon Feb 07 11:38:23 2022 +0000 23.3 @@ -13,6 +13,14 @@ 23.4 DEPENDS="e2fsprogs gcc-lib-base" 23.5 BUILD_DEPENDS="e2fsprogs-dev" 23.6 23.7 +# What is the latest version available today? 23.8 +current_version() 23.9 +{ 23.10 + wget -O - https://sourceforge.net/projects/extundelete/files/extundelete/ 2>/dev/null | \ 23.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 23.12 + sed '/scope="row/!d;s|.*/extundelete/||;s|/.*||;q' 23.13 +} 23.14 + 23.15 # Rules to configure and make the package. 23.16 compile_rules() 23.17 {
24.1 --- a/fatback/receipt Sun Feb 06 16:04:43 2022 +0000 24.2 +++ b/fatback/receipt Mon Feb 07 11:38:23 2022 +0000 24.3 @@ -12,6 +12,14 @@ 24.4 24.5 BUILD_DEPENDS="flex autoconf automake libtool" 24.6 24.7 +# What is the latest version available today? 24.8 +current_version() 24.9 +{ 24.10 + wget -O - https://sourceforge.net/projects/fatback/files/fatback/ 2>/dev/null | \ 24.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 24.12 + sed '/scope="row/!d;s|.*/fatback-||;s|.tar.*||;q' 24.13 +} 24.14 + 24.15 # Rules to configure and make the package. 24.16 compile_rules() 24.17 {
25.1 --- a/fbxkb/receipt Sun Feb 06 16:04:43 2022 +0000 25.2 +++ b/fbxkb/receipt Mon Feb 07 11:38:23 2022 +0000 25.3 @@ -13,10 +13,17 @@ 25.4 DEPENDS="gtk+ xorg-libXmu" 25.5 BUILD_DEPENDS="gtk+-dev xorg-libXmu-dev" 25.6 25.7 +# What is the latest version available today? 25.8 +current_version() 25.9 +{ 25.10 + wget -O - https://sourceforge.net/projects/fbxkb/files/fbxkb/ 2>/dev/null | \ 25.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 25.12 + sed '/scope="row/!d;s|.*/fbxkb/||;s|/.*||;q' 25.13 +} 25.14 + 25.15 # Rules to configure and make the package. 25.16 compile_rules() 25.17 { 25.18 - cd $src 25.19 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11" 25.20 patch -Np1 -i $stuff/$PACKAGE.patch 25.21 ./configure &&
26.1 --- a/fceux/receipt Sun Feb 06 16:04:43 2022 +0000 26.2 +++ b/fceux/receipt Mon Feb 07 11:38:23 2022 +0000 26.3 @@ -15,6 +15,14 @@ 26.4 DEPENDS="gtk+ libsdl lua" 26.5 BUILD_DEPENDS="elfutils-dev gtk+-dev libsdl-dev lua-dev mesa-dev scons zlib-dev" 26.6 26.7 +# What is the latest version available today? 26.8 +current_version() 26.9 +{ 26.10 + wget -O - https://sourceforge.net/projects/fceultra/files/Source%20Code/ 2>/dev/null | \ 26.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 26.12 + sed '/scope="row/!d;s|.*fceux-||;s|.tar.*||' 26.13 +} 26.14 + 26.15 # Rules to configure and make the package. 26.16 compile_rules() 26.17 {
27.1 --- a/fetchmail/receipt Sun Feb 06 16:04:43 2022 +0000 27.2 +++ b/fetchmail/receipt Mon Feb 07 11:38:23 2022 +0000 27.3 @@ -17,6 +17,14 @@ 27.4 DEPENDS="openssl" 27.5 BUILD_DEPENDS="openssl-dev" 27.6 27.7 +# What is the latest version available today? 27.8 +current_version() 27.9 +{ 27.10 + wget -O - https://sourceforge.net/projects/fetchmail/files/ 2>/dev/null | \ 27.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 27.12 + sed '/scope="row/!d;s|.*/fetchmail-||;s|.tar.*||;q' 27.13 +} 27.14 + 27.15 # Rules to configure and make the package. 27.16 compile_rules() 27.17 {
28.1 --- a/filezilla/receipt Sun Feb 06 16:04:43 2022 +0000 28.2 +++ b/filezilla/receipt Mon Feb 07 11:38:23 2022 +0000 28.3 @@ -18,6 +18,13 @@ 28.4 BUILD_DEPENDS="gettext gnutls-dev libgnutls libidn-dev 28.5 libunistring-dev sqlite-dev wxWidgets28-dev xdg-utils" 28.6 28.7 +# What is the latest version available today? 28.8 +current_version() 28.9 +{ 28.10 + wget -O - $WEB_SITE 2>/dev/null | \ 28.11 + sed '/ released/!d;/FileZilla Client/!d;s|.*Client ||;s| released.*||;q' 28.12 +} 28.13 + 28.14 # Rules to configure and make the package. 28.15 compile_rules() 28.16 {
29.1 --- a/flatpress/receipt Sun Feb 06 16:04:43 2022 +0000 29.2 +++ b/flatpress/receipt Mon Feb 07 11:38:23 2022 +0000 29.3 @@ -12,6 +12,13 @@ 29.4 29.5 DEPENDS="php" 29.6 29.7 +# What is the latest version available today? 29.8 +current_version() 29.9 +{ 29.10 + wget -O - https://github.com/flatpressblog/flatpress/releases 2>/dev/null | \ 29.11 + sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' 29.12 +} 29.13 + 29.14 # Rules to configure and make the package. 29.15 compile_rules() 29.16 {
30.1 --- a/florence/receipt Sun Feb 06 16:04:43 2022 +0000 30.2 +++ b/florence/receipt Mon Feb 07 11:38:23 2022 +0000 30.3 @@ -16,6 +16,14 @@ 30.4 gnome-doc-utils gnome-doc-utils-dev gtk+3-dev libnotify-dev 30.5 librsvg-dev util-linux-uuid-dev" 30.6 30.7 +# What is the latest version available today? 30.8 +current_version() 30.9 +{ 30.10 + wget -O - https://sourceforge.net/projects//florence/files/florence/ 2>/dev/null | \ 30.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 30.12 + sed '/scope="row/!d;s|.*/florence/||;s|/.*||;q' 30.13 +} 30.14 + 30.15 # Rules to configure and make the package. 30.16 compile_rules() 30.17 {
31.1 --- a/fluxbox/receipt Sun Feb 06 16:04:43 2022 +0000 31.2 +++ b/fluxbox/receipt Mon Feb 07 11:38:23 2022 +0000 31.3 @@ -14,6 +14,14 @@ 31.4 DEPENDS="xorg fontconfig imlib2 hsetroot xorg-xcompmgr" 31.5 BUILD_DEPENDS="xorg-dev fontconfig-dev imlib2-dev" 31.6 31.7 +# What is the latest version available today? 31.8 +current_version() 31.9 +{ 31.10 + wget -O - https://sourceforge.net/projects/fluxbox/files/fluxbox/ 2>/dev/null | \ 31.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 31.12 + sed '/scope="row/!d;s|.*/fluxbox/||;s|/.*||;q' 31.13 +} 31.14 + 31.15 # Rules to configure and make the package. 31.16 compile_rules() 31.17 {
32.1 --- a/foobillard/receipt Sun Feb 06 16:04:43 2022 +0000 32.2 +++ b/foobillard/receipt Mon Feb 07 11:38:23 2022 +0000 32.3 @@ -13,6 +13,13 @@ 32.4 DEPENDS="libsdl freetype libpng mesa libglu-mesa" 32.5 BUILD_DEPENDS="libsdl-dev freetype-dev libpng-dev libglu-mesa mesa-dev zlib-dev" 32.6 32.7 +# What is the latest version available today? 32.8 +current_version() 32.9 +{ 32.10 + wget -O - https://sourceforge.net/projects/foobillard/files/FooBillard-Sources/ 2>/dev/null | \ 32.11 + sed '/scope="row/!d;s|.*/foobillard-||;s|.tar.*||;q' 32.12 +} 32.13 + 32.14 # Rules to configure and make the package. 32.15 compile_rules() 32.16 {
33.1 --- a/foobillardplus/receipt Sun Feb 06 16:04:43 2022 +0000 33.2 +++ b/foobillardplus/receipt Mon Feb 07 11:38:23 2022 +0000 33.3 @@ -15,6 +15,13 @@ 33.4 BUILD_DEPENDS="bash automake autoconf libsdl-dev libsdl-mixer-dev \ 33.5 libsdl-net-dev mesa-dev libglu-mesa freetype-dev libpng-dev" 33.6 33.7 +# What is the latest version available today? 33.8 +current_version() 33.9 +{ 33.10 + wget -O - https://sourceforge.net/projects/foobillardplus/files/source/ 2>/dev/null | \ 33.11 + sed '/scope="row/!d;/README/d;s|.*/foobillardplus-||;s|.tar.*||;q' 33.12 +} 33.13 + 33.14 # Rules to configure and make the package. 33.15 compile_rules() 33.16 {
34.1 --- a/freeciv/receipt Sun Feb 06 16:04:43 2022 +0000 34.2 +++ b/freeciv/receipt Mon Feb 07 11:38:23 2022 +0000 34.3 @@ -17,6 +17,15 @@ 34.4 BUILD_DEPENDS="bzip2-dev curl-dev expat-dev gettext glibc-locale 34.5 gtk+3-dev libsdl-mixer-dev ncurses-dev readline-dev zlib-dev" 34.6 34.7 +# What is the latest version available today? 34.8 +current_version() 34.9 +{ 34.10 + wget -O - https://sourceforge.net/projects/freeciv/files/ 2>/dev/null | \ 34.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 34.12 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 34.13 + sed '/scope="row/!d;/tar/!d;s|.*/freeciv-||;s|.tar.*||;q' 34.14 +} 34.15 + 34.16 # Rules to configure and make the package. 34.17 compile_rules() 34.18 {
35.1 --- a/freeglut/receipt Sun Feb 06 16:04:43 2022 +0000 35.2 +++ b/freeglut/receipt Mon Feb 07 11:38:23 2022 +0000 35.3 @@ -20,6 +20,14 @@ 35.4 xorg-libXdmcp-dev xorg-libXext-dev xorg-libXfixes-dev xorg-libXi-dev 35.5 xorg-libXxf86vm-dev xorg-xproto" 35.6 35.7 +# What is the latest version available today? 35.8 +current_version() 35.9 +{ 35.10 + wget -O - https://sourceforge.net/projects/freeglut/files/freeglut/ 2>/dev/null | \ 35.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 35.12 + sed '/scope="row/!d;s|.*/freeglut/||;s|/.*||;q' 35.13 +} 35.14 + 35.15 # Rules to configure and make the package. 35.16 compile_rules() 35.17 {
36.1 --- a/freetype1/receipt Sun Feb 06 16:04:43 2022 +0000 36.2 +++ b/freetype1/receipt Mon Feb 07 11:38:23 2022 +0000 36.3 @@ -13,6 +13,14 @@ 36.4 36.5 DEPENDS="glibc-base" 36.6 36.7 +# What is the latest version available today? 36.8 +current_version() 36.9 +{ 36.10 + wget -O - https://sourceforge.net/projects/freetype/files/freetype/ 2>/dev/null | \ 36.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 36.12 + sed '/scope="row/!d;s|.*/freetype/||;s|/.*||;q' 36.13 +} 36.14 + 36.15 # Rules to configure and make the package. 36.16 compile_rules() 36.17 {
37.1 --- a/frox/receipt Sun Feb 06 16:04:43 2022 +0000 37.2 +++ b/frox/receipt Mon Feb 07 11:38:23 2022 +0000 37.3 @@ -12,6 +12,14 @@ 37.4 CONFIG_FILES="/etc/frox.conf" 37.5 TAGS="ftp" 37.6 37.7 +# What is the latest version available today? 37.8 +current_version() 37.9 +{ 37.10 + wget -O - https://sourceforge.net/projects/frox/files/frox/ 2>/dev/null | \ 37.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 37.12 + sed '/scope="row/!d;s|.*/frox/||;s|/.*||;q' 37.13 +} 37.14 + 37.15 # Rules to configure and make the package. 37.16 compile_rules() 37.17 {
38.1 --- a/ftgl/receipt Sun Feb 06 16:04:43 2022 +0000 38.2 +++ b/ftgl/receipt Mon Feb 07 11:38:23 2022 +0000 38.3 @@ -13,6 +13,14 @@ 38.4 DEPENDS="freetype freeglut mesa libglu-mesa" 38.5 BUILD_DEPENDS="$DEPENDS freetype-dev freeglut-dev mesa-dev libglu-mesa-dev" 38.6 38.7 +# What is the latest version available today? 38.8 +current_version() 38.9 +{ 38.10 + wget -O - https://sourceforge.net/projects/ftgl/files/FTGL%20Source/ 2>/dev/null | \ 38.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 38.12 + sed '/scope="row/!d;s|.*ource/||;s|/.*||;q' 38.13 +} 38.14 + 38.15 # Rules to configure and make the package. 38.16 compile_rules() 38.17 {
39.1 --- a/ftop/receipt Sun Feb 06 16:04:43 2022 +0000 39.2 +++ b/ftop/receipt Mon Feb 07 11:38:23 2022 +0000 39.3 @@ -13,6 +13,14 @@ 39.4 DEPENDS="ncurses" 39.5 BUILD_DEPENDS="ncurses-dev" 39.6 39.7 +# What is the latest version available today? 39.8 +current_version() 39.9 +{ 39.10 + wget -O - https://sourceforge.net/projects/ftop/files/ftop/ 2>/dev/null | \ 39.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 39.12 + sed '/scope="row/!d;s|.*/ftop/||;s|/.*||;q' 39.13 +} 39.14 + 39.15 # Rules to configure and make the package. 39.16 compile_rules() 39.17 {
40.1 --- a/fuse-emulator/receipt Sun Feb 06 16:04:43 2022 +0000 40.2 +++ b/fuse-emulator/receipt Mon Feb 07 11:38:23 2022 +0000 40.3 @@ -16,6 +16,14 @@ 40.4 BUILD_DEPENDS="alsa-lib-dev gtk+-dev libpng-dev libspectrum-dev 40.5 libxml2-dev" 40.6 40.7 +# What is the latest version available today? 40.8 +current_version() 40.9 +{ 40.10 + wget -O - https://sourceforge.net/projects/fuse-emulator/files/fuse/ 2>/dev/null | \ 40.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 40.12 + sed '/scope="row/!d;s|.*/fuse/||;s|/.*||;q' 40.13 +} 40.14 + 40.15 # Rules to configure and make the package. 40.16 compile_rules() 40.17 {
41.1 --- a/fusecloop/receipt Sun Feb 06 16:04:43 2022 +0000 41.2 +++ b/fusecloop/receipt Mon Feb 07 11:38:23 2022 +0000 41.3 @@ -18,6 +18,13 @@ 41.4 BUILD_DEPENDS="fuse-dev zlib-dev xz-dev liblzma lz4-dev lzo-dev zstd-dev automake" 41.5 SUGGESTED="fuseiso cloop-utils" 41.6 41.7 +# What is the latest version available today? 41.8 +current_version() 41.9 +{ 41.10 + wget -O - https://sourceforge.net/projects/fusecloop/files/ 2>/dev/null | \ 41.11 + sed '/scope="row/!d;/fusecloop-/!d;s|.*/fusecloop-||;s|.tar.*||;q' 41.12 +} 41.13 + 41.14 # Rules to configure and make the package. 41.15 compile_rules() 41.16 {
42.1 --- a/fxload/receipt Sun Feb 06 16:04:43 2022 +0000 42.2 +++ b/fxload/receipt Mon Feb 07 11:38:23 2022 +0000 42.3 @@ -10,6 +10,14 @@ 42.4 WEB_SITE="https://sourceforge.net/projects/linux-hotplug/" 42.5 WGET_URL="$SF_MIRROR/linux-hotplug/$PACKAGE/$VERSION/$TARBALL" 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/linux-hotplug/files/fxload/ 2>/dev/null | \ 42.11 + sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \ 42.12 + sed '/scope="row/!d;s|.*/fxload/||;s|/.*||;q' 42.13 +} 42.14 + 42.15 # Rules to configure and make the package. 42.16 compile_rules() 42.17 {