wok rev 24055
Add current_version for most github hosted softwares
line diff
1.1 --- a/GreenMahjong/receipt Sun May 30 10:18:33 2021 +0100 1.2 +++ b/GreenMahjong/receipt Tue Jun 08 08:46:05 2021 +0000 1.3 @@ -11,6 +11,12 @@ 1.4 WGET_URL="$WEB_SITE/archive/v$VERSION.zip" 1.5 HOST_ARCH="any" 1.6 1.7 +current_version() 1.8 +{ 1.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 1.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 1.11 +} 1.12 + 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 {
2.1 --- a/adminer/receipt Sun May 30 10:18:33 2021 +0100 2.2 +++ b/adminer/receipt Tue Jun 08 08:46:05 2021 +0000 2.3 @@ -15,6 +15,12 @@ 2.4 DEPENDS="php" 2.5 BUILD_DEPENDS="php-cli php-mysql php-pgsql php-sqlite" 2.6 2.7 +current_version() 2.8 +{ 2.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 2.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 2.11 +} 2.12 + 2.13 # Rules to configure and make the package. 2.14 compile_rules() 2.15 {
3.1 --- a/advancecomp/receipt Sun May 30 10:18:33 2021 +0100 3.2 +++ b/advancecomp/receipt Tue Jun 08 08:46:05 2021 +0000 3.3 @@ -14,6 +14,12 @@ 3.4 DEPENDS="gcc-lib-base zlib" 3.5 BUILD_DEPENDS="automake zlib-dev" 3.6 3.7 +current_version() 3.8 +{ 3.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 3.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 3.11 +} 3.12 + 3.13 # Rules to configure and make the package. 3.14 compile_rules() 3.15 {
4.1 --- a/alarm-clock/receipt Sun May 30 10:18:33 2021 +0100 4.2 +++ b/alarm-clock/receipt Tue Jun 08 08:46:05 2021 +0000 4.3 @@ -19,6 +19,12 @@ 4.4 BUILD_DEPENDS="$DEPENDS autoconf automake file gstreamer-1.0-dev gtk+-dev \ 4.5 intltool libnotify-dev libtool libunique-dev" 4.6 4.7 +current_version() 4.8 +{ 4.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 4.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 4.11 +} 4.12 + 4.13 # Rules to configure and make the package. 4.14 compile_rules() 4.15 {
5.1 --- a/ansible/receipt Sun May 30 10:18:33 2021 +0100 5.2 +++ b/ansible/receipt Tue Jun 08 08:46:05 2021 +0000 5.3 @@ -16,6 +16,12 @@ 5.4 5.5 CONFIG_FILES="/etc/ansible" 5.6 5.7 +current_version() 5.8 +{ 5.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 5.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 5.11 +} 5.12 + 5.13 # Rules to configure and make the package. 5.14 compile_rules() 5.15 {
6.1 --- a/antimicro/receipt Sun May 30 10:18:33 2021 +0100 6.2 +++ b/antimicro/receipt Tue Jun 08 08:46:05 2021 +0000 6.3 @@ -15,6 +15,12 @@ 6.4 xorg-libXdmcp xorg-libXext xorg-libXi xorg-libXtst" 6.5 BUILD_DEPENDS="cmake libsdl2-dev qmake Qt4-dev xorg-libX11-dev xorg-libXtst-dev" 6.6 6.7 +current_version() 6.8 +{ 6.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 6.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 6.11 +} 6.12 + 6.13 # Rules to configure and make the package. 6.14 compile_rules() 6.15 {
7.1 --- a/apache-mod-wsgi/receipt Sun May 30 10:18:33 2021 +0100 7.2 +++ b/apache-mod-wsgi/receipt Tue Jun 08 08:46:05 2021 +0000 7.3 @@ -14,6 +14,12 @@ 7.4 DEPENDS="apache python" 7.5 BUILD_DEPENDS="acl acl-dev apache apache-dev apr-dev apr-util-dev python-dev sed" 7.6 7.7 +current_version() 7.8 +{ 7.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 7.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 7.11 +} 7.12 + 7.13 # Rules to configure and make the package. 7.14 compile_rules() 7.15 {
8.1 --- a/apngasm/receipt Sun May 30 10:18:33 2021 +0100 8.2 +++ b/apngasm/receipt Tue Jun 08 08:46:05 2021 +0000 8.3 @@ -16,6 +16,12 @@ 8.4 BUILD_DEPENDS="cmake libboost-filesystem-dev libboost-program-options-dev 8.5 libboost-regex-dev libboost-system-dev libpng-dev zlib-dev" 8.6 8.7 +current_version() 8.8 +{ 8.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 8.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 8.11 +} 8.12 + 8.13 # Rules to configure and make the package. 8.14 compile_rules() 8.15 {
9.1 --- a/apulse/receipt Sun May 30 10:18:33 2021 +0100 9.2 +++ b/apulse/receipt Tue Jun 08 08:46:05 2021 +0000 9.3 @@ -15,6 +15,12 @@ 9.4 DEPENDS="pcre alsa-lib glib" 9.5 BUILD_DEPENDS="cmake wget alsa-lib-dev glib-dev" 9.6 9.7 +current_version() 9.8 +{ 9.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 9.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 9.11 +} 9.12 + 9.13 # Rules to configure and make the package. 9.14 compile_rules() 9.15 {
10.1 --- a/ari-py/receipt Sun May 30 10:18:33 2021 +0100 10.2 +++ b/ari-py/receipt Tue Jun 08 08:46:05 2021 +0000 10.3 @@ -14,6 +14,12 @@ 10.4 SUGGESTED="asterisk" 10.5 BUILD_DEPENDS="python python-setuptools" 10.6 10.7 +current_version() 10.8 +{ 10.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 10.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 10.11 +} 10.12 + 10.13 # Rules to configure and make the package. 10.14 compile_rules() 10.15 {
11.1 --- a/aria2/receipt Sun May 30 10:18:33 2021 +0100 11.2 +++ b/aria2/receipt Tue Jun 08 08:46:05 2021 +0000 11.3 @@ -15,6 +15,12 @@ 11.4 BUILD_DEPENDS="gcc83 gettext gmp-dev gnutls-dev libgnutls libxml2-dev \ 11.5 nettle-dev pkg-config zlib-dev" 11.6 11.7 +current_version() 11.8 +{ 11.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 11.10 + sed '/archive.*tar/!d;s|.*/release-\(.*\).tar.*|\1|;q' 11.11 +} 11.12 + 11.13 # Rules to configure and make the package. 11.14 compile_rules() 11.15 {
12.1 --- a/arora/receipt Sun May 30 10:18:33 2021 +0100 12.2 +++ b/arora/receipt Tue Jun 08 08:46:05 2021 +0000 12.3 @@ -14,6 +14,12 @@ 12.4 BUILD_DEPENDS="Qt4-dev qmake libsqlite" 12.5 DEPENDS="libQtGui libQtWebkit libQtDBus libQtXml libQtScript" 12.6 12.7 +current_version() 12.8 +{ 12.9 + wget -O - ${WGET_URL%/files*}/releases 2>/dev/null | \ 12.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 12.11 +} 12.12 + 12.13 # Rules to configure and make the package. 12.14 compile_rules() 12.15 {
13.1 --- a/arp-scan/receipt Sun May 30 10:18:33 2021 +0100 13.2 +++ b/arp-scan/receipt Tue Jun 08 08:46:05 2021 +0000 13.3 @@ -14,6 +14,12 @@ 13.4 DEPENDS="libpcap perl" 13.5 BUILD_DEPENDS="wget autoconf automake libpcap-dev" 13.6 13.7 +current_version() 13.8 +{ 13.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 13.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 13.11 +} 13.12 + 13.13 # Rules to configure and make the package. 13.14 compile_rules() 13.15 {
14.1 --- a/arpack-ng/receipt Sun May 30 10:18:33 2021 +0100 14.2 +++ b/arpack-ng/receipt Tue Jun 08 08:46:05 2021 +0000 14.3 @@ -7,7 +7,6 @@ 14.4 MAINTAINER="pascal.bellard@slitaz.org" 14.5 LICENSE="BSD" 14.6 WEB_SITE="https://github.com/opencollab/arpack-ng/" 14.7 -GIT_SITE="https://github.com/opencollab/arpack-ng" 14.8 14.9 TARBALL="${PACKAGE}_$VERSION.tar.gz" 14.10 WGET_URL="${WEB_SITE}archive/$VERSION/$TARBALL" 14.11 @@ -15,6 +14,12 @@ 14.12 DEPENDS="blas lapack libgfortran" 14.13 BUILD_DEPENDS="autoconf automake blas gfortran lapack libtool" 14.14 14.15 +current_version() 14.16 +{ 14.17 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 14.18 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 14.19 +} 14.20 + 14.21 # Rules to configure and make the package. 14.22 compile_rules() 14.23 {
15.1 --- a/arping/receipt Sun May 30 10:18:33 2021 +0100 15.2 +++ b/arping/receipt Tue Jun 08 08:46:05 2021 +0000 15.3 @@ -14,6 +14,12 @@ 15.4 DEPENDS="libcap libnet libpcap" 15.5 BUILD_DEPENDS="autoconf automake libcap-dev libnet-dev libpcap-dev" 15.6 15.7 +current_version() 15.8 +{ 15.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 15.10 + sed '/archive.*tar/!d;s|.*/arping-\(.*\).tar.*|\1|;q' 15.11 +} 15.12 + 15.13 # Rules to configure and make the package. 15.14 compile_rules() 15.15 {
16.1 --- a/ascii-patrol/receipt Sun May 30 10:18:33 2021 +0100 16.2 +++ b/ascii-patrol/receipt Tue Jun 08 08:46:05 2021 +0000 16.3 @@ -13,6 +13,12 @@ 16.4 DEPENDS="curl xorg-libX11 pulseaudio xorg-libXi" 16.5 BUILD_DEPENDS="xorg-libX11-dev pulseaudio-dev xorg-libXi-dev" 16.6 16.7 +current_version() 16.8 +{ 16.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 16.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 16.11 +} 16.12 + 16.13 # Rules to configure and make the package. 16.14 compile_rules() 16.15 {
17.1 --- a/asterisk-speech-recog/receipt Sun May 30 10:18:33 2021 +0100 17.2 +++ b/asterisk-speech-recog/receipt Tue Jun 08 08:46:05 2021 +0000 17.3 @@ -13,6 +13,12 @@ 17.4 DEPENDS="asterisk perl-libwww perl-libjson perl-io-socket-ssl flac" 17.5 BUILD_DEPENDS="wget" 17.6 17.7 +current_version() 17.8 +{ 17.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 17.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 17.11 +} 17.12 + 17.13 # Rules to gen a SliTaz package suitable for Tazpkg. 17.14 genpkg_rules() 17.15 {
18.1 --- a/astromenace/receipt Sun May 30 10:18:33 2021 +0100 18.2 +++ b/astromenace/receipt Tue Jun 08 08:46:05 2021 +0000 18.3 @@ -18,6 +18,12 @@ 18.4 libogg-dev libsdl2-dev libvorbis-dev mesa-dev openal-dev 18.5 xorg-libXinerama-dev libatomic" 18.6 18.7 +current_version() 18.8 +{ 18.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 18.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 18.11 +} 18.12 + 18.13 # Rules to configure and make the package. 18.14 compile_rules() 18.15 {
19.1 --- a/atril/receipt Sun May 30 10:18:33 2021 +0100 19.2 +++ b/atril/receipt Tue Jun 08 08:46:05 2021 +0000 19.3 @@ -19,6 +19,12 @@ 19.4 libsecret-dev caja-dev poppler-dev util-linux-uuid-dev lcms-dev \ 19.5 libgcrypt-dev djvulibre-dev" 19.6 19.7 +current_version() 19.8 +{ 19.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 19.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 19.11 +} 19.12 + 19.13 # Rules to configure and make the package. 19.14 compile_rules() 19.15 {
20.1 --- a/audacity/receipt Sun May 30 10:18:33 2021 +0100 20.2 +++ b/audacity/receipt Tue Jun 08 08:46:05 2021 +0000 20.3 @@ -19,6 +19,12 @@ 20.4 gcc49 lame-dev libatomic libmad-dev libsndfile-dev libtool \ 20.5 libvorbis-dev portaudio-dev wxWidgets-dev" 20.6 20.7 +current_version() 20.8 +{ 20.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 20.10 + sed '/archive.*tar/!d;s|.*/Audacity-\(.*\).tar.*|\1|;q' 20.11 +} 20.12 + 20.13 # Rules to configure and make the package. 20.14 compile_rules() 20.15 {
21.1 --- a/awesome/receipt Sun May 30 10:18:33 2021 +0100 21.2 +++ b/awesome/receipt Tue Jun 08 08:46:05 2021 +0000 21.3 @@ -22,6 +22,12 @@ 21.4 xcb-util-image-dev xcb-util-keysyms-dev xcb-util-renderutil-dev 21.5 xcb-util-wm-dev xcb-util-xrm-dev xorg-libX11-dev" 21.6 21.7 +current_version() 21.8 +{ 21.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 21.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 21.11 +} 21.12 + 21.13 # Rules to configure and make the package. 21.14 compile_rules() 21.15 {
22.1 --- a/axel/receipt Sun May 30 10:18:33 2021 +0100 22.2 +++ b/axel/receipt Tue Jun 08 08:46:05 2021 +0000 22.3 @@ -17,6 +17,12 @@ 22.4 22.5 CONFIG_FILES="/etc/axelrc" 22.6 22.7 +current_version() 22.8 +{ 22.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 22.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 22.11 +} 22.12 + 22.13 # Rules to configure and make the package. 22.14 compile_rules() 22.15 {
23.1 --- a/azpainter/receipt Sun May 30 10:18:33 2021 +0100 23.2 +++ b/azpainter/receipt Tue Jun 08 08:46:05 2021 +0000 23.3 @@ -16,6 +16,12 @@ 23.4 BUILD_DEPENDS="fontconfig-dev freetype-dev libjpeg-turbo-dev 23.5 libpng-dev xorg-dev zlib-dev" 23.6 23.7 +current_version() 23.8 +{ 23.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 23.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 23.11 +} 23.12 + 23.13 # Rules to configure and make the package. 23.14 compile_rules() 23.15 {
24.1 --- a/backintime/receipt Sun May 30 10:18:33 2021 +0100 24.2 +++ b/backintime/receipt Tue Jun 08 08:46:05 2021 +0000 24.3 @@ -15,6 +15,12 @@ 24.4 DEPENDS="py3k rsync" 24.5 BUILD_DEPENDS="$DEPENDS meld" # python-glade2 python-gnome2 24.6 24.7 +current_version() 24.8 +{ 24.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 24.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 24.11 +} 24.12 + 24.13 # Rules to configure and make the package. 24.14 compile_rules() 24.15 {
25.1 --- a/backup-manager/receipt Sun May 30 10:18:33 2021 +0100 25.2 +++ b/backup-manager/receipt Tue Jun 08 08:46:05 2021 +0000 25.3 @@ -18,6 +18,12 @@ 25.4 25.5 CONFIG_FILES="/etc/backup-manager.conf" 25.6 25.7 +current_version() 25.8 +{ 25.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 25.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 25.11 +} 25.12 + 25.13 # Rules to configure and make the package. 25.14 compile_rules() 25.15 {
26.1 --- a/barnyard2/receipt Sun May 30 10:18:33 2021 +0100 26.2 +++ b/barnyard2/receipt Tue Jun 08 08:46:05 2021 +0000 26.3 @@ -14,6 +14,12 @@ 26.4 DEPENDS="libpcap" 26.5 BUILD_DEPENDS="libpcap-dev libtool" 26.6 26.7 +current_version() 26.8 +{ 26.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 26.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;s|-|.|g;q' 26.11 +} 26.12 + 26.13 # Rules to configure and make the package. 26.14 compile_rules() 26.15 {
27.1 --- a/bastet/receipt Sun May 30 10:18:33 2021 +0100 27.2 +++ b/bastet/receipt Tue Jun 08 08:46:05 2021 +0000 27.3 @@ -18,6 +18,12 @@ 27.4 27.5 GENERIC_MENUS="no" 27.6 27.7 +current_version() 27.8 +{ 27.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 27.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 27.11 +} 27.12 + 27.13 # Rules to configure and make the package. 27.14 compile_rules() 27.15 {
28.1 --- a/bchunk/receipt Sun May 30 10:18:33 2021 +0100 28.2 +++ b/bchunk/receipt Tue Jun 08 08:46:05 2021 +0000 28.3 @@ -12,6 +12,12 @@ 28.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 28.5 WGET_URL="$WEB_SITE/$TARBALL" 28.6 28.7 +current_version() 28.8 +{ 28.9 + wget -O - ${WGET_URL%/bchunk*}/releases 2>/dev/null | \ 28.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 28.11 +} 28.12 + 28.13 # Rules to configure and make the package. 28.14 compile_rules() 28.15 {
29.1 --- a/bicon/receipt Sun May 30 10:18:33 2021 +0100 29.2 +++ b/bicon/receipt Tue Jun 08 08:46:05 2021 +0000 29.3 @@ -13,6 +13,12 @@ 29.4 DEPENDS="kbd fribidi xorg-setxkbmap xorg-xkbcomp" 29.5 BUILD_DEPENDS="autoconf automake libtool fribidi-dev kbd file" 29.6 29.7 +current_version() 29.8 +{ 29.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 29.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 29.11 +} 29.12 + 29.13 # Rules to configure and make the package. 29.14 compile_rules() 29.15 {
30.1 --- a/blackbox/receipt Sun May 30 10:18:33 2021 +0100 30.2 +++ b/blackbox/receipt Tue Jun 08 08:46:05 2021 +0000 30.3 @@ -19,6 +19,12 @@ 30.4 # TODO: modify tazx for blackbox so it will creat a correct ~/.xinitrc 30.5 # to let user use the wm via slim/F1 or by default with 'tazx blackbox'. 30.6 30.7 +current_version() 30.8 +{ 30.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 30.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 30.11 +} 30.12 + 30.13 # Rules to configure and make the package. 30.14 compile_rules() 30.15 {
31.1 --- a/blogotext/receipt Sun May 30 10:18:33 2021 +0100 31.2 +++ b/blogotext/receipt Tue Jun 08 08:46:05 2021 +0000 31.3 @@ -13,6 +13,12 @@ 31.4 DEPENDS="php-gd" 31.5 BUILD_DEPENDS="" 31.6 31.7 +current_version() 31.8 +{ 31.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 31.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 31.11 +} 31.12 + 31.13 # Rules to gen a SliTaz package suitable for Tazpkg. 31.14 genpkg_rules() 31.15 {
32.1 --- a/blueman/receipt Sun May 30 10:18:33 2021 +0100 32.2 +++ b/blueman/receipt Tue Jun 08 08:46:05 2021 +0000 32.3 @@ -21,6 +21,12 @@ 32.4 startup-notification-dev util-linux-uuid-dev 32.5 xcb-util-dev" 32.6 32.7 +current_version() 32.8 +{ 32.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 32.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 32.11 +} 32.12 + 32.13 # Rules to configure and make the package. 32.14 compile_rules() 32.15 {
33.1 --- a/bluez-alsa/receipt Sun May 30 10:18:33 2021 +0100 33.2 +++ b/bluez-alsa/receipt Tue Jun 08 08:46:05 2021 +0000 33.3 @@ -18,6 +18,12 @@ 33.4 33.5 CONFIG_FILES="/usr/share/alsa/conf.d/20-bluealsa.conf" 33.6 33.7 +current_version() 33.8 +{ 33.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 33.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 33.11 +} 33.12 + 33.13 # Rules to configure and make the package. 33.14 compile_rules() 33.15 {
34.1 --- a/bmon/receipt Sun May 30 10:18:33 2021 +0100 34.2 +++ b/bmon/receipt Tue Jun 08 08:46:05 2021 +0000 34.3 @@ -14,6 +14,12 @@ 34.4 DEPENDS="libnl ncursesw" 34.5 BUILD_DEPENDS="wget autoconf automake libconfuse glib libnl-dev ncursesw-dev" 34.6 34.7 +current_version() 34.8 +{ 34.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 34.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 34.11 +} 34.12 + 34.13 # Rules to configure and make the package. 34.14 compile_rules() 34.15 {
35.1 --- a/bmpanel2/receipt Sun May 30 10:18:33 2021 +0100 35.2 +++ b/bmpanel2/receipt Tue Jun 08 08:46:05 2021 +0000 35.3 @@ -14,8 +14,13 @@ 35.4 DEPENDS="pango cairo xorg-libX11 xorg-libXrender" 35.5 BUILD_DEPENDS="cmake python-dev xorg-libXext-dev cairo-dev pango-dev" 35.6 35.7 +current_version() 35.8 +{ 35.9 + wget -O - ${WGET_URL%/file*}/releases 2>/dev/null | \ 35.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 35.11 +} 35.12 + 35.13 # Rules to configure and make the package. 35.14 - 35.15 compile_rules() { 35.16 cd $src 35.17 # fix "with" statement for python 2.5
36.1 --- a/boinc/receipt Sun May 30 10:18:33 2021 +0100 36.2 +++ b/boinc/receipt Tue Jun 08 08:46:05 2021 +0000 36.3 @@ -16,6 +16,12 @@ 36.4 BUILD_DEPENDS="autoconf automake curl-dev file libidn-dev 36.5 libnotify-dev libtool openssl-dev sqlite-dev wxWidgets-dev" 36.6 36.7 +current_version() 36.8 +{ 36.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 36.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 36.11 +} 36.12 + 36.13 # Rules to configure and make the package. 36.14 compile_rules() 36.15 {
37.1 --- a/boxbackup-server/receipt Sun May 30 10:18:33 2021 +0100 37.2 +++ b/boxbackup-server/receipt Tue Jun 08 08:46:05 2021 +0000 37.3 @@ -23,6 +23,12 @@ 37.4 CA_DIR="${CONF_DIR}/ca" 37.5 BBUSER="bbstored" 37.6 37.7 +current_version() 37.8 +{ 37.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 37.10 + sed '/archive.*tar/!d;s|.*/BoxBackup-\(.*\).master.*|\1|;q' 37.11 +} 37.12 + 37.13 # Rules to configure and make the package. 37.14 compile_rules() 37.15 {
38.1 --- a/brotli/receipt Sun May 30 10:18:33 2021 +0100 38.2 +++ b/brotli/receipt Tue Jun 08 08:46:05 2021 +0000 38.3 @@ -14,6 +14,12 @@ 38.4 DEPENDS="gcc-lib-base" 38.5 BUILD_DEPENDS="python-dev python-setuptools cmake" 38.6 38.7 +current_version() 38.8 +{ 38.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 38.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 38.11 +} 38.12 + 38.13 # Rules to configure and make the package. 38.14 compile_rules() 38.15 {
39.1 --- a/bsc/receipt Sun May 30 10:18:33 2021 +0100 39.2 +++ b/bsc/receipt Tue Jun 08 08:46:05 2021 +0000 39.3 @@ -13,6 +13,12 @@ 39.4 39.5 DEPENDS="gcc-lib-base libgomp" 39.6 39.7 +current_version() 39.8 +{ 39.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 39.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 39.11 +} 39.12 + 39.13 # Rules to configure and make the package. 39.14 compile_rules() 39.15 {
40.1 --- a/buildbot/receipt Sun May 30 10:18:33 2021 +0100 40.2 +++ b/buildbot/receipt Tue Jun 08 08:46:05 2021 +0000 40.3 @@ -15,6 +15,12 @@ 40.4 DEPENDS="py3k twisted" 40.5 BUILD_DEPENDS="py3k py3k-dev python-setuptools" 40.6 40.7 +current_version() 40.8 +{ 40.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 40.10 + sed '/archive.*tar/!d;s|.*/buildbot-v\(.*\).gitarchive.*|\1|;q' 40.11 +} 40.12 + 40.13 # Rules to configure and make the package. 40.14 compile_rules() 40.15 {
41.1 --- a/bullet/receipt Sun May 30 10:18:33 2021 +0100 41.2 +++ b/bullet/receipt Tue Jun 08 08:46:05 2021 +0000 41.3 @@ -14,6 +14,12 @@ 41.4 DEPENDS="freeglut gcc83-lib-base mesa" 41.5 BUILD_DEPENDS="cmake freeglut-dev gcc83 mesa-dev" 41.6 41.7 +current_version() 41.8 +{ 41.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 41.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 41.11 +} 41.12 + 41.13 # Rules to configure and make the package. 41.14 compile_rules() 41.15 {
42.1 --- a/bwm-ng/receipt Sun May 30 10:18:33 2021 +0100 42.2 +++ b/bwm-ng/receipt Tue Jun 08 08:46:05 2021 +0000 42.3 @@ -14,6 +14,12 @@ 42.4 DEPENDS="libtinfo" 42.5 BUILD_DEPENDS="autoconf automake ncurses-dev" 42.6 42.7 +current_version() 42.8 +{ 42.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 42.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 42.11 +} 42.12 + 42.13 # Rules to configure and make the package. 42.14 compile_rules() 42.15 {
43.1 --- a/cairo-dock-plugins/receipt Sun May 30 10:18:33 2021 +0100 43.2 +++ b/cairo-dock-plugins/receipt Tue Jun 08 08:46:05 2021 +0000 43.3 @@ -16,6 +16,12 @@ 43.4 dbus-dev dbus-glib-dev gtk+3-dev gtkglext-dev librsvg-dev 43.5 libxml2-dev mesa-dev wayland-dev" 43.6 43.7 +current_version() 43.8 +{ 43.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 43.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 43.11 +} 43.12 + 43.13 # Rules to configure and make the package. 43.14 compile_rules() 43.15 {
44.1 --- a/caja/receipt Sun May 30 10:18:33 2021 +0100 44.2 +++ b/caja/receipt Tue Jun 08 08:46:05 2021 +0000 44.3 @@ -18,6 +18,12 @@ 44.4 44.5 TAGS="MATE file-manager" 44.6 44.7 +current_version() 44.8 +{ 44.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 44.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 44.11 +} 44.12 + 44.13 # Rules to configure and make the package. 44.14 compile_rules() 44.15 {
45.1 --- a/cbatticon/receipt Sun May 30 10:18:33 2021 +0100 45.2 +++ b/cbatticon/receipt Tue Jun 08 08:46:05 2021 +0000 45.3 @@ -14,6 +14,12 @@ 45.4 DEPENDS="glib gtk+ libnotify" 45.5 BUILD_DEPENDS="glib-dev gtk+-dev libnotify-dev" 45.6 45.7 +current_version() 45.8 +{ 45.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 45.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 45.11 +} 45.12 + 45.13 # Rules to configure and make the package. 45.14 compile_rules() 45.15 {
46.1 --- a/cc65/receipt Sun May 30 10:18:33 2021 +0100 46.2 +++ b/cc65/receipt Tue Jun 08 08:46:05 2021 +0000 46.3 @@ -14,6 +14,12 @@ 46.4 DEPENDS="" 46.5 BUILD_DEPENDS="" 46.6 46.7 +current_version() 46.8 +{ 46.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 46.10 + sed '/archive.*tar/!d;s|.*/V\(.*\).tar.*|\1|;q' 46.11 +} 46.12 + 46.13 # Rules to configure and make the package. 46.14 compile_rules() 46.15 {
47.1 --- a/ccache/receipt Sun May 30 10:18:33 2021 +0100 47.2 +++ b/ccache/receipt Tue Jun 08 08:46:05 2021 +0000 47.3 @@ -16,6 +16,12 @@ 47.4 DEPENDS="zlib" 47.5 BUILD_DEPENDS="zlib-dev" 47.6 47.7 +current_version() 47.8 +{ 47.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 47.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 47.11 +} 47.12 + 47.13 # Rules to configure and make the package. 47.14 compile_rules() 47.15 {
48.1 --- a/cellwriter/receipt Sun May 30 10:18:33 2021 +0100 48.2 +++ b/cellwriter/receipt Tue Jun 08 08:46:05 2021 +0000 48.3 @@ -15,6 +15,12 @@ 48.4 BUILD_DEPENDS="gtk+-dev xorg-libXtst-dev" 48.5 HOST_ARCH="i486 arm" 48.6 48.7 +current_version() 48.8 +{ 48.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 48.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 48.11 +} 48.12 + 48.13 # Rules to configure and make the package. 48.14 compile_rules() 48.15 {
49.1 --- a/cgal/receipt Sun May 30 10:18:33 2021 +0100 49.2 +++ b/cgal/receipt Tue Jun 08 08:46:05 2021 +0000 49.3 @@ -14,6 +14,12 @@ 49.4 DEPENDS="libboost-thread libboost-system gcc-lib-base" 49.5 BUILD_DEPENDS="wget cmake libboost-dev gmp-dev mpfr-dev libboost-thread-dev" 49.6 49.7 +current_version() 49.8 +{ 49.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 49.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 49.11 +} 49.12 + 49.13 # Rules to configure and make the package. 49.14 compile_rules() 49.15 {
50.1 --- a/check/receipt Sun May 30 10:18:33 2021 +0100 50.2 +++ b/check/receipt Tue Jun 08 08:46:05 2021 +0000 50.3 @@ -16,6 +16,12 @@ 50.4 50.5 HOST_ARCH="i486 arm" 50.6 50.7 +current_version() 50.8 +{ 50.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 50.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 50.11 +} 50.12 + 50.13 # Rules to configure and make the package. 50.14 compile_rules() 50.15 {
51.1 --- a/cherokee/receipt Sun May 30 10:18:33 2021 +0100 51.2 +++ b/cherokee/receipt Tue Jun 08 08:46:05 2021 +0000 51.3 @@ -17,6 +17,12 @@ 51.4 libmysqlclient libtool openssl-dev openldap-dev pam-dev pcre-dev 51.5 python-dev" 51.6 51.7 +current_version() 51.8 +{ 51.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 51.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 51.11 +} 51.12 + 51.13 # Rules to configure and make the package. 51.14 compile_rules() 51.15 {
52.1 --- a/cherrytree/receipt Sun May 30 10:18:33 2021 +0100 52.2 +++ b/cherrytree/receipt Tue Jun 08 08:46:05 2021 +0000 52.3 @@ -14,6 +14,12 @@ 52.4 DEPENDS="p7zip-full pygtk pygtksourceview python" 52.5 BUILD_DEPENDS="desktop-file-utils pygtksourceview-dev python" 52.6 52.7 +current_version() 52.8 +{ 52.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 52.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 52.11 +} 52.12 + 52.13 # Rules to configure and make the package. 52.14 compile_rules() 52.15 {
53.1 --- a/chromaprint/receipt Sun May 30 10:18:33 2021 +0100 53.2 +++ b/chromaprint/receipt Tue Jun 08 08:46:05 2021 +0000 53.3 @@ -14,6 +14,12 @@ 53.4 DEPENDS="libav gcc83-lib-base" 53.5 BUILD_DEPENDS="cmake ffmpeg-dev libgnutls gcc83" 53.6 53.7 +current_version() 53.8 +{ 53.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 53.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 53.11 +} 53.12 + 53.13 # Rules to configure and make the package. 53.14 compile_rules() 53.15 {
54.1 --- a/clementine/receipt Sun May 30 10:18:33 2021 +0100 54.2 +++ b/clementine/receipt Tue Jun 08 08:46:05 2021 +0000 54.3 @@ -22,6 +22,12 @@ 54.4 libplist-dev libusb-dev mesa-dev protobuf-dev pulseaudio-dev qca-dev \ 54.5 qjson-dev qmake qt4 Qt4-dev sqlite-dev taglib-dev udisks-dev" 54.6 54.7 +current_version() 54.8 +{ 54.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 54.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 54.11 +} 54.12 + 54.13 compile_rules() 54.14 { 54.15 patch -Np1 -i $stuff/udisks-namespace.patch
55.1 --- a/clipit/receipt Sun May 30 10:18:33 2021 +0100 55.2 +++ b/clipit/receipt Tue Jun 08 08:46:05 2021 +0000 55.3 @@ -14,6 +14,12 @@ 55.4 DEPENDS="gtk+" 55.5 BUILD_DEPENDS="autoconf automake gtk+-dev" 55.6 55.7 +current_version() 55.8 +{ 55.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 55.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 55.11 +} 55.12 + 55.13 # Rules to configure and make the package. 55.14 compile_rules() 55.15 {
56.1 --- a/cmus/receipt Sun May 30 10:18:33 2021 +0100 56.2 +++ b/cmus/receipt Tue Jun 08 08:46:05 2021 +0000 56.3 @@ -15,6 +15,12 @@ 56.4 BUILD_DEPENDS="alsa-lib-dev flac-dev gcc83 libmad-dev libvorbis-dev 56.5 ncurses-dev" 56.6 56.7 +current_version() 56.8 +{ 56.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 56.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 56.11 +} 56.12 + 56.13 # Rules to configure and make the package. 56.14 compile_rules() 56.15 {
57.1 --- a/codiad/receipt Sun May 30 10:18:33 2021 +0100 57.2 +++ b/codiad/receipt Tue Jun 08 08:46:05 2021 +0000 57.3 @@ -17,6 +17,12 @@ 57.4 57.5 CONFIG_FILES="/etc/codiad.php" 57.6 57.7 +current_version() 57.8 +{ 57.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 57.10 + sed '/archive.*tar/!d;s|.*/v.\(.*\).tar.*|\1|;q' 57.11 +} 57.12 + 57.13 # Rules to gen a SliTaz package suitable for Tazpkg. 57.14 genpkg_rules() 57.15 {
58.1 --- a/compiz-bcop/receipt Sun May 30 10:18:33 2021 +0100 58.2 +++ b/compiz-bcop/receipt Tue Jun 08 08:46:05 2021 +0000 58.3 @@ -15,6 +15,12 @@ 58.4 BUILD_DEPENDS="compiz-core-dev libtool libxslt-dev 58.5 startup-notification-dev xorg-dev" 58.6 58.7 +current_version() 58.8 +{ 58.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 58.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 58.11 +} 58.12 + 58.13 # Rules to configure and make the package. 58.14 compile_rules() 58.15 {
59.1 --- a/compiz-ccsm/receipt Sun May 30 10:18:33 2021 +0100 59.2 +++ b/compiz-ccsm/receipt Tue Jun 08 08:46:05 2021 +0000 59.3 @@ -15,6 +15,12 @@ 59.4 gtk-girepository pygobject3 python" 59.5 BUILD_DEPENDS="compiz-core-dev compiz-libcompizconfig-dev libtool python-dev" 59.6 59.7 +current_version() 59.8 +{ 59.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 59.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 59.11 +} 59.12 + 59.13 # Rules to configure and make the package. 59.14 compile_rules() 59.15 {
60.1 --- a/compiz-compizconfig-python/receipt Sun May 30 10:18:33 2021 +0100 60.2 +++ b/compiz-compizconfig-python/receipt Tue Jun 08 08:46:05 2021 +0000 60.3 @@ -18,6 +18,12 @@ 60.4 python-dev startup-notification-dev util-linux-uuid-dev 60.5 xcb-util-dev" 60.6 60.7 +current_version() 60.8 +{ 60.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 60.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 60.11 +} 60.12 + 60.13 # Rules to configure and make the package. 60.14 compile_rules() 60.15 {
61.1 --- a/compiz-core/receipt Sun May 30 10:18:33 2021 +0100 61.2 +++ b/compiz-core/receipt Tue Jun 08 08:46:05 2021 +0000 61.3 @@ -18,6 +18,12 @@ 61.4 mesa-dev pango-dev startup-notification-dev 61.5 util-linux-uuid-dev xcb-util-dev xorg-dev" 61.6 61.7 +current_version() 61.8 +{ 61.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 61.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 61.11 +} 61.12 + 61.13 # Rules to configure and make the package. 61.14 compile_rules() 61.15 {
62.1 --- a/compiz-libcompizconfig/receipt Sun May 30 10:18:33 2021 +0100 62.2 +++ b/compiz-libcompizconfig/receipt Tue Jun 08 08:46:05 2021 +0000 62.3 @@ -17,6 +17,12 @@ 62.4 libtool libxml2-dev libxslt-dev mesa-dev 62.5 protobuf-dev startup-notification-dev xorg-dev" 62.6 62.7 +current_version() 62.8 +{ 62.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 62.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 62.11 +} 62.12 + 62.13 # Rules to configure and make the package. 62.14 compile_rules() 62.15 {
63.1 --- a/compiz-plugins-extra/receipt Sun May 30 10:18:33 2021 +0100 63.2 +++ b/compiz-plugins-extra/receipt Tue Jun 08 08:46:05 2021 +0000 63.3 @@ -21,6 +21,12 @@ 63.4 librsvg-dev libtool libxslt-dev mesa-dev startup-notification-dev 63.5 util-linux-getopt util-linux-uuid-dev xcb-util-dev xorg-dev" 63.6 63.7 +current_version() 63.8 +{ 63.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 63.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 63.11 +} 63.12 + 63.13 # Rules to configure and make the package. 63.14 compile_rules() 63.15 {
64.1 --- a/compiz-plugins-main/receipt Sun May 30 10:18:33 2021 +0100 64.2 +++ b/compiz-plugins-main/receipt Tue Jun 08 08:46:05 2021 +0000 64.3 @@ -17,6 +17,12 @@ 64.4 librsvg-dev libtool libxslt-dev mesa-dev startup-notification-dev 64.5 util-linux-getopt util-linux-uuid-dev xcb-util-dev xorg-dev " 64.6 64.7 +current_version() 64.8 +{ 64.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 64.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 64.11 +} 64.12 + 64.13 # Rules to configure and make the package. 64.14 compile_rules() 64.15 {
65.1 --- a/compiz-plugins-unsupported/receipt Sun May 30 10:18:33 2021 +0100 65.2 +++ b/compiz-plugins-unsupported/receipt Tue Jun 08 08:46:05 2021 +0000 65.3 @@ -20,6 +20,12 @@ 65.4 mesa-dev startup-notification-dev util-linux-getopt util-linux-uuid-dev 65.5 xcb-util-dev xorg-dev" 65.6 65.7 +current_version() 65.8 +{ 65.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 65.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 65.11 +} 65.12 + 65.13 # Rules to configure and make the package. 65.14 compile_rules() 65.15 {
66.1 --- a/compton-conf/receipt Sun May 30 10:18:33 2021 +0100 66.2 +++ b/compton-conf/receipt Tue Jun 08 08:46:05 2021 +0000 66.3 @@ -14,6 +14,12 @@ 66.4 DEPENDS="compton libQtCore libQtDBus libQtGui libconfig" 66.5 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake libconfig-dev " 66.6 66.7 +current_version() 66.8 +{ 66.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 66.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 66.11 +} 66.12 + 66.13 # Rules to configure and make the package. 66.14 compile_rules() 66.15 {
67.1 --- a/compton/receipt Sun May 30 10:18:33 2021 +0100 67.2 +++ b/compton/receipt Tue Jun 08 08:46:05 2021 +0000 67.3 @@ -14,6 +14,12 @@ 67.4 DEPENDS="xorg-libXcomposite xorg-libXrandr libdrm xorg-xwininfo xorg-xprop" 67.5 BUILD_DEPENDS="xorg-libXcomposite xorg-libXrandr-dev libdrm-dev wget" 67.6 67.7 +current_version() 67.8 +{ 67.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 67.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 67.11 +} 67.12 + 67.13 # Rules to configure and make the package. 67.14 compile_rules() 67.15 {
68.1 --- a/consolekit2/receipt Sun May 30 10:18:33 2021 +0100 68.2 +++ b/consolekit2/receipt Tue Jun 08 08:46:05 2021 +0000 68.3 @@ -21,6 +21,12 @@ 68.4 glib-dev libtool libxml2-tools libxslt polkit-dev \ 68.5 util-linux-getopt util-linux-uuid-dev xmlto xorg-libX11-dev" 68.6 68.7 +current_version() 68.8 +{ 68.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 68.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 68.11 +} 68.12 + 68.13 compile_rules() 68.14 { 68.15 ./configure \
69.1 --- a/cookutils/stuff/check-wok Sun May 30 10:18:33 2021 +0100 69.2 +++ b/cookutils/stuff/check-wok Tue Jun 08 08:46:05 2021 +0000 69.3 @@ -2,6 +2,7 @@ 69.4 69.5 renice -n 1 -p $$ 69.6 WOK=${1:-/home/slitaz/wok} 69.7 +wget --help 2>&1 | grep -q tries && alias wget='wget -t 2' 69.8 . /etc/slitaz/cook.conf 69.9 69.10 for i in $WOK/*/receipt ; do
70.1 --- a/copyq/receipt Sun May 30 10:18:33 2021 +0100 70.2 +++ b/copyq/receipt Tue Jun 08 08:46:05 2021 +0000 70.3 @@ -13,6 +13,12 @@ 70.4 DEPENDS="libQtGui libQtNetwork libQtScript libQtSvg librsvg libQtXml libQtWebkit" 70.5 BUILD_DEPENDS="wget Qt4-dev cmake qmake" 70.6 70.7 +current_version() 70.8 +{ 70.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 70.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 70.11 +} 70.12 + 70.13 # Rules to configure and make the package. 70.14 compile_rules() 70.15 {
71.1 --- a/corkscrew/receipt Sun May 30 10:18:33 2021 +0100 71.2 +++ b/corkscrew/receipt Tue Jun 08 08:46:05 2021 +0000 71.3 @@ -14,6 +14,12 @@ 71.4 DEPENDS="openssh" 71.5 BUILD_DEPENDS="automake" 71.6 71.7 +current_version() 71.8 +{ 71.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 71.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 71.11 +} 71.12 + 71.13 # Rules to configure and make the package. 71.14 compile_rules() 71.15 {
72.1 --- a/cplay/receipt Sun May 30 10:18:33 2021 +0100 72.2 +++ b/cplay/receipt Tue Jun 08 08:46:05 2021 +0000 72.3 @@ -15,6 +15,12 @@ 72.4 DEPENDS="python ncurses linux-sound" 72.5 BUILD_DEPENDS="python-dev ncurses-dev git gettext" 72.6 72.7 +current_version() 72.8 +{ 72.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 72.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 72.11 +} 72.12 + 72.13 # Rules to configure and make the package. 72.14 compile_rules() 72.15 {
73.1 --- a/crosstool-ng/receipt Sun May 30 10:18:33 2021 +0100 73.2 +++ b/crosstool-ng/receipt Tue Jun 08 08:46:05 2021 +0000 73.3 @@ -14,6 +14,12 @@ 73.4 BUILD_DEPENDS="subversion flex cvs gawk texinfo ncurses-dev automake libtool \ 73.5 gperf wget xz help2man file" 73.6 73.7 +current_version() 73.8 +{ 73.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 73.10 + sed '/archive.*tar/!d;s|.*/crosstool-ng-\(.*\).tar.*|\1|;q' 73.11 +} 73.12 + 73.13 # Rules to configure and make the package. 73.14 compile_rules() 73.15 {
74.1 --- a/cups-pam/receipt Sun May 30 10:18:33 2021 +0100 74.2 +++ b/cups-pam/receipt Tue Jun 08 08:46:05 2021 +0000 74.3 @@ -19,6 +19,12 @@ 74.4 libgcrypt-dev libgnutls libpng-dev libunistring-dev openssl-dev 74.5 pam pam-dev tiff-dev" 74.6 74.7 +current_version() 74.8 +{ 74.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 74.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 74.11 +} 74.12 + 74.13 # Rules to configure and make the package. 74.14 compile_rules() 74.15 {
75.1 --- a/cups/receipt Sun May 30 10:18:33 2021 +0100 75.2 +++ b/cups/receipt Tue Jun 08 08:46:05 2021 +0000 75.3 @@ -18,6 +18,12 @@ 75.4 libgnutls libpng-dev libtasn1-dev libunistring-dev libusb-compat-dev 75.5 openssl-dev php-dev poppler-apps tiff-dev zlib-dev" 75.6 75.7 +current_version() 75.8 +{ 75.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 75.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 75.11 +} 75.12 + 75.13 # Rules to configure and make the package. 75.14 compile_rules() 75.15 {
76.1 --- a/cv/receipt Sun May 30 10:18:33 2021 +0100 76.2 +++ b/cv/receipt Tue Jun 08 08:46:05 2021 +0000 76.3 @@ -14,6 +14,12 @@ 76.4 DEPENDS="ncurses" 76.5 BUILD_DEPENDS="ncurses-dev" 76.6 76.7 +current_version() 76.8 +{ 76.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 76.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 76.11 +} 76.12 + 76.13 # Rules to configure and make the package. 76.14 compile_rules() 76.15 {
77.1 --- a/dashel/receipt Sun May 30 10:18:33 2021 +0100 77.2 +++ b/dashel/receipt Tue Jun 08 08:46:05 2021 +0000 77.3 @@ -14,6 +14,12 @@ 77.4 DEPENDS="hal" 77.5 BUILD_DEPENDS="cmake hal-dev" 77.6 77.7 +current_version() 77.8 +{ 77.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 77.10 + sed '/archive.*tar/!d;/tags\/[0-9]/!d;s|.*/\(.*\).tar.*|\1|;q' 77.11 +} 77.12 + 77.13 # Rules to configure and make the package. 77.14 compile_rules() 77.15 {
78.1 --- a/ddclient/receipt Sun May 30 10:18:33 2021 +0100 78.2 +++ b/ddclient/receipt Tue Jun 08 08:46:05 2021 +0000 78.3 @@ -16,6 +16,12 @@ 78.4 78.5 CONFIG_FILES="/etc/ddclient" 78.6 78.7 +current_version() 78.8 +{ 78.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 78.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 78.11 +} 78.12 + 78.13 # Rules to gen a SliTaz package suitable for Tazpkg. 78.14 genpkg_rules() 78.15 {
79.1 --- a/deutex-devel/receipt Sun May 30 10:18:33 2021 +0100 79.2 +++ b/deutex-devel/receipt Tue Jun 08 08:46:05 2021 +0000 79.3 @@ -14,6 +14,12 @@ 79.4 79.5 BUILD_DEPENDS="autoconf automake" 79.6 79.7 +current_version() 79.8 +{ 79.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 79.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 79.11 +} 79.12 + 79.13 # Rules to configure and make the package. 79.14 compile_rules() 79.15 {
80.1 --- a/dev86/receipt Sun May 30 10:18:33 2021 +0100 80.2 +++ b/dev86/receipt Tue Jun 08 08:46:05 2021 +0000 80.3 @@ -13,6 +13,12 @@ 80.4 80.5 BUILD_DEPENDS="wget" 80.6 80.7 +current_version() 80.8 +{ 80.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 80.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 80.11 +} 80.12 + 80.13 # Rules to configure and make the package. 80.14 compile_rules() 80.15 {
81.1 --- a/discount/receipt Sun May 30 10:18:33 2021 +0100 81.2 +++ b/discount/receipt Tue Jun 08 08:46:05 2021 +0000 81.3 @@ -16,6 +16,12 @@ 81.4 81.5 HOST_ARCH="i486 arm" 81.6 81.7 +current_version() 81.8 +{ 81.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 81.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 81.11 +} 81.12 + 81.13 # Rules to configure and make the package. 81.14 compile_rules() 81.15 {
82.1 --- a/dislocker/receipt Sun May 30 10:18:33 2021 +0100 82.2 +++ b/dislocker/receipt Tue Jun 08 08:46:05 2021 +0000 82.3 @@ -14,6 +14,12 @@ 82.4 DEPENDS="fuse mbedtls" 82.5 BUILD_DEPENDS="cmake mbedtls-dev fuse-dev patch attr" 82.6 82.7 +current_version() 82.8 +{ 82.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 82.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 82.11 +} 82.12 + 82.13 compile_rules() { 82.14 # Fix v0.7 upstream path error 82.15 sed -i 's/DIS_MAN \${PROJECT_SOURCE_DIR}/DIS_MAN ../' src/CMakeLists.txt
83.1 --- a/distcc/receipt Sun May 30 10:18:33 2021 +0100 83.2 +++ b/distcc/receipt Tue Jun 08 08:46:05 2021 +0000 83.3 @@ -16,6 +16,12 @@ 83.4 libgnome-keyring-dev libgnomecanvas-dev libgnomeui-dev lzo-dev 83.5 popt-dev py3k-dev" 83.6 83.7 +current_version() 83.8 +{ 83.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 83.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 83.11 +} 83.12 + 83.13 # Rules to configure and make the package. 83.14 compile_rules() 83.15 {
84.1 --- a/dkms/receipt Sun May 30 10:18:33 2021 +0100 84.2 +++ b/dkms/receipt Tue Jun 08 08:46:05 2021 +0000 84.3 @@ -13,6 +13,12 @@ 84.4 84.5 BUILD_DEPENDS="gettext" 84.6 84.7 +current_version() 84.8 +{ 84.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 84.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 84.11 +} 84.12 + 84.13 # Rules to configure and make the package. 84.14 compile_rules() 84.15 {
85.1 --- a/docbook-xsl/receipt Sun May 30 10:18:33 2021 +0100 85.2 +++ b/docbook-xsl/receipt Tue Jun 08 08:46:05 2021 +0000 85.3 @@ -13,6 +13,12 @@ 85.4 85.5 DEPENDS="docbook-xml libxml2-tools libxslt" 85.6 85.7 +current_version() 85.8 +{ 85.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 85.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 85.11 +} 85.12 + 85.13 # Rules to gen a SliTaz package suitable for Tazpkg. 85.14 genpkg_rules() 85.15 {
86.1 --- a/dog/receipt Sun May 30 10:18:33 2021 +0100 86.2 +++ b/dog/receipt Tue Jun 08 08:46:05 2021 +0000 86.3 @@ -14,6 +14,12 @@ 86.4 DEPENDS="libssl libcrypto" 86.5 BUILD_DEPENDS="rust-cargo git openssl-dev" 86.6 86.7 +current_version() 86.8 +{ 86.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 86.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 86.11 +} 86.12 + 86.13 # Rules to configure and make the package. 86.14 compile_rules() 86.15 {
87.1 --- a/dooble/receipt Sun May 30 10:18:33 2021 +0100 87.2 +++ b/dooble/receipt Tue Jun 08 08:46:05 2021 +0000 87.3 @@ -16,6 +16,12 @@ 87.4 libQtScript libQtSql libQtWebkit libQtXml sqlite" 87.5 BUILD_DEPENDS="cacerts libgcrypt-dev qmake Qt4-dev sqlite-dev" 87.6 87.7 +current_version() 87.8 +{ 87.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 87.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 87.11 +} 87.12 + 87.13 # Rules to configure and make the package. 87.14 compile_rules() 87.15 {
88.1 --- a/dos33fsprogs/receipt Sun May 30 10:18:33 2021 +0100 88.2 +++ b/dos33fsprogs/receipt Tue Jun 08 08:46:05 2021 +0000 88.3 @@ -12,6 +12,12 @@ 88.4 #WGET_URL="https://github.com/peterferrie/dos33fsprogs/archive/$VERSION.tar.gz" 88.5 WGET_URL="https://github.com/deater/dos33fsprogs/archive/ootw-v2.8.tar.gz" 88.6 88.7 +current_version() 88.8 +{ 88.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 88.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 88.11 +} 88.12 + 88.13 # Rules to configure and make the package. 88.14 compile_rules() 88.15 {
89.1 --- a/dosfstools/receipt Sun May 30 10:18:33 2021 +0100 89.2 +++ b/dosfstools/receipt Tue Jun 08 08:46:05 2021 +0000 89.3 @@ -13,6 +13,12 @@ 89.4 89.5 BUILD_DEPENDS="wget" 89.6 89.7 +current_version() 89.8 +{ 89.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 89.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 89.11 +} 89.12 + 89.13 # Rules to configure and make the package. 89.14 compile_rules() 89.15 {
90.1 --- a/dstat/receipt Sun May 30 10:18:33 2021 +0100 90.2 +++ b/dstat/receipt Tue Jun 08 08:46:05 2021 +0000 90.3 @@ -14,6 +14,12 @@ 90.4 90.5 DEPENDS="python" 90.6 90.7 +current_version() 90.8 +{ 90.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 90.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 90.11 +} 90.12 + 90.13 # Rules to configure and make the package. 90.14 compile_rules() 90.15 {
91.1 --- a/duc/receipt Sun May 30 10:18:33 2021 +0100 91.2 +++ b/duc/receipt Tue Jun 08 08:46:05 2021 +0000 91.3 @@ -13,6 +13,12 @@ 91.4 DEPENDS="ncursesw pango tokyocabinet" 91.5 BUILD_DEPENDS="ncursesw-dev pango-dev tokyocabinet-dev" 91.6 91.7 +current_version() 91.8 +{ 91.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 91.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 91.11 +} 91.12 + 91.13 # Rules to configure and make the package. 91.14 compile_rules() 91.15 {
92.1 --- a/duperemove/receipt Sun May 30 10:18:33 2021 +0100 92.2 +++ b/duperemove/receipt Tue Jun 08 08:46:05 2021 +0000 92.3 @@ -13,6 +13,12 @@ 92.4 DEPENDS="glib libsqlite" 92.5 BUILD_DEPENDS="gcc83 glib-dev sqlite-dev" 92.6 92.7 +current_version() 92.8 +{ 92.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 92.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 92.11 +} 92.12 + 92.13 # Rules to configure and make the package. 92.14 compile_rules() 92.15 {
93.1 --- a/duviz/receipt Sun May 30 10:18:33 2021 +0100 93.2 +++ b/duviz/receipt Tue Jun 08 08:46:05 2021 +0000 93.3 @@ -14,6 +14,12 @@ 93.4 DEPENDS="python" 93.5 BUILD_DEPENDS="" 93.6 93.7 +current_version() 93.8 +{ 93.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 93.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 93.11 +} 93.12 + 93.13 # Rules to gen a SliTaz package suitable for Tazpkg. 93.14 genpkg_rules() 93.15 {
94.1 --- a/e2tools/receipt Sun May 30 10:18:33 2021 +0100 94.2 +++ b/e2tools/receipt Tue Jun 08 08:46:05 2021 +0000 94.3 @@ -14,6 +14,12 @@ 94.4 DEPENDS="e2fsprogs" 94.5 BUILD_DEPENDS="autoconf automake e2fsprogs-dev" 94.6 94.7 +current_version() 94.8 +{ 94.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 94.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 94.11 +} 94.12 + 94.13 # Rules to configure and make the package. 94.14 compile_rules() 94.15 {
95.1 --- a/easy-rsa/receipt Sun May 30 10:18:33 2021 +0100 95.2 +++ b/easy-rsa/receipt Tue Jun 08 08:46:05 2021 +0000 95.3 @@ -12,6 +12,12 @@ 95.4 95.5 DEPENDS="openssl" 95.6 95.7 +current_version() 95.8 +{ 95.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 95.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 95.11 +} 95.12 + 95.13 # Rules to gen a SliTaz package suitable for Tazpkg. 95.14 genpkg_rules() 95.15 {
96.1 --- a/eboard/receipt Sun May 30 10:18:33 2021 +0100 96.2 +++ b/eboard/receipt Tue Jun 08 08:46:05 2021 +0000 96.3 @@ -16,6 +16,12 @@ 96.4 DEPENDS="gtk+ gcc-lib-base" 96.5 BUILD_DEPENDS="gstreamer-1.0-dev gtk+-dev perl zlib-dev" 96.6 96.7 +current_version() 96.8 +{ 96.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 96.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 96.11 +} 96.12 + 96.13 # Rules to configure and make the package. 96.14 compile_rules() 96.15 {
97.1 --- a/ecm/receipt Sun May 30 10:18:33 2021 +0100 97.2 +++ b/ecm/receipt Tue Jun 08 08:46:05 2021 +0000 97.3 @@ -14,6 +14,12 @@ 97.4 97.5 BUILD_DEPENDS="asciidoc docbook-xml libxml2-tools libxslt" 97.6 97.7 +current_version() 97.8 +{ 97.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 97.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 97.11 +} 97.12 + 97.13 # Rules to configure and make the package. 97.14 compile_rules() 97.15 {
98.1 --- a/edid-decode/receipt Sun May 30 10:18:33 2021 +0100 98.2 +++ b/edid-decode/receipt Tue Jun 08 08:46:05 2021 +0000 98.3 @@ -10,6 +10,12 @@ 98.4 WEB_SITE="https://github.com/rpavlik/edid-decode" 98.5 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" 98.6 98.7 +current_version() 98.8 +{ 98.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 98.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 98.11 +} 98.12 + 98.13 # Rules to configure and make the package. 98.14 compile_rules() 98.15 {
99.1 --- a/efibootmgr/receipt Sun May 30 10:18:33 2021 +0100 99.2 +++ b/efibootmgr/receipt Tue Jun 08 08:46:05 2021 +0000 99.3 @@ -14,6 +14,12 @@ 99.4 DEPENDS="efivar gcc83-lib-base popt" 99.5 BUILD_DEPENDS="efivar-dev gcc83 icu-dev popt-dev" 99.6 99.7 +current_version() 99.8 +{ 99.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 99.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 99.11 +} 99.12 + 99.13 # Rules to configure and make the package. 99.14 compile_rules() 99.15 {
100.1 --- a/efivar/receipt Sun May 30 10:18:33 2021 +0100 100.2 +++ b/efivar/receipt Tue Jun 08 08:46:05 2021 +0000 100.3 @@ -14,6 +14,12 @@ 100.4 DEPENDS="gcc83-lib-base" 100.5 BUILD_DEPENDS="gcc83 icu-dev" 100.6 100.7 +current_version() 100.8 +{ 100.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 100.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 100.11 +} 100.12 + 100.13 # Rules to configure and make the package. 100.14 compile_rules() 100.15 {
101.1 --- a/ejabberd/receipt Sun May 30 10:18:33 2021 +0100 101.2 +++ b/ejabberd/receipt Tue Jun 08 08:46:05 2021 +0000 101.3 @@ -17,6 +17,12 @@ 101.4 101.5 CONFIG_FILES="/etc/ejabberd" 101.6 101.7 +current_version() 101.8 +{ 101.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 101.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 101.11 +} 101.12 + 101.13 # Rules to configure and make the package. 101.14 compile_rules() 101.15 {
102.1 --- a/emacs-pkg-lua-mode/receipt Sun May 30 10:18:33 2021 +0100 102.2 +++ b/emacs-pkg-lua-mode/receipt Tue Jun 08 08:46:05 2021 +0000 102.3 @@ -15,6 +15,12 @@ 102.4 DEPENDS="emacs" 102.5 BUILD_DEPENDS="emacs" 102.6 102.7 +current_version() 102.8 +{ 102.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 102.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 102.11 +} 102.12 + 102.13 # Rules to gen a SliTaz package suitable for Tazpkg. 102.14 genpkg_rules() 102.15 {
103.1 --- a/emerald-themes/receipt Sun May 30 10:18:33 2021 +0100 103.2 +++ b/emerald-themes/receipt Tue Jun 08 08:46:05 2021 +0000 103.3 @@ -14,6 +14,12 @@ 103.4 DEPENDS="xorg-libX11 emerald" 103.5 BUILD_DEPENDS="xorg-dev gtk+-dev autoconf automake libtool" 103.6 103.7 +current_version() 103.8 +{ 103.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 103.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 103.11 +} 103.12 + 103.13 # Rules to configure and make the package. 103.14 compile_rules() 103.15 {
104.1 --- a/emerald/receipt Sun May 30 10:18:33 2021 +0100 104.2 +++ b/emerald/receipt Tue Jun 08 08:46:05 2021 +0000 104.3 @@ -15,6 +15,12 @@ 104.4 BUILD_DEPENDS="autoconf automake xorg-dev gtk+-dev compiz-core-dev \ 104.5 libtool libwnck-dev xz" 104.6 104.7 +current_version() 104.8 +{ 104.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 104.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 104.11 +} 104.12 + 104.13 # Rules to configure and make the package. 104.14 compile_rules() 104.15 {
105.1 --- a/encfs/receipt Sun May 30 10:18:33 2021 +0100 105.2 +++ b/encfs/receipt Tue Jun 08 08:46:05 2021 +0000 105.3 @@ -17,6 +17,12 @@ 105.4 BUILD_DEPENDS="cmake fuse-dev gcc83 glibc-dev libboost-filesystem-dev 105.5 libboost-serialization-dev libboost-system-dev openssl-dev rlog-dev" 105.6 105.7 +current_version() 105.8 +{ 105.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 105.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 105.11 +} 105.12 + 105.13 # Rules to configure and make the package. 105.14 compile_rules() 105.15 {
106.1 --- a/enchant2/receipt Sun May 30 10:18:33 2021 +0100 106.2 +++ b/enchant2/receipt Tue Jun 08 08:46:05 2021 +0000 106.3 @@ -19,6 +19,12 @@ 106.4 106.5 HOST_ARCH="i486 arm" 106.6 106.7 +current_version() 106.8 +{ 106.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 106.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 106.11 +} 106.12 + 106.13 # Rules to configure and make the package. 106.14 compile_rules() 106.15 {
107.1 --- a/engrampa/receipt Sun May 30 10:18:33 2021 +0100 107.2 +++ b/engrampa/receipt Tue Jun 08 08:46:05 2021 +0000 107.3 @@ -15,6 +15,12 @@ 107.4 gtk+-dev gtk-doc mate-common-dev mate-desktop-dev yelp-tools" 107.5 SUGGESTED="unrar unace p7zip yelp-tools zip" 107.6 107.7 +current_version() 107.8 +{ 107.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 107.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 107.11 +} 107.12 + 107.13 # Rules to configure and make the package. 107.14 compile_rules() 107.15 {
108.1 --- a/eom/receipt Sun May 30 10:18:33 2021 +0100 108.2 +++ b/eom/receipt Tue Jun 08 08:46:05 2021 +0000 108.3 @@ -16,6 +16,12 @@ 108.4 jpeg-dev gobject-introspection-dev shared-mime-info-dev pygobject-dev \ 108.5 pygtk-dev python-dev" 108.6 108.7 +current_version() 108.8 +{ 108.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 108.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 108.11 +} 108.12 + 108.13 # Rules to configure and make the package. 108.14 compile_rules() 108.15 {
109.1 --- a/epm/receipt Sun May 30 10:18:33 2021 +0100 109.2 +++ b/epm/receipt Tue Jun 08 08:46:05 2021 +0000 109.3 @@ -14,6 +14,12 @@ 109.4 DEPENDS="" 109.5 BUILD_DEPENDS="" 109.6 109.7 +current_version() 109.8 +{ 109.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 109.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 109.11 +} 109.12 + 109.13 # Rules to configure and make the package. 109.14 compile_rules() 109.15 {
110.1 --- a/ettercap/receipt Sun May 30 10:18:33 2021 +0100 110.2 +++ b/ettercap/receipt Tue Jun 08 08:46:05 2021 +0000 110.3 @@ -15,6 +15,12 @@ 110.4 BUILD_DEPENDS="cmake curl-dev file geoip-dev libnet-dev libpcap-dev 110.5 libpthread-stubs libtool ncurses-dev openssl-dev zlib-dev" 110.6 110.7 +current_version() 110.8 +{ 110.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 110.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 110.11 +} 110.12 + 110.13 # Rules to configure and make the package. 110.14 compile_rules() 110.15 {
111.1 --- a/exfat-utils/receipt Sun May 30 10:18:33 2021 +0100 111.2 +++ b/exfat-utils/receipt Tue Jun 08 08:46:05 2021 +0000 111.3 @@ -14,6 +14,12 @@ 111.4 DEPENDS="fuse" 111.5 BUILD_DEPENDS="autoconf automake fuse-dev" 111.6 111.7 +current_version() 111.8 +{ 111.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 111.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 111.11 +} 111.12 + 111.13 # Rules to configure and make the package. 111.14 compile_rules() 111.15 {
112.1 --- a/f3/receipt Sun May 30 10:18:33 2021 +0100 112.2 +++ b/f3/receipt Tue Jun 08 08:46:05 2021 +0000 112.3 @@ -14,6 +14,12 @@ 112.4 DEPENDS="" 112.5 BUILD_DEPENDS="" 112.6 112.7 +current_version() 112.8 +{ 112.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 112.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 112.11 +} 112.12 + 112.13 # Rules to configure and make the package. 112.14 compile_rules() 112.15 {
113.1 --- a/fail2ban/receipt Sun May 30 10:18:33 2021 +0100 113.2 +++ b/fail2ban/receipt Tue Jun 08 08:46:05 2021 +0000 113.3 @@ -16,6 +16,12 @@ 113.4 BUILD_DEPENDS="python" 113.5 CONFIG_FILES="/etc/fail2ban" 113.6 113.7 +current_version() 113.8 +{ 113.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 113.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 113.11 +} 113.12 + 113.13 # Rules to configure and make the package. 113.14 compile_rules() 113.15 {
114.1 --- a/fawkes/receipt Sun May 30 10:18:33 2021 +0100 114.2 +++ b/fawkes/receipt Tue Jun 08 08:46:05 2021 +0000 114.3 @@ -13,6 +13,12 @@ 114.4 DEPENDS="python" 114.5 BUILD_DEPENDS="python-setuptools" 114.6 114.7 +current_version() 114.8 +{ 114.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 114.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 114.11 +} 114.12 + 114.13 # Rules to configure and make the package. 114.14 compile_rules() 114.15 {
115.1 --- a/fbcat/receipt Sun May 30 10:18:33 2021 +0100 115.2 +++ b/fbcat/receipt Tue Jun 08 08:46:05 2021 +0000 115.3 @@ -15,6 +15,12 @@ 115.4 BUILD_DEPENDS="" 115.5 HOST_ARCH="i486 arm" 115.6 115.7 +current_version() 115.8 +{ 115.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 115.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 115.11 +} 115.12 + 115.13 # Rules to configure and make the package. 115.14 compile_rules() 115.15 {
116.1 --- a/fbpanel/receipt Sun May 30 10:18:33 2021 +0100 116.2 +++ b/fbpanel/receipt Tue Jun 08 08:46:05 2021 +0000 116.3 @@ -15,6 +15,12 @@ 116.4 BUILD_DEPENDS="gtk+-dev" 116.5 HOST_ARCH="i486 arm" 116.6 116.7 +current_version() 116.8 +{ 116.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 116.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 116.11 +} 116.12 + 116.13 # Rules to configure and make the package. 116.14 compile_rules() 116.15 {
117.1 --- a/fbterm/receipt Sun May 30 10:18:33 2021 +0100 117.2 +++ b/fbterm/receipt Tue Jun 08 08:46:05 2021 +0000 117.3 @@ -16,6 +16,12 @@ 117.4 BUILD_DEPENDS="freetype-dev fontconfig-dev gpm-dev ncursesw-dev ncursesw-extra" 117.5 HOST_ARCH="i486 arm" 117.6 117.7 +current_version() 117.8 +{ 117.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 117.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 117.11 +} 117.12 + 117.13 # Rules to configure and make the package. 117.14 compile_rules() 117.15 {
118.1 --- a/fcgi/receipt Sun May 30 10:18:33 2021 +0100 118.2 +++ b/fcgi/receipt Tue Jun 08 08:46:05 2021 +0000 118.3 @@ -15,6 +15,12 @@ 118.4 DEPENDS="gcc83-lib-base" 118.5 BUILD_DEPENDS="autoconf automake gcc83 libtool" 118.6 118.7 +current_version() 118.8 +{ 118.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 118.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 118.11 +} 118.12 + 118.13 # Rules to configure and make the package. 118.14 compile_rules() 118.15 {
119.1 --- a/fdupes/receipt Sun May 30 10:18:33 2021 +0100 119.2 +++ b/fdupes/receipt Tue Jun 08 08:46:05 2021 +0000 119.3 @@ -14,6 +14,12 @@ 119.4 DEPENDS="ncurses pcre2" 119.5 BUILD_DEPENDS="ncurses-dev pcre2-dev" 119.6 119.7 +current_version() 119.8 +{ 119.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 119.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 119.11 +} 119.12 + 119.13 # Rules to configure and make the package. 119.14 compile_rules() 119.15 {
120.1 --- a/feedparser/receipt Sun May 30 10:18:33 2021 +0100 120.2 +++ b/feedparser/receipt Tue Jun 08 08:46:05 2021 +0000 120.3 @@ -14,6 +14,12 @@ 120.4 DEPENDS="libxml2 python" 120.5 BUILD_DEPENDS="libxml2-dev python-dev python-setuptools" 120.6 120.7 +current_version() 120.8 +{ 120.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 120.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 120.11 +} 120.12 + 120.13 # Rules to configure and make the package. 120.14 compile_rules() 120.15 {
121.1 --- a/ffmpegthumbnailer/receipt Sun May 30 10:18:33 2021 +0100 121.2 +++ b/ffmpegthumbnailer/receipt Tue Jun 08 08:46:05 2021 +0000 121.3 @@ -14,6 +14,12 @@ 121.4 DEPENDS="ffmpeg gcc83-lib-base libjpeg libpng" 121.5 BUILD_DEPENDS="cmake ffmpeg-dev gcc83 jpeg-dev libgnutls libpng-dev" 121.6 121.7 +current_version() 121.8 +{ 121.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 121.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 121.11 +} 121.12 + 121.13 # Rules to configure and make the package. 121.14 compile_rules() 121.15 {
122.1 --- a/firehol/receipt Sun May 30 10:18:33 2021 +0100 122.2 +++ b/firehol/receipt Tue Jun 08 08:46:05 2021 +0000 122.3 @@ -16,6 +16,12 @@ 122.4 122.5 CONFIG_FILES="/etc/firehol" 122.6 122.7 +current_version() 122.8 +{ 122.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 122.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 122.11 +} 122.12 + 122.13 # Rules to configure and make the package. 122.14 compile_rules() 122.15 {
123.1 --- a/firejail/receipt Sun May 30 10:18:33 2021 +0100 123.2 +++ b/firejail/receipt Tue Jun 08 08:46:05 2021 +0000 123.3 @@ -13,6 +13,12 @@ 123.4 123.5 BUILD_DEPENDS="linux-api-headers" 123.6 123.7 +current_version() 123.8 +{ 123.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 123.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 123.11 +} 123.12 + 123.13 # Rules to configure and make the package. 123.14 compile_rules() 123.15 {
124.1 --- a/fish/receipt Sun May 30 10:18:33 2021 +0100 124.2 +++ b/fish/receipt Tue Jun 08 08:46:05 2021 +0000 124.3 @@ -14,6 +14,12 @@ 124.4 DEPENDS="gcc83-lib-base ncurses" 124.5 BUILD_DEPENDS="gcc83 ncurses-dev ncursesw-extra" 124.6 124.7 +current_version() 124.8 +{ 124.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 124.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 124.11 +} 124.12 + 124.13 compile_rules() 124.14 { 124.15 export LDFLAGS="$LDFLAGS -ltinfo"
125.1 --- a/flam3/receipt Sun May 30 10:18:33 2021 +0100 125.2 +++ b/flam3/receipt Tue Jun 08 08:46:05 2021 +0000 125.3 @@ -14,6 +14,12 @@ 125.4 DEPENDS="expat libjpeg libpng libxml2" 125.5 BUILD_DEPENDS="expat-dev jpeg-dev libpng-dev libxml2-dev git" 125.6 125.7 +current_version() 125.8 +{ 125.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 125.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 125.11 +} 125.12 + 125.13 # Rules to configure and make the package. 125.14 compile_rules() 125.15 {
126.1 --- a/flex/receipt Sun May 30 10:18:33 2021 +0100 126.2 +++ b/flex/receipt Tue Jun 08 08:46:05 2021 +0000 126.3 @@ -15,6 +15,12 @@ 126.4 BUILD_DEPENDS="bison" 126.5 HOST_ARCH="i486 arm" 126.6 126.7 +current_version() 126.8 +{ 126.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 126.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 126.11 +} 126.12 + 126.13 # Rules to configure and make the package. 126.14 compile_rules() 126.15 {
127.1 --- a/fluidsynth/receipt Sun May 30 10:18:33 2021 +0100 127.2 +++ b/fluidsynth/receipt Tue Jun 08 08:46:05 2021 +0000 127.3 @@ -16,8 +16,13 @@ 127.4 BUILD_DEPENDS="cmake glib-dev jack-audio-connection-kit-dev ladspa-dev 127.5 pkg-config" 127.6 127.7 +current_version() 127.8 +{ 127.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 127.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 127.11 +} 127.12 + 127.13 # Rules to configure and make the package. 127.14 - 127.15 compile_rules() 127.16 { 127.17 export LDFLAGS="$LDFLAGS -ltinfo"
128.1 --- a/fluxcomp/receipt Sun May 30 10:18:33 2021 +0100 128.2 +++ b/fluxcomp/receipt Tue Jun 08 08:46:05 2021 +0000 128.3 @@ -11,6 +11,12 @@ 128.4 TARBALL="distrotech-flux-$VERSION.tar.gz" 128.5 WGET_URL="https://github.com/Distrotech/flux/archive/$TARBALL" 128.6 128.7 +current_version() 128.8 +{ 128.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 128.10 + sed '/archive.*tar/!d;s|.*/distrotech-flux-\(.*\).tar.*|\1|;q' 128.11 +} 128.12 + 128.13 compile_rules() 128.14 { 128.15 ./configure $CONFIGURE_ARGS &&
129.1 --- a/font-manager/receipt Sun May 30 10:18:33 2021 +0100 129.2 +++ b/font-manager/receipt Tue Jun 08 08:46:05 2021 +0000 129.3 @@ -16,6 +16,12 @@ 129.4 BUILD_DEPENDS="bash fontconfig-dev freetype-dev glib-dev gnome-doc-utils 129.5 intltool pango-dev python-dev sqlite-dev" 129.6 129.7 +current_version() 129.8 +{ 129.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 129.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 129.11 +} 129.12 + 129.13 # Rules to configure and make the package. 129.14 compile_rules() 129.15 {
130.1 --- a/fontforge/receipt Sun May 30 10:18:33 2021 +0100 130.2 +++ b/fontforge/receipt Tue Jun 08 08:46:05 2021 +0000 130.3 @@ -22,6 +22,12 @@ 130.4 # As 'busybox date' does not support the given options, 130.5 # coreutils-context-system is required. 130.6 130.7 +current_version() 130.8 +{ 130.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 130.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 130.11 +} 130.12 + 130.13 # Rules to configure and make the package. 130.14 compile_rules() 130.15 {
131.1 --- a/freealut/receipt Sun May 30 10:18:33 2021 +0100 131.2 +++ b/freealut/receipt Tue Jun 08 08:46:05 2021 +0000 131.3 @@ -13,6 +13,12 @@ 131.4 DEPENDS="openal glibc-base" 131.5 BUILD_DEPENDS="wget cacerts cmake openal-dev" 131.6 131.7 +current_version() 131.8 +{ 131.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 131.10 + sed '/archive.*tar/!d;/freealut_/!d;s|.*/freealut_\(.*\).tar.*|\1|;s|_|.|g;q' 131.11 +} 131.12 + 131.13 # Rules to configure and make the package. 131.14 compile_rules() 131.15 {
132.1 --- a/freetuxtv/receipt Sun May 30 10:18:33 2021 +0100 132.2 +++ b/freetuxtv/receipt Tue Jun 08 08:46:05 2021 +0000 132.3 @@ -14,6 +14,12 @@ 132.4 BUILD_DEPENDS="gtk+-dev glib-dev dbus-glib-dev libsqlite sqlite-dev \ 132.5 libvlc-dev libvlc curl-dev libnotify-dev intltool file automake libtool" 132.6 132.7 +current_version() 132.8 +{ 132.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 132.10 + sed '/archive.*tar/!d;s|.*/freetuxtv-\(.*\).tar.*|\1|;q' 132.11 +} 132.12 + 132.13 # Rules to configure and make the package. 132.14 compile_rules() 132.15 {
133.1 --- a/fribidi/receipt Sun May 30 10:18:33 2021 +0100 133.2 +++ b/fribidi/receipt Tue Jun 08 08:46:05 2021 +0000 133.3 @@ -15,6 +15,12 @@ 133.4 133.5 HOST_ARCH="i486 arm" 133.6 133.7 +current_version() 133.8 +{ 133.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 133.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 133.11 +} 133.12 + 133.13 # Rules to configure and make the package. 133.14 compile_rules() 133.15 {
134.1 --- a/fritzing/receipt Sun May 30 10:18:33 2021 +0100 134.2 +++ b/fritzing/receipt Tue Jun 08 08:46:05 2021 +0000 134.3 @@ -16,6 +16,12 @@ 134.4 quazip-dev" 134.5 HOST_ARCH="i486" 134.6 134.7 +current_version() 134.8 +{ 134.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 134.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 134.11 +} 134.12 + 134.13 # Rules to configure and make the package. 134.14 compile_rules() 134.15 {
135.1 --- a/frogatto/receipt Sun May 30 10:18:33 2021 +0100 135.2 +++ b/frogatto/receipt Tue Jun 08 08:46:05 2021 +0000 135.3 @@ -20,6 +20,12 @@ 135.4 libsdl-image-dev libsdl-mixer-dev libsdl-ttf-dev mesa-dev \ 135.5 xorg-server-dev" 135.6 135.7 +current_version() 135.8 +{ 135.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 135.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 135.11 +} 135.12 + 135.13 # Rules to configure and make the package. 135.14 compile_rules() 135.15 {
136.1 --- a/fsarchiver/receipt Sun May 30 10:18:33 2021 +0100 136.2 +++ b/fsarchiver/receipt Tue Jun 08 08:46:05 2021 +0000 136.3 @@ -17,6 +17,12 @@ 136.4 util-linux-blkid-dev attr-dev util-linux-uuid-dev zlib-dev pkg-config \ 136.5 lz4-dev zstd-dev" 136.6 136.7 +current_version() 136.8 +{ 136.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 136.10 + sed '/archive.*tar/!d;/fsarchiver-/!d;s|.*/fsarchiver-\(.*\).tar.*|\1|;q' 136.11 +} 136.12 + 136.13 # Rules to configure and make the package. 136.14 compile_rules() 136.15 {
137.1 --- a/fstransform/receipt Sun May 30 10:18:33 2021 +0100 137.2 +++ b/fstransform/receipt Tue Jun 08 08:46:05 2021 +0000 137.3 @@ -13,6 +13,12 @@ 137.4 137.5 SUGGESTED="jfsutils xfsprogs reiserfsprogs reiser4progs e2fsprogs" 137.6 137.7 +current_version() 137.8 +{ 137.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 137.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 137.11 +} 137.12 + 137.13 # Rules to configure and make the package. 137.14 compile_rules() 137.15 {
138.1 --- a/fuse/receipt Sun May 30 10:18:33 2021 +0100 138.2 +++ b/fuse/receipt Tue Jun 08 08:46:05 2021 +0000 138.3 @@ -12,6 +12,12 @@ 138.4 TAGS="filesystem" 138.5 HOST_ARCH="i486 arm" 138.6 138.7 +current_version() 138.8 +{ 138.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 138.10 + sed '/archive.*tar/!d;s|.*/fuse-\(.*\).tar.*|\1|;q' 138.11 +} 138.12 + 138.13 # Rules to configure and make the package. 138.14 compile_rules() 138.15 {
139.1 --- a/fusioninventory-agent/receipt Sun May 30 10:18:33 2021 +0100 139.2 +++ b/fusioninventory-agent/receipt Tue Jun 08 08:46:05 2021 +0000 139.3 @@ -20,6 +20,12 @@ 139.4 perl-xml-treepp" 139.5 BUILD_DEPENDS="$DEPENDS" 139.6 139.7 +current_version() 139.8 +{ 139.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 139.10 + sed '/archive.*tar/!d;/pkg/d;s|.*/\(.*[0-9]\).tar.*|\1|;q' 139.11 +} 139.12 + 139.13 # Rules to configure and make the package. 139.14 compile_rules() 139.15 {
140.1 --- a/fwbuilder/receipt Sun May 30 10:18:33 2021 +0100 140.2 +++ b/fwbuilder/receipt Tue Jun 08 08:46:05 2021 +0000 140.3 @@ -14,6 +14,12 @@ 140.4 DEPENDS="libQtCore libQtGui libQtNetwork libxml2 libxslt zlib" 140.5 BUILD_DEPENDS="autoconf automake file libtool libxslt-dev qmake Qt4-dev" 140.6 140.7 +current_version() 140.8 +{ 140.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 140.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 140.11 +} 140.12 + 140.13 # Rules to configure and make the package. 140.14 compile_rules() 140.15 {
141.1 --- a/fzy/receipt Sun May 30 10:18:33 2021 +0100 141.2 +++ b/fzy/receipt Tue Jun 08 08:46:05 2021 +0000 141.3 @@ -13,6 +13,12 @@ 141.4 DEPENDS="" 141.5 BUILD_DEPENDS="" 141.6 141.7 +current_version() 141.8 +{ 141.9 + wget -O - ${WGET_URL%/down*}s 2>/dev/null | \ 141.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 141.11 +} 141.12 + 141.13 # Rules to configure and make the package. 141.14 compile_rules() 141.15 {
142.1 --- a/galculator/receipt Sun May 30 10:18:33 2021 +0100 142.2 +++ b/galculator/receipt Tue Jun 08 08:46:05 2021 +0000 142.3 @@ -18,6 +18,12 @@ 142.4 142.5 HOST_ARCH="i486 arm" 142.6 142.7 +current_version() 142.8 +{ 142.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 142.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 142.11 +} 142.12 + 142.13 # Rules to configure and make the package. 142.14 compile_rules() 142.15 {
143.1 --- a/gaupol/receipt Sun May 30 10:18:33 2021 +0100 143.2 +++ b/gaupol/receipt Tue Jun 08 08:46:05 2021 +0000 143.3 @@ -15,6 +15,12 @@ 143.4 DEPENDS="py3k pygtk" 143.5 BUILD_DEPENDS="gettext intltool py3k-dev" 143.6 143.7 +current_version() 143.8 +{ 143.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 143.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 143.11 +} 143.12 + 143.13 # Rules to configure and make the package. 143.14 compile_rules() 143.15 {
144.1 --- a/genromfs/receipt Sun May 30 10:18:33 2021 +0100 144.2 +++ b/genromfs/receipt Tue Jun 08 08:46:05 2021 +0000 144.3 @@ -13,6 +13,12 @@ 144.4 DEPENDS="" 144.5 BUILD_DEPENDS="wget" 144.6 144.7 +current_version() 144.8 +{ 144.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 144.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 144.11 +} 144.12 + 144.13 # Rules to configure and make the package. 144.14 compile_rules() 144.15 {
145.1 --- a/giflossy/receipt Sun May 30 10:18:33 2021 +0100 145.2 +++ b/giflossy/receipt Tue Jun 08 08:46:05 2021 +0000 145.3 @@ -13,6 +13,12 @@ 145.4 145.5 BUILD_DEPENDS="autoconf automake" 145.6 145.7 +current_version() 145.8 +{ 145.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 145.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 145.11 +} 145.12 + 145.13 # Rules to configure and make the package. 145.14 compile_rules() 145.15 {
146.1 --- a/giws/receipt Sun May 30 10:18:33 2021 +0100 146.2 +++ b/giws/receipt Tue Jun 08 08:46:05 2021 +0000 146.3 @@ -14,6 +14,12 @@ 146.4 DEPENDS="python" 146.5 BUILD_DEPENDS="python libxml2-python" 146.6 146.7 +current_version() 146.8 +{ 146.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 146.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 146.11 +} 146.12 + 146.13 # Rules to configure and make the package. 146.14 compile_rules() 146.15 {
147.1 --- a/glances/receipt Sun May 30 10:18:33 2021 +0100 147.2 +++ b/glances/receipt Tue Jun 08 08:46:05 2021 +0000 147.3 @@ -15,6 +15,12 @@ 147.4 DEPENDS="python python-psutil" 147.5 BUILD_DEPENDS="python-dev python-psutil python-setuptools" 147.6 147.7 +current_version() 147.8 +{ 147.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 147.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 147.11 +} 147.12 + 147.13 # Rules to configure and make the package. 147.14 compile_rules() 147.15 {
148.1 --- a/glm/receipt Sun May 30 10:18:33 2021 +0100 148.2 +++ b/glm/receipt Tue Jun 08 08:46:05 2021 +0000 148.3 @@ -11,6 +11,12 @@ 148.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 148.5 WGET_URL="https://github.com/g-truc/$PACKAGE/archive/$VERSION.tar.gz" 148.6 148.7 +current_version() 148.8 +{ 148.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 148.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 148.11 +} 148.12 + 148.13 # Rules to gen a SliTaz package suitable for Tazpkg. 148.14 genpkg_rules() 148.15 {
149.1 --- a/glpi/receipt Sun May 30 10:18:33 2021 +0100 149.2 +++ b/glpi/receipt Tue Jun 08 08:46:05 2021 +0000 149.3 @@ -15,6 +15,12 @@ 149.4 BUILD_DEPENDS="" 149.5 CONFIG_FILES="/etc/glpi/config_db.php" 149.6 149.7 +current_version() 149.8 +{ 149.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 149.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 149.11 +} 149.12 + 149.13 # Rules to gen a SliTaz package suitable for Tazpkg. 149.14 genpkg_rules() 149.15 {
150.1 --- a/gource/receipt Sun May 30 10:18:33 2021 +0100 150.2 +++ b/gource/receipt Tue Jun 08 08:46:05 2021 +0000 150.3 @@ -15,6 +15,12 @@ 150.4 BUILD_DEPENDS="freetype-dev ftgl-dev glew-dev glm libboost-filesystem-dev 150.5 libsdl2-dev libsdl2-image-dev mesa-dev pcre-dev" 150.6 150.7 +current_version() 150.8 +{ 150.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 150.10 + sed '/archive.*tar/!d;s|.*/gource-\(.*\).tar.*|\1|;q' 150.11 +} 150.12 + 150.13 # Rules to configure and make the package. 150.14 compile_rules() 150.15 {
151.1 --- a/gpart/receipt Sun May 30 10:18:33 2021 +0100 151.2 +++ b/gpart/receipt Tue Jun 08 08:46:05 2021 +0000 151.3 @@ -12,6 +12,12 @@ 151.4 151.5 BUILD_DEPENDS="automake" 151.6 151.7 +current_version() 151.8 +{ 151.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 151.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 151.11 +} 151.12 + 151.13 # Rules to configure and make the package. 151.14 compile_rules() 151.15 {
152.1 --- a/gpodder/receipt Sun May 30 10:18:33 2021 +0100 152.2 +++ b/gpodder/receipt Tue Jun 08 08:46:05 2021 +0000 152.3 @@ -14,6 +14,12 @@ 152.4 DEPENDS="dbus-python feedparser py3k pygtk python-mygpoclient" 152.5 BUILD_DEPENDS="feedparser intltool py3k-dev python-mygpoclient" 152.6 152.7 +current_version() 152.8 +{ 152.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 152.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 152.11 +} 152.12 + 152.13 # Rules to configure and make the package. 152.14 compile_rules() 152.15 {
153.1 --- a/gritz/receipt Sun May 30 10:18:33 2021 +0100 153.2 +++ b/gritz/receipt Tue Jun 08 08:46:05 2021 +0000 153.3 @@ -13,6 +13,12 @@ 153.4 DEPENDS="perl-gtk2" 153.5 BUILD_DEPENDS="wget perl" 153.6 153.7 +current_version() 153.8 +{ 153.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 153.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 153.11 +} 153.12 + 153.13 # Rules to gen a SliTaz package suitable for Tazpkg. 153.14 genpkg_rules() 153.15 {
154.1 --- a/gtest/receipt Sun May 30 10:18:33 2021 +0100 154.2 +++ b/gtest/receipt Tue Jun 08 08:46:05 2021 +0000 154.3 @@ -14,6 +14,12 @@ 154.4 DEPENDS="gcc83-lib-base" 154.5 BUILD_DEPENDS="cmake gcc83" 154.6 154.7 +current_version() 154.8 +{ 154.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 154.10 + sed '/release.*tar/!d;s|.*/release-\(.*\).tar.*|\1|;q' 154.11 +} 154.12 + 154.13 # Rules to configure and make the package. 154.14 compile_rules() 154.15 {
155.1 --- a/gtk-theme-albatross/receipt Sun May 30 10:18:33 2021 +0100 155.2 +++ b/gtk-theme-albatross/receipt Tue Jun 08 08:46:05 2021 +0000 155.3 @@ -13,6 +13,12 @@ 155.4 155.5 DEPENDS="gtk2-engine-murrine" 155.6 155.7 +current_version() 155.8 +{ 155.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 155.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 155.11 +} 155.12 + 155.13 # Rules to configure and make the package. 155.14 compile_rules() 155.15 {
156.1 --- a/gtk-theme-arc/receipt Sun May 30 10:18:33 2021 +0100 156.2 +++ b/gtk-theme-arc/receipt Tue Jun 08 08:46:05 2021 +0000 156.3 @@ -14,6 +14,12 @@ 156.4 DEPENDS="gtk2-engine-murrine" 156.5 BUILD_DEPENDS="autoconf automake gtk+3-dev" 156.6 156.7 +current_version() 156.8 +{ 156.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 156.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 156.11 +} 156.12 + 156.13 # Rules to configure and make the package. 156.14 compile_rules() 156.15 {
157.1 --- a/gtk-theme-blackbird/receipt Sun May 30 10:18:33 2021 +0100 157.2 +++ b/gtk-theme-blackbird/receipt Tue Jun 08 08:46:05 2021 +0000 157.3 @@ -13,6 +13,12 @@ 157.4 157.5 DEPENDS="gtk2-engine-murrine" 157.6 157.7 +current_version() 157.8 +{ 157.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 157.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 157.11 +} 157.12 + 157.13 # Rules to configure and make the package 157.14 compile_rules() 157.15 {
158.1 --- a/gtk-theme-bluebird/receipt Sun May 30 10:18:33 2021 +0100 158.2 +++ b/gtk-theme-bluebird/receipt Tue Jun 08 08:46:05 2021 +0000 158.3 @@ -15,6 +15,12 @@ 158.4 158.5 HOST_ARCH="any" 158.6 158.7 +current_version() 158.8 +{ 158.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 158.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 158.11 +} 158.12 + 158.13 # Rules to configure and make the package. 158.14 compile_rules() 158.15 {
159.1 --- a/gtk-theme-greybird/receipt Sun May 30 10:18:33 2021 +0100 159.2 +++ b/gtk-theme-greybird/receipt Tue Jun 08 08:46:05 2021 +0000 159.3 @@ -13,6 +13,12 @@ 159.4 159.5 DEPENDS="gtk2-engine-murrine" 159.6 159.7 +current_version() 159.8 +{ 159.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 159.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 159.11 +} 159.12 + 159.13 # Rules to configure and make the package. 159.14 compile_rules() 159.15 {
160.1 --- a/gtk-theme-orion/receipt Sun May 30 10:18:33 2021 +0100 160.2 +++ b/gtk-theme-orion/receipt Tue Jun 08 08:46:05 2021 +0000 160.3 @@ -13,6 +13,12 @@ 160.4 160.5 DEPENDS="gtk2-engine-murrine" 160.6 160.7 +current_version() 160.8 +{ 160.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 160.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 160.11 +} 160.12 + 160.13 # Rules to configure and make the package. 160.14 compile_rules() 160.15 {
161.1 --- a/gtk-theme-vertex/receipt Sun May 30 10:18:33 2021 +0100 161.2 +++ b/gtk-theme-vertex/receipt Tue Jun 08 08:46:05 2021 +0000 161.3 @@ -14,6 +14,12 @@ 161.4 DEPENDS="gtk2-engine-murrine" 161.5 BUILD_DEPENDS="autoconf automake gtk+3-dev" 161.6 161.7 +current_version() 161.8 +{ 161.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 161.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 161.11 +} 161.12 + 161.13 # Rules to configure and make the package. 161.14 compile_rules() 161.15 {
162.1 --- a/gtkhash/receipt Sun May 30 10:18:33 2021 +0100 162.2 +++ b/gtkhash/receipt Tue Jun 08 08:46:05 2021 +0000 162.3 @@ -16,6 +16,12 @@ 162.4 162.5 HOST_ARCH="i486 arm" 162.6 162.7 +current_version() 162.8 +{ 162.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 162.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 162.11 +} 162.12 + 162.13 # Rules to configure and make the package. 162.14 compile_rules() 162.15 {
163.1 --- a/gummi/receipt Sun May 30 10:18:33 2021 +0100 163.2 +++ b/gummi/receipt Tue Jun 08 08:46:05 2021 +0000 163.3 @@ -15,6 +15,12 @@ 163.4 DEPENDS="gtk+ gtksourceview gtkspell poppler" 163.5 BUILD_DEPENDS="glib gtk+-dev gtksourceview-dev gtkspell-dev intltool poppler-dev" 163.6 163.7 +current_version() 163.8 +{ 163.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 163.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 163.11 +} 163.12 + 163.13 # Rules to configure and make the package. 163.14 compile_rules() 163.15 {
164.1 --- a/hash-slinger/receipt Sun May 30 10:18:33 2021 +0100 164.2 +++ b/hash-slinger/receipt Tue Jun 08 08:46:05 2021 +0000 164.3 @@ -13,6 +13,12 @@ 164.4 164.5 DEPENDS="python" 164.6 164.7 +current_version() 164.8 +{ 164.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 164.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 164.11 +} 164.12 + 164.13 # Rules to configure and make the package. 164.14 compile_rules() 164.15 {
165.1 --- a/hiredis/receipt Sun May 30 10:18:33 2021 +0100 165.2 +++ b/hiredis/receipt Tue Jun 08 08:46:05 2021 +0000 165.3 @@ -13,6 +13,12 @@ 165.4 165.5 BUILD_DEPENDS="" 165.6 165.7 +current_version() 165.8 +{ 165.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 165.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 165.11 +} 165.12 + 165.13 # Rules to configure and make the package. 165.14 compile_rules() 165.15 {
166.1 --- a/horst/receipt Sun May 30 10:18:33 2021 +0100 166.2 +++ b/horst/receipt Tue Jun 08 08:46:05 2021 +0000 166.3 @@ -14,6 +14,12 @@ 166.4 DEPENDS="ncurses libtinfo" 166.5 BUILD_DEPENDS="libnl-dev ncurses-dev" 166.6 166.7 +current_version() 166.8 +{ 166.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 166.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 166.11 +} 166.12 + 166.13 # Rules to configure and make the package. 166.14 compile_rules() 166.15 {
167.1 --- a/hsetroot/receipt Sun May 30 10:18:33 2021 +0100 167.2 +++ b/hsetroot/receipt Tue Jun 08 08:46:05 2021 +0000 167.3 @@ -20,6 +20,12 @@ 167.4 167.5 # ARM: imlib2-dev must be installed in build chroot 167.6 167.7 +current_version() 167.8 +{ 167.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 167.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 167.11 +} 167.12 + 167.13 # Rules to configure and make the package. 167.14 compile_rules() 167.15 {
168.1 --- a/htmldoc/receipt Sun May 30 10:18:33 2021 +0100 168.2 +++ b/htmldoc/receipt Tue Jun 08 08:46:05 2021 +0000 168.3 @@ -14,6 +14,12 @@ 168.4 DEPENDS="fltk jpeg libpng" 168.5 BUILD_DEPENDS="fltk-dev jpeg-dev libpng-dev" 168.6 168.7 +current_version() 168.8 +{ 168.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 168.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 168.11 +} 168.12 + 168.13 # Rules to configure and make the package. 168.14 compile_rules() 168.15 {
169.1 --- a/httpie/receipt Sun May 30 10:18:33 2021 +0100 169.2 +++ b/httpie/receipt Tue Jun 08 08:46:05 2021 +0000 169.3 @@ -14,6 +14,12 @@ 169.4 DEPENDS="python-pygments python-requests" 169.5 BUILD_DEPENDS="python-setuptools" 169.6 169.7 +current_version() 169.8 +{ 169.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 169.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 169.11 +} 169.12 + 169.13 # Rules to configure and make the package. 169.14 compile_rules() 169.15 {
170.1 --- a/hubicfuse/receipt Sun May 30 10:18:33 2021 +0100 170.2 +++ b/hubicfuse/receipt Tue Jun 08 08:46:05 2021 +0000 170.3 @@ -15,6 +15,12 @@ 170.4 BUILD_DEPENDS="curl-dev fuse-dev glib libjson-c-dev libmagic-dev 170.5 libxml2-dev openssl-dev pkg-config" 170.6 170.7 +current_version() 170.8 +{ 170.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 170.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 170.11 +} 170.12 + 170.13 # Rules to configure and make the package. 170.14 compile_rules() 170.15 {
171.1 --- a/hunspell/receipt Sun May 30 10:18:33 2021 +0100 171.2 +++ b/hunspell/receipt Tue Jun 08 08:46:05 2021 +0000 171.3 @@ -13,6 +13,12 @@ 171.4 171.5 BUILD_DEPENDS="autoconf automake libtool" 171.6 171.7 +current_version() 171.8 +{ 171.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 171.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 171.11 +} 171.12 + 171.13 # Rules to configure and make the package. 171.14 compile_rules() 171.15 {
172.1 --- a/i7z/receipt Sun May 30 10:18:33 2021 +0100 172.2 +++ b/i7z/receipt Tue Jun 08 08:46:05 2021 +0000 172.3 @@ -14,6 +14,12 @@ 172.4 DEPENDS="ncurses" 172.5 BUILD_DEPENDS="ncurses-dev" 172.6 172.7 +current_version() 172.8 +{ 172.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 172.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 172.11 +} 172.12 + 172.13 # Rules to configure and make the package. 172.14 compile_rules() 172.15 {
173.1 --- a/icewm/receipt Sun May 30 10:18:33 2021 +0100 173.2 +++ b/icewm/receipt Tue Jun 08 08:46:05 2021 +0000 173.3 @@ -22,6 +22,12 @@ 173.4 xorg-libXrandr-dev xorg-libXrender-dev xorg-randrproto xorg-xextproto 173.5 xorg-xproto xz" 173.6 173.7 +current_version() 173.8 +{ 173.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 173.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 173.11 +} 173.12 + 173.13 # Rules to configure and make the package. 173.14 compile_rules() 173.15 {
174.1 --- a/igmpproxy/receipt Sun May 30 10:18:33 2021 +0100 174.2 +++ b/igmpproxy/receipt Tue Jun 08 08:46:05 2021 +0000 174.3 @@ -11,6 +11,12 @@ 174.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 174.5 WGET_URL="$WEB_SITE/releases/download/$VERSION/$TARBALL" 174.6 174.7 +current_version() 174.8 +{ 174.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 174.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 174.11 +} 174.12 + 174.13 # Rules to configure and make the package. 174.14 compile_rules() 174.15 {
175.1 --- a/iksemel/receipt Sun May 30 10:18:33 2021 +0100 175.2 +++ b/iksemel/receipt Tue Jun 08 08:46:05 2021 +0000 175.3 @@ -14,6 +14,12 @@ 175.4 DEPENDS="gnutls libgcrypt libgpg-error pkg-config zlib" 175.5 BUILD_DEPENDS="autoconf automake libtool texinfo" 175.6 175.7 +current_version() 175.8 +{ 175.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 175.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 175.11 +} 175.12 + 175.13 # Rules to configure and make the package. 175.14 compile_rules() 175.15 {
176.1 --- a/ilmbase/receipt Sun May 30 10:18:33 2021 +0100 176.2 +++ b/ilmbase/receipt Tue Jun 08 08:46:05 2021 +0000 176.3 @@ -15,6 +15,12 @@ 176.4 DEPENDS="gcc83-lib-base" 176.5 BUILD_DEPENDS="bash gcc83" 176.6 176.7 +current_version() 176.8 +{ 176.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 176.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 176.11 +} 176.12 + 176.13 # Rules to configure and make the package. 176.14 compile_rules() 176.15 {
177.1 --- a/iniparser/receipt Sun May 30 10:18:33 2021 +0100 177.2 +++ b/iniparser/receipt Tue Jun 08 08:46:05 2021 +0000 177.3 @@ -14,6 +14,12 @@ 177.4 DEPENDS="" 177.5 BUILD_DEPENDS="" 177.6 177.7 +current_version() 177.8 +{ 177.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 177.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 177.11 +} 177.12 + 177.13 # Rules to configure and make the package. 177.14 compile_rules() 177.15 {
178.1 --- a/inotify-tools/receipt Sun May 30 10:18:33 2021 +0100 178.2 +++ b/inotify-tools/receipt Tue Jun 08 08:46:05 2021 +0000 178.3 @@ -14,6 +14,12 @@ 178.4 DEPENDS="" 178.5 BUILD_DEPENDS="autoconf automake cmake file libtool" 178.6 178.7 +current_version() 178.8 +{ 178.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 178.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 178.11 +} 178.12 + 178.13 # Rules to configure and make the package. 178.14 compile_rules() 178.15 {
179.1 --- a/intel-microcode/receipt Sun May 30 10:18:33 2021 +0100 179.2 +++ b/intel-microcode/receipt Tue Jun 08 08:46:05 2021 +0000 179.3 @@ -16,6 +16,12 @@ 179.4 179.5 DEPENDS="linux" 179.6 179.7 +current_version() 179.8 +{ 179.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 179.10 + sed '/archive.*tar/!d;s|.*/microcode-\(.*\).tar.*|\1|;q' 179.11 +} 179.12 + 179.13 compile_rules() 179.14 { 179.15 mkdir -p $install/lib/firmware/
180.1 --- a/inxi/receipt Sun May 30 10:18:33 2021 +0100 180.2 +++ b/inxi/receipt Tue Jun 08 08:46:05 2021 +0000 180.3 @@ -14,6 +14,12 @@ 180.4 180.5 DEPENDS="bash coreutils-disk gawk pciutils procps sed" 180.6 180.7 +current_version() 180.8 +{ 180.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 180.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 180.11 +} 180.12 + 180.13 # Rules to gen a SliTaz package suitable for Tazpkg. 180.14 genpkg_rules() 180.15 {
181.1 --- a/iperf/receipt Sun May 30 10:18:33 2021 +0100 181.2 +++ b/iperf/receipt Tue Jun 08 08:46:05 2021 +0000 181.3 @@ -14,6 +14,12 @@ 181.4 DEPENDS="gcc-lib-base" 181.5 BUILD_DEPENDS="" 181.6 181.7 +current_version() 181.8 +{ 181.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 181.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 181.11 +} 181.12 + 181.13 # Rules to configure and make the package. 181.14 compile_rules() 181.15 {
182.1 --- a/iprange/receipt Sun May 30 10:18:33 2021 +0100 182.2 +++ b/iprange/receipt Tue Jun 08 08:46:05 2021 +0000 182.3 @@ -11,6 +11,12 @@ 182.4 TARBALL="$PACKAGE-$VERSION.tar.xz" 182.5 WGET_URL="$WEB_SITE/releases/download/v$VERSION/$TARBALL" 182.6 182.7 +current_version() 182.8 +{ 182.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 182.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 182.11 +} 182.12 + 182.13 # Rules to configure and make the package. 182.14 compile_rules() 182.15 {
183.1 --- a/iptstate/receipt Sun May 30 10:18:33 2021 +0100 183.2 +++ b/iptstate/receipt Tue Jun 08 08:46:05 2021 +0000 183.3 @@ -14,6 +14,12 @@ 183.4 DEPENDS="iptables libnetfilter_conntrack libnfnetlink ncurses" 183.5 BUILD_DEPENDS="libnetfilter_conntrack-dev libnfnetlink-dev ncurses-dev" 183.6 183.7 +current_version() 183.8 +{ 183.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 183.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 183.11 +} 183.12 + 183.13 # Rules to configure and make the package. 183.14 compile_rules() 183.15 {
184.1 --- a/irssi/receipt Sun May 30 10:18:33 2021 +0100 184.2 +++ b/irssi/receipt Tue Jun 08 08:46:05 2021 +0000 184.3 @@ -15,6 +15,12 @@ 184.4 DEPENDS="glib ncurses openssl perl" 184.5 BUILD_DEPENDS="glib glib-dev ncurses-dev openssl-dev perl pkg-config" 184.6 184.7 +current_version() 184.8 +{ 184.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 184.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 184.11 +} 184.12 + 184.13 # Rules to configure and make the package. 184.14 compile_rules() 184.15 {
185.1 --- a/jabberd2/receipt Sun May 30 10:18:33 2021 +0100 185.2 +++ b/jabberd2/receipt Tue Jun 08 08:46:05 2021 +0000 185.3 @@ -19,6 +19,12 @@ 185.4 sqlite sqlite-dev udns udns-dev zlib-dev libgcrypt-dev" 185.5 CONFIG_FILES="/etc/jabberd" 185.6 185.7 +current_version() 185.8 +{ 185.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 185.10 + sed '/archive.*tar/!d;s|.*/jabberd-\(.*\).tar.*|\1|;q' 185.11 +} 185.12 + 185.13 # Rules to configure and make the package. 185.14 compile_rules() 185.15 {
186.1 --- a/jansson/receipt Sun May 30 10:18:33 2021 +0100 186.2 +++ b/jansson/receipt Tue Jun 08 08:46:05 2021 +0000 186.3 @@ -14,6 +14,12 @@ 186.4 DEPENDS="xorg-libX11" 186.5 BUILD_DEPENDS="xorg-libX11-dev automake libtool" 186.6 186.7 +current_version() 186.8 +{ 186.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 186.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 186.11 +} 186.12 + 186.13 # Rules to configure and make the package. 186.14 compile_rules() 186.15 {
187.1 --- a/jasper/receipt Sun May 30 10:18:33 2021 +0100 187.2 +++ b/jasper/receipt Tue Jun 08 08:46:05 2021 +0000 187.3 @@ -16,6 +16,12 @@ 187.4 BUILD_DEPENDS="cmake jpeg-dev xorg-libXi-dev xorg-libXmu-dev" 187.5 HOST_ARCH="i486 arm" 187.6 187.7 +current_version() 187.8 +{ 187.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 187.10 + sed '/archive.*tar/!d;s|.*/version-\(.*\).tar.*|\1|;q' 187.11 +} 187.12 + 187.13 # Rules to configure and make the package. 187.14 compile_rules() 187.15 {
188.1 --- a/jbig2dec/receipt Sun May 30 10:18:33 2021 +0100 188.2 +++ b/jbig2dec/receipt Tue Jun 08 08:46:05 2021 +0000 188.3 @@ -15,6 +15,12 @@ 188.4 188.5 HOST_ARCH="i486 arm" 188.6 188.7 +current_version() 188.8 +{ 188.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 188.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 188.11 +} 188.12 + 188.13 # Rules to configure and make the package. 188.14 compile_rules() 188.15 {
189.1 --- a/jclic/receipt Sun May 30 10:18:33 2021 +0100 189.2 +++ b/jclic/receipt Tue Jun 08 08:46:05 2021 +0000 189.3 @@ -14,6 +14,12 @@ 189.4 189.5 DEPENDS="java-jre" 189.6 189.7 +current_version() 189.8 +{ 189.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 189.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 189.11 +} 189.12 + 189.13 # Rules to configure and make the package. 189.14 compile_rules() 189.15 {
190.1 --- a/jp2a/receipt Sun May 30 10:18:33 2021 +0100 190.2 +++ b/jp2a/receipt Tue Jun 08 08:46:05 2021 +0000 190.3 @@ -13,6 +13,12 @@ 190.4 DEPENDS="jpeg libcurl" 190.5 BUILD_DEPENDS="jpeg-dev curl-dev libtool" 190.6 190.7 +current_version() 190.8 +{ 190.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 190.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 190.11 +} 190.12 + 190.13 # Rules to configure and make the package. 190.14 compile_rules() 190.15 {
191.1 --- a/jq/receipt Sun May 30 10:18:33 2021 +0100 191.2 +++ b/jq/receipt Tue Jun 08 08:46:05 2021 +0000 191.3 @@ -12,6 +12,12 @@ 191.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 191.5 WGET_URL="https://github.com/stedolan/$PACKAGE/releases/download/$PACKAGE-$VERSION/$TARBALL" 191.6 191.7 +current_version() 191.8 +{ 191.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 191.10 + sed '/archive.*tar/!d;s|.*/jq-\(.*\).tar.*|\1|;q' 191.11 +} 191.12 + 191.13 # Rules to configure and make the package. 191.14 compile_rules() 191.15 {
192.1 --- a/jsoncpp/receipt Sun May 30 10:18:33 2021 +0100 192.2 +++ b/jsoncpp/receipt Tue Jun 08 08:46:05 2021 +0000 192.3 @@ -14,6 +14,12 @@ 192.4 DEPENDS="gcc83-lib-base" 192.5 BUILD_DEPENDS="cmake gcc83 pkg-config py3k" 192.6 192.7 +current_version() 192.8 +{ 192.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 192.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 192.11 +} 192.12 + 192.13 # Rules to configure and make the package. 192.14 compile_rules() 192.15 {
193.1 --- a/keychain/receipt Sun May 30 10:18:33 2021 +0100 193.2 +++ b/keychain/receipt Tue Jun 08 08:46:05 2021 +0000 193.3 @@ -14,6 +14,12 @@ 193.4 193.5 SUGGESTED="gnupg openssh" 193.6 193.7 +current_version() 193.8 +{ 193.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 193.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 193.11 +} 193.12 + 193.13 # Rules to gen a SliTaz package suitable for Tazpkg. 193.14 genpkg_rules() 193.15 {
194.1 --- a/kkedit/receipt Sun May 30 10:18:33 2021 +0100 194.2 +++ b/kkedit/receipt Tue Jun 08 08:46:05 2021 +0000 194.3 @@ -16,6 +16,12 @@ 194.4 BUILD_DEPENDS="aspell-dev autoconf automake ctags gtk+-dev 194.5 gtksourceview-dev libtool libunique-dev libxml2-dev vte-dev" 194.6 194.7 +current_version() 194.8 +{ 194.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 194.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 194.11 +} 194.12 + 194.13 # Rules to configure and make the package. 194.14 compile_rules() 194.15 {
195.1 --- a/kqoauth/receipt Sun May 30 10:18:33 2021 +0100 195.2 +++ b/kqoauth/receipt Tue Jun 08 08:46:05 2021 +0000 195.3 @@ -13,6 +13,12 @@ 195.4 DEPENDS="libQtGui libQtNetwork libssl" 195.5 BUILD_DEPENDS="qmake Qt4-dev openssl-dev" 195.6 195.7 +current_version() 195.8 +{ 195.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 195.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 195.11 +} 195.12 + 195.13 # Rules to configure and make the package. 195.14 compile_rules() 195.15 {
196.1 --- a/l3afpad/receipt Sun May 30 10:18:33 2021 +0100 196.2 +++ b/l3afpad/receipt Tue Jun 08 08:46:05 2021 +0000 196.3 @@ -15,6 +15,12 @@ 196.4 DEPENDS="gtk+3" 196.5 BUILD_DEPENDS="autoconf automake gtk+3-dev" 196.6 196.7 +current_version() 196.8 +{ 196.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 196.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 196.11 +} 196.12 + 196.13 # Rules to configure and make the package. 196.14 compile_rules() 196.15 {
197.1 --- a/laptop-mode-tools/receipt Sun May 30 10:18:33 2021 +0100 197.2 +++ b/laptop-mode-tools/receipt Tue Jun 08 08:46:05 2021 +0000 197.3 @@ -13,6 +13,12 @@ 197.4 197.5 DEPENDS="acpid hdparm python util-linux-blockdev util-linux-flock" 197.6 197.7 +current_version() 197.8 +{ 197.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 197.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 197.11 +} 197.12 + 197.13 # Rules to configure and make the package. 197.14 compile_rules() 197.15 {
198.1 --- a/larch/receipt Sun May 30 10:18:33 2021 +0100 198.2 +++ b/larch/receipt Tue Jun 08 08:46:05 2021 +0000 198.3 @@ -9,10 +9,17 @@ 198.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 198.5 WEB_SITE="https://github.com/rgrove/larch/" 198.6 WGET_URL="${WEB_SITE}archive/release-$VERSION.tar.gz" 198.7 +TAGS="imap" 198.8 198.9 DEPENDS="ruby" 198.10 BUILD_DEPENDS="ruby-dev wget" 198.11 198.12 +current_version() 198.13 +{ 198.14 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 198.15 + sed '/archive.*tar/!d;s|.*/release-\(.*\).tar.*|\1|;q' 198.16 +} 198.17 + 198.18 # Rules to configure and make the package. 198.19 compile_rules() 198.20 {
199.1 --- a/lcov/receipt Sun May 30 10:18:33 2021 +0100 199.2 +++ b/lcov/receipt Tue Jun 08 08:46:05 2021 +0000 199.3 @@ -14,6 +14,12 @@ 199.4 SUGGESTED="gcc" 199.5 DEPENDS="perl" 199.6 199.7 +current_version() 199.8 +{ 199.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 199.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 199.11 +} 199.12 + 199.13 # Rules to configure and make the package. 199.14 compile_rules() 199.15 {
200.1 --- a/ldm/receipt Sun May 30 10:18:33 2021 +0100 200.2 +++ b/ldm/receipt Tue Jun 08 08:46:05 2021 +0000 200.3 @@ -13,6 +13,12 @@ 200.4 DEPENDS="udev" 200.5 BUILD_DEPENDS="udev-dev util-linux-mount-dev util-linux-blkid wget" 200.6 200.7 +current_version() 200.8 +{ 200.9 + wget -O - ${WGET_URL%/tarb*}/releases 2>/dev/null | \ 200.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 200.11 +} 200.12 + 200.13 # Rules to configure and make the package. 200.14 compile_rules() 200.15 {
201.1 --- a/le/receipt Sun May 30 10:18:33 2021 +0100 201.2 +++ b/le/receipt Tue Jun 08 08:46:05 2021 +0000 201.3 @@ -15,6 +15,12 @@ 201.4 DEPENDS="gcc83-lib-base ncurses" 201.5 BUILD_DEPENDS="gcc83 ncurses-dev" 201.6 201.7 +current_version() 201.8 +{ 201.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 201.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 201.11 +} 201.12 + 201.13 # Rules to configure and make the package. 201.14 compile_rules() 201.15 {
202.1 --- a/lgi/receipt Sun May 30 10:18:33 2021 +0100 202.2 +++ b/lgi/receipt Tue Jun 08 08:46:05 2021 +0000 202.3 @@ -15,6 +15,12 @@ 202.4 BUILD_DEPENDS="gobject-introspection-dev lua-dev" 202.5 # add "cairo-dev gtk+-dev" for `make check` 202.6 202.7 +current_version() 202.8 +{ 202.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 202.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 202.11 +} 202.12 + 202.13 # Rules to configure and make the package. 202.14 compile_rules() 202.15 {
203.1 --- a/liba53/receipt Sun May 30 10:18:33 2021 +0100 203.2 +++ b/liba53/receipt Tue Jun 08 08:46:05 2021 +0000 203.3 @@ -14,6 +14,12 @@ 203.4 DEPENDS="" 203.5 BUILD_DEPENDS="wget pkg-config" 203.6 203.7 +current_version() 203.8 +{ 203.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 203.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 203.11 +} 203.12 + 203.13 # Rules to configure and make the package. 203.14 compile_rules() 203.15 {
204.1 --- a/libao/receipt Sun May 30 10:18:33 2021 +0100 204.2 +++ b/libao/receipt Tue Jun 08 08:46:05 2021 +0000 204.3 @@ -16,6 +16,12 @@ 204.4 204.5 HOST_ARCH="i486 arm" 204.6 204.7 +current_version() 204.8 +{ 204.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 204.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 204.11 +} 204.12 + 204.13 # Rules to configure and make the package. 204.14 compile_rules() 204.15 {
205.1 --- a/libconfig/receipt Sun May 30 10:18:33 2021 +0100 205.2 +++ b/libconfig/receipt Tue Jun 08 08:46:05 2021 +0000 205.3 @@ -14,6 +14,12 @@ 205.4 DEPENDS="" 205.5 BUILD_DEPENDS="automake texinfo" 205.6 205.7 +current_version() 205.8 +{ 205.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 205.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 205.11 +} 205.12 + 205.13 # Rules to configure and make the package. 205.14 compile_rules() 205.15 {
206.1 --- a/libconfuse/receipt Sun May 30 10:18:33 2021 +0100 206.2 +++ b/libconfuse/receipt Tue Jun 08 08:46:05 2021 +0000 206.3 @@ -14,6 +14,12 @@ 206.4 DEPENDS="" 206.5 BUILD_DEPENDS="automake libtool" 206.6 206.7 +current_version() 206.8 +{ 206.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 206.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 206.11 +} 206.12 + 206.13 # Rules to configure and make the package. 206.14 compile_rules() 206.15 {
207.1 --- a/libetpan/receipt Sun May 30 10:18:33 2021 +0100 207.2 +++ b/libetpan/receipt Tue Jun 08 08:46:05 2021 +0000 207.3 @@ -15,6 +15,12 @@ 207.4 openssl zlib" 207.5 BUILD_DEPENDS="autoconf automake expat-dev gnutls-dev libgnutls libtool" 207.6 207.7 +current_version() 207.8 +{ 207.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 207.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 207.11 +} 207.12 + 207.13 # Rules to configure and make the package. 207.14 compile_rules() 207.15 {
208.1 --- a/libevent/receipt Sun May 30 10:18:33 2021 +0100 208.2 +++ b/libevent/receipt Tue Jun 08 08:46:05 2021 +0000 208.3 @@ -16,6 +16,12 @@ 208.4 208.5 HOST_ARCH="i486 arm" 208.6 208.7 +current_version() 208.8 +{ 208.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 208.10 + sed '/archive.*tar/!d;s|.*libevent-\(.*\)-stable.*|\1|;q' 208.11 +} 208.12 + 208.13 # Rules to configure and make the package. 208.14 compile_rules() 208.15 {
209.1 --- a/libexif/receipt Sun May 30 10:18:33 2021 +0100 209.2 +++ b/libexif/receipt Tue Jun 08 08:46:05 2021 +0000 209.3 @@ -13,6 +13,12 @@ 209.4 209.5 HOST_ARCH="i486 arm" 209.6 209.7 +current_version() 209.8 +{ 209.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 209.10 + sed '/archive.*tar/!d;s|.*/libexif-\(.*\)-release.*|\1|;s|_|.|g;q' 209.11 +} 209.12 + 209.13 # Rules to configure and make the package. 209.14 compile_rules() 209.15 {
210.1 --- a/libgdiplus/receipt Sun May 30 10:18:33 2021 +0100 210.2 +++ b/libgdiplus/receipt Tue Jun 08 08:46:05 2021 +0000 210.3 @@ -23,6 +23,12 @@ 210.4 # Build documentation at http://mono-project.com/Compiling_Mono 210.5 # and http://mono-project.com/Release_Notes_Mono_2.4#Installing_Mono_2.4 210.6 210.7 +current_version() 210.8 +{ 210.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 210.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 210.11 +} 210.12 + 210.13 # Rules to configure and make the package. 210.14 compile_rules() 210.15 {
211.1 --- a/libgit2/receipt Sun May 30 10:18:33 2021 +0100 211.2 +++ b/libgit2/receipt Tue Jun 08 08:46:05 2021 +0000 211.3 @@ -12,6 +12,12 @@ 211.4 211.5 BUILD_DEPENDS="cmake python pkg-config openssl-dev" 211.6 211.7 +current_version() 211.8 +{ 211.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 211.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 211.11 +} 211.12 + 211.13 # Rules to configure and make the package. 211.14 compile_rules() 211.15 {
212.1 --- a/libgooglepinyin/receipt Sun May 30 10:18:33 2021 +0100 212.2 +++ b/libgooglepinyin/receipt Tue Jun 08 08:46:05 2021 +0000 212.3 @@ -14,6 +14,12 @@ 212.4 DEPENDS="" 212.5 BUILD_DEPENDS="cairo-dev cmake gtk+-dev intltool pango-dev" 212.6 212.7 +current_version() 212.8 +{ 212.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 212.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 212.11 +} 212.12 + 212.13 # Rules to configure and make the package. 212.14 compile_rules() 212.15 {
213.1 --- a/libhtp/receipt Sun May 30 10:18:33 2021 +0100 213.2 +++ b/libhtp/receipt Tue Jun 08 08:46:05 2021 +0000 213.3 @@ -13,6 +13,12 @@ 213.4 213.5 BUILD_DEPENDS="automake libtool" 213.6 213.7 +current_version() 213.8 +{ 213.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 213.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 213.11 +} 213.12 + 213.13 # Rules to configure and make the package. 213.14 compile_rules() 213.15 {
214.1 --- a/libical/receipt Sun May 30 10:18:33 2021 +0100 214.2 +++ b/libical/receipt Tue Jun 08 08:46:05 2021 +0000 214.3 @@ -14,6 +14,12 @@ 214.4 DEPENDS="" 214.5 BUILD_DEPENDS="cmake" 214.6 214.7 +current_version() 214.8 +{ 214.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 214.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 214.11 +} 214.12 + 214.13 # Rules to configure and make the package. 214.14 compile_rules() 214.15 {
215.1 --- a/libiodbc/receipt Sun May 30 10:18:33 2021 +0100 215.2 +++ b/libiodbc/receipt Tue Jun 08 08:46:05 2021 +0000 215.3 @@ -14,6 +14,12 @@ 215.4 DEPENDS="" 215.5 BUILD_DEPENDS="automake libtool" 215.6 215.7 +current_version() 215.8 +{ 215.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 215.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 215.11 +} 215.12 + 215.13 # Rules to configure and make the package. 215.14 compile_rules() 215.15 {
216.1 --- a/libjson-c/receipt Sun May 30 10:18:33 2021 +0100 216.2 +++ b/libjson-c/receipt Tue Jun 08 08:46:05 2021 +0000 216.3 @@ -1,8 +1,7 @@ 216.4 # SliTaz package receipt. 216.5 216.6 PACKAGE="libjson-c" 216.7 -VERSION="0.13.1" 216.8 -REL_DATE="20180305" 216.9 +VERSION="0.13.1-20180305" 216.10 CATEGORY="development" 216.11 SHORT_DESC="A JSON implementation in C." 216.12 MAINTAINER="pascal.bellard@slitaz.org" 216.13 @@ -10,11 +9,17 @@ 216.14 WEB_SITE="https://github.com/json-c/json-c" 216.15 216.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 216.17 -WGET_URL="$WEB_SITE/archive/json-c-$VERSION-$REL_DATE.tar.gz" 216.18 +WGET_URL="$WEB_SITE/archive/json-c-$VERSION.tar.gz" 216.19 216.20 DEPENDS="" 216.21 BUILD_DEPENDS="automake bash libtool" 216.22 216.23 +current_version() 216.24 +{ 216.25 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 216.26 + sed '/archive.*tar/!d;s|.*/json-c-\(.*\).tar.*|\1|;q' 216.27 +} 216.28 + 216.29 # Rules to configure and make the package. 216.30 compile_rules() 216.31 {
217.1 --- a/liblouis/receipt Sun May 30 10:18:33 2021 +0100 217.2 +++ b/liblouis/receipt Tue Jun 08 08:46:05 2021 +0000 217.3 @@ -15,6 +15,12 @@ 217.4 DEPENDS="glibc" 217.5 BUILD_DEPENDS="python-dev" 217.6 217.7 +current_version() 217.8 +{ 217.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 217.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 217.11 +} 217.12 + 217.13 # Rules to configure and make the package. 217.14 compile_rules() 217.15 {
218.1 --- a/liblrdf/receipt Sun May 30 10:18:33 2021 +0100 218.2 +++ b/liblrdf/receipt Tue Jun 08 08:46:05 2021 +0000 218.3 @@ -15,6 +15,12 @@ 218.4 BUILD_DEPENDS="autoconf automake curl-dev ladspa-dev libtool 218.5 libxslt-dev raptor-dev" 218.6 218.7 +current_version() 218.8 +{ 218.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 218.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 218.11 +} 218.12 + 218.13 # Rules to configure and make the package. 218.14 compile_rules() 218.15 {
219.1 --- a/liblxqt-mount/receipt Sun May 30 10:18:33 2021 +0100 219.2 +++ b/liblxqt-mount/receipt Tue Jun 08 08:46:05 2021 +0000 219.3 @@ -14,6 +14,12 @@ 219.4 DEPENDS="libQtCore libQtDBus libQtGui liblxqt" 219.5 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake xorg-libX11-dev liblxqt-dev" 219.6 219.7 +current_version() 219.8 +{ 219.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 219.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 219.11 +} 219.12 + 219.13 # Rules to configure and make the package. 219.14 compile_rules() 219.15 {
220.1 --- a/liblxqt/receipt Sun May 30 10:18:33 2021 +0100 220.2 +++ b/liblxqt/receipt Tue Jun 08 08:46:05 2021 +0000 220.3 @@ -15,6 +15,12 @@ 220.4 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake xorg-libX11-dev libqtxdg-dev \ 220.5 libQtMimeTypes-dev" 220.6 220.7 +current_version() 220.8 +{ 220.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 220.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 220.11 +} 220.12 + 220.13 # Rules to configure and make the package. 220.14 compile_rules() 220.15 {
221.1 --- a/libmatekbd/receipt Sun May 30 10:18:33 2021 +0100 221.2 +++ b/libmatekbd/receipt Tue Jun 08 08:46:05 2021 +0000 221.3 @@ -14,6 +14,12 @@ 221.4 BUILD_DEPENDS="wget gtk+-dev autoconf automake libtool itstool gtk-doc \ 221.5 mate-common-dev dconf-dev libxklavier-dev" 221.6 221.7 +current_version() 221.8 +{ 221.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 221.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 221.11 +} 221.12 + 221.13 # Rules to configure and make the package. 221.14 compile_rules() 221.15 {
222.1 --- a/libmatemixer/receipt Sun May 30 10:18:33 2021 +0100 222.2 +++ b/libmatemixer/receipt Tue Jun 08 08:46:05 2021 +0000 222.3 @@ -15,6 +15,12 @@ 222.4 mate-common-dev gtk-doc util-linux-uuid-dev libjson-c-dev libsndfile-dev flac-dev \ 222.5 libvorbis-dev dbus-dev" 222.6 222.7 +current_version() 222.8 +{ 222.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 222.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 222.11 +} 222.12 + 222.13 # Rules to configure and make the package. 222.14 compile_rules() 222.15 {
223.1 --- a/libmateweather/receipt Sun May 30 10:18:33 2021 +0100 223.2 +++ b/libmateweather/receipt Tue Jun 08 08:46:05 2021 +0000 223.3 @@ -14,6 +14,12 @@ 223.4 BUILD_DEPENDS="wget dconf-dev gtk+-dev autoconf automake libtool itstool \ 223.5 gtk-doc sqlite-dev mate-common-dev mate-desktop-dev libsoup-dev" 223.6 223.7 +current_version() 223.8 +{ 223.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 223.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 223.11 +} 223.12 + 223.13 # Rules to configure and make the package. 223.14 compile_rules() 223.15 {
224.1 --- a/libmcp23s17/receipt Sun May 30 10:18:33 2021 +0100 224.2 +++ b/libmcp23s17/receipt Tue Jun 08 08:46:05 2021 +0000 224.3 @@ -14,6 +14,12 @@ 224.4 DEPENDS="i2c-tools" 224.5 TAGS="raspberrypi rpi" 224.6 224.7 +current_version() 224.8 +{ 224.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 224.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 224.11 +} 224.12 + 224.13 # Rules to configure and make the package. 224.14 compile_rules() 224.15 {
225.1 --- a/libmowgli/receipt Sun May 30 10:18:33 2021 +0100 225.2 +++ b/libmowgli/receipt Tue Jun 08 08:46:05 2021 +0000 225.3 @@ -13,6 +13,12 @@ 225.4 225.5 BUILD_DEPENDS="" 225.6 225.7 +current_version() 225.8 +{ 225.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 225.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 225.11 +} 225.12 + 225.13 # Rules to configure and make the package. 225.14 compile_rules() 225.15 {
226.1 --- a/libnfc/receipt Sun May 30 10:18:33 2021 +0100 226.2 +++ b/libnfc/receipt Tue Jun 08 08:46:05 2021 +0000 226.3 @@ -14,6 +14,12 @@ 226.4 DEPENDS="libusb pcsc-lite" 226.5 BUILD_DEPENDS="libusb-compat libusb-dev pcsc-lite-dev pkg-config" 226.6 226.7 +current_version() 226.8 +{ 226.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 226.10 + sed '/archive.*tar/!d;s|.*/libnfc-\(.*\).tar.*|\1|;q' 226.11 +} 226.12 + 226.13 # Rules to configure and make the package. 226.14 compile_rules() 226.15 {
227.1 --- a/libnl/receipt Sun May 30 10:18:33 2021 +0100 227.2 +++ b/libnl/receipt Tue Jun 08 08:46:05 2021 +0000 227.3 @@ -18,6 +18,12 @@ 227.4 # Cross compile needs host flex 227.5 BUILD_DEPENDS="flex" 227.6 227.7 +current_version() 227.8 +{ 227.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 227.10 + sed '/archive.*tar/!d;s|.*/libnl\(.*\).tar.*|\1|;s|_|.|g;q' 227.11 +} 227.12 + 227.13 # Rules to configure and make the package. 227.14 compile_rules() 227.15 {
228.1 --- a/libpifacedigital/receipt Sun May 30 10:18:33 2021 +0100 228.2 +++ b/libpifacedigital/receipt Tue Jun 08 08:46:05 2021 +0000 228.3 @@ -15,6 +15,12 @@ 228.4 DEPENDS="i2c-tools libmcp23s17" 228.5 BUILD_DEPENDS="libmcp23s17" 228.6 228.7 +current_version() 228.8 +{ 228.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 228.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 228.11 +} 228.12 + 228.13 # Rules to configure and make the package. 228.14 compile_rules() 228.15 {
229.1 --- a/libpqxx/receipt Sun May 30 10:18:33 2021 +0100 229.2 +++ b/libpqxx/receipt Tue Jun 08 08:46:05 2021 +0000 229.3 @@ -13,6 +13,12 @@ 229.4 BUILD_DEPENDS="gcc49 postgresql-dev" 229.5 DEPENDS="pkg-config" 229.6 229.7 +current_version() 229.8 +{ 229.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 229.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 229.11 +} 229.12 + 229.13 # Rules to configure and make the package. 229.14 compile_rules() 229.15 {
230.1 --- a/libqcow/receipt Sun May 30 10:18:33 2021 +0100 230.2 +++ b/libqcow/receipt Tue Jun 08 08:46:05 2021 +0000 230.3 @@ -14,6 +14,12 @@ 230.4 DEPENDS="fuse libcrypto" 230.5 BUILD_DEPENDS="fuse-dev openssl-dev" 230.6 230.7 +current_version() 230.8 +{ 230.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 230.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 230.11 +} 230.12 + 230.13 # Rules to configure and make the package. 230.14 compile_rules() 230.15 {
231.1 --- a/libqtxdg/receipt Sun May 30 10:18:33 2021 +0100 231.2 +++ b/libqtxdg/receipt Tue Jun 08 08:46:05 2021 +0000 231.3 @@ -14,6 +14,12 @@ 231.4 DEPENDS="libQtGui libQtXml libQtMimeTypes" 231.5 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake libQtMimeTypes-dev" 231.6 231.7 +current_version() 231.8 +{ 231.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 231.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 231.11 +} 231.12 + 231.13 # Rules to configure and make the package. 231.14 compile_rules() 231.15 {
232.1 --- a/libsearpc/receipt Sun May 30 10:18:33 2021 +0100 232.2 +++ b/libsearpc/receipt Tue Jun 08 08:46:05 2021 +0000 232.3 @@ -17,6 +17,12 @@ 232.4 232.5 HOST_ARCH="i486 arm" 232.6 232.7 +current_version() 232.8 +{ 232.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 232.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 232.11 +} 232.12 + 232.13 # Rules to configure and make the package. 232.14 compile_rules() 232.15 {
233.1 --- a/libsixel/receipt Sun May 30 10:18:33 2021 +0100 233.2 +++ b/libsixel/receipt Tue Jun 08 08:46:05 2021 +0000 233.3 @@ -13,6 +13,12 @@ 233.4 233.5 BUILD_DEPENDS="python" 233.6 233.7 +current_version() 233.8 +{ 233.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 233.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 233.11 +} 233.12 + 233.13 # Rules to configure and make the package. 233.14 compile_rules() 233.15 {
234.1 --- a/libspiro/receipt Sun May 30 10:18:33 2021 +0100 234.2 +++ b/libspiro/receipt Tue Jun 08 08:46:05 2021 +0000 234.3 @@ -14,6 +14,12 @@ 234.4 DEPENDS="" 234.5 BUILD_DEPENDS="autoconf automake bash cacerts libtool" 234.6 234.7 +current_version() 234.8 +{ 234.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 234.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 234.11 +} 234.12 + 234.13 # Rules to configure and make the package. 234.14 compile_rules() 234.15 {
235.1 --- a/libsysstat/receipt Sun May 30 10:18:33 2021 +0100 235.2 +++ b/libsysstat/receipt Tue Jun 08 08:46:05 2021 +0000 235.3 @@ -14,6 +14,12 @@ 235.4 DEPENDS="libQtCore libQtGui" 235.5 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake" 235.6 235.7 +current_version() 235.8 +{ 235.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 235.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 235.11 +} 235.12 + 235.13 # Rules to configure and make the package. 235.14 compile_rules() 235.15 {
236.1 --- a/libtorrent-rasterbar/receipt Sun May 30 10:18:33 2021 +0100 236.2 +++ b/libtorrent-rasterbar/receipt Tue Jun 08 08:46:05 2021 +0000 236.3 @@ -18,6 +18,12 @@ 236.4 libboost-math-dev libboost-python-dev libboost-thread-dev 236.5 libtool openssl-dev python-dev zlib-dev" 236.6 236.7 +current_version() 236.8 +{ 236.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 236.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 236.11 +} 236.12 + 236.13 # Rules to configure and make the package. 236.14 compile_rules() 236.15 {
237.1 --- a/libtorrent/receipt Sun May 30 10:18:33 2021 +0100 237.2 +++ b/libtorrent/receipt Tue Jun 08 08:46:05 2021 +0000 237.3 @@ -17,6 +17,12 @@ 237.4 CROSS_BUGS="bug: can not run test program" 237.5 #HOST_ARCH="i486 arm" 237.6 237.7 +current_version() 237.8 +{ 237.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 237.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 237.11 +} 237.12 + 237.13 # Rules to configure and make the package. 237.14 compile_rules() 237.15 {
238.1 --- a/libuninameslist/receipt Sun May 30 10:18:33 2021 +0100 238.2 +++ b/libuninameslist/receipt Tue Jun 08 08:46:05 2021 +0000 238.3 @@ -14,6 +14,12 @@ 238.4 DEPENDS="" 238.5 BUILD_DEPENDS="autoconf automake bash cacerts libtool" 238.6 238.7 +current_version() 238.8 +{ 238.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 238.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 238.11 +} 238.12 + 238.13 # Rules to configure and make the package. 238.14 compile_rules() 238.15 {
239.1 --- a/libusb-compat/receipt Sun May 30 10:18:33 2021 +0100 239.2 +++ b/libusb-compat/receipt Tue Jun 08 08:46:05 2021 +0000 239.3 @@ -16,6 +16,12 @@ 239.4 239.5 HOST_ARCH="i486 arm" 239.6 239.7 +current_version() 239.8 +{ 239.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 239.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 239.11 +} 239.12 + 239.13 # Rules to configure and make the package. 239.14 compile_rules() 239.15 {
240.1 --- a/libusb/receipt Sun May 30 10:18:33 2021 +0100 240.2 +++ b/libusb/receipt Tue Jun 08 08:46:05 2021 +0000 240.3 @@ -16,6 +16,12 @@ 240.4 240.5 HOST_ARCH="i486 arm" 240.6 240.7 +current_version() 240.8 +{ 240.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 240.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 240.11 +} 240.12 + 240.13 # Rules to configure and make the package. 240.14 compile_rules() 240.15 {
241.1 --- a/libvips/receipt Sun May 30 10:18:33 2021 +0100 241.2 +++ b/libvips/receipt Tue Jun 08 08:46:05 2021 +0000 241.3 @@ -19,6 +19,12 @@ 241.4 lcms-dev libexif-dev libpng-dev libtool pkg-config swig 241.5 tiff-dev zlib-dev" 241.6 241.7 +current_version() 241.8 +{ 241.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 241.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 241.11 +} 241.12 + 241.13 # Rules to configure and make the package. 241.14 compile_rules() 241.15 {
242.1 --- a/libvpx/receipt Sun May 30 10:18:33 2021 +0100 242.2 +++ b/libvpx/receipt Tue Jun 08 08:46:05 2021 +0000 242.3 @@ -14,6 +14,12 @@ 242.4 DEPENDS="glibc-base" 242.5 BUILD_DEPENDS="coreutils-file-format diffutils yasm" 242.6 242.7 +current_version() 242.8 +{ 242.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 242.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 242.11 +} 242.12 + 242.13 # Rules to configure and make the package. 242.14 compile_rules() 242.15 {
243.1 --- a/libwebp/receipt Sun May 30 10:18:33 2021 +0100 243.2 +++ b/libwebp/receipt Tue Jun 08 08:46:05 2021 +0000 243.3 @@ -16,6 +16,12 @@ 243.4 243.5 HOST_ARCH="i486 arm" 243.6 243.7 +current_version() 243.8 +{ 243.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 243.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 243.11 +} 243.12 + 243.13 # Rules to configure and make the package. 243.14 compile_rules() 243.15 {
244.1 --- a/libxdg-basedir/receipt Sun May 30 10:18:33 2021 +0100 244.2 +++ b/libxdg-basedir/receipt Tue Jun 08 08:46:05 2021 +0000 244.3 @@ -13,6 +13,12 @@ 244.4 244.5 BUILD_DEPENDS="wget autoconf automake libtool" 244.6 244.7 +current_version() 244.8 +{ 244.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 244.10 + sed '/archive.*tar/!d;s|.*/libxdg-basedir-\(.*\).tar.*|\1|;q' 244.11 +} 244.12 + 244.13 # Rules to configure and make the package. 244.14 compile_rules() 244.15 {
245.1 --- a/lincity-ng/receipt Sun May 30 10:18:33 2021 +0100 245.2 +++ b/lincity-ng/receipt Tue Jun 08 08:46:05 2021 +0000 245.3 @@ -17,6 +17,12 @@ 245.4 libsdl-mixer-dev libsdl-ttf libsdl-ttf-dev libxml2-dev 245.5 mesa-dev physfs-dev pkg-config" 245.6 245.7 +current_version() 245.8 +{ 245.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 245.10 + sed '/archive.*tar/!d;s|.*/lincity-ng-\(.*\)-beta.tar.*|\1|;q' 245.11 +} 245.12 + 245.13 # Rules to configure and make the package. 245.14 compile_rules() 245.15 {
246.1 --- a/linux64-open-vm-tools-kernel/receipt Sun May 30 10:18:33 2021 +0100 246.2 +++ b/linux64-open-vm-tools-kernel/receipt Tue Jun 08 08:46:05 2021 +0000 246.3 @@ -19,6 +19,12 @@ 246.4 246.5 AUFS_NOT_RAMFS="uclibc-cross-compiler-x86_64 is not compatible with aufs+tmpfs 8(" 246.6 246.7 +current_version() 246.8 +{ 246.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 246.10 + sed '/release.*tar/!d;s|.*/open-vm-tools-\(.*\).tar.*|\1|;q' 246.11 +} 246.12 + 246.13 # Rules to configure and make the package. 246.14 compile_rules() 246.15 {
247.1 --- a/littlefs-fuse/receipt Sun May 30 10:18:33 2021 +0100 247.2 +++ b/littlefs-fuse/receipt Tue Jun 08 08:46:05 2021 +0000 247.3 @@ -14,6 +14,12 @@ 247.4 DEPENDS="fuse" 247.5 BUILD_DEPENDS="fuse-dev" 247.6 247.7 +current_version() 247.8 +{ 247.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 247.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 247.11 +} 247.12 + 247.13 # Rules to configure and make the package. 247.14 compile_rules() 247.15 {
248.1 --- a/lm-sensors/receipt Sun May 30 10:18:33 2021 +0100 248.2 +++ b/lm-sensors/receipt Tue Jun 08 08:46:05 2021 +0000 248.3 @@ -15,6 +15,12 @@ 248.4 DEPENDS="linux-hwmon perl" 248.5 BUILD_DEPENDS="bison flex rrdtool-dev" 248.6 248.7 +current_version() 248.8 +{ 248.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 248.10 + sed '/archive.*tar/!d;s|.*/V\(.*\).tar.*|\1|;s|-|.|g;q' 248.11 +} 248.12 + 248.13 # Rules to configure and make the package. 248.14 compile_rules() 248.15 {
249.1 --- a/locustio/receipt Sun May 30 10:18:33 2021 +0100 249.2 +++ b/locustio/receipt Tue Jun 08 08:46:05 2021 +0000 249.3 @@ -14,6 +14,12 @@ 249.4 DEPENDS="python" 249.5 BUILD_DEPENDS="python-setuptools" 249.6 249.7 +current_version() 249.8 +{ 249.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 249.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 249.11 +} 249.12 + 249.13 # Rules to configure and make the package. 249.14 compile_rules() 249.15 {
250.1 --- a/loderunner/receipt Sun May 30 10:18:33 2021 +0100 250.2 +++ b/loderunner/receipt Tue Jun 08 08:46:05 2021 +0000 250.3 @@ -12,6 +12,12 @@ 250.4 SUGGESTED="browser-html5" 250.5 HOST_ARCH="any" 250.6 250.7 +current_version() 250.8 +{ 250.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 250.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 250.11 +} 250.12 + 250.13 # Rules to gen a SliTaz package suitable for Tazpkg. 250.14 genpkg_rules() 250.15 {
251.1 --- a/logfence/receipt Sun May 30 10:18:33 2021 +0100 251.2 +++ b/logfence/receipt Tue Jun 08 08:46:05 2021 +0000 251.3 @@ -13,6 +13,12 @@ 251.4 DEPENDS="fuse" 251.5 BUILD_DEPENDS="fuse-dev" 251.6 251.7 +current_version() 251.8 +{ 251.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 251.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 251.11 +} 251.12 + 251.13 # Rules to configure and make the package. 251.14 compile_rules() 251.15 {
252.1 --- a/logrotate/receipt Sun May 30 10:18:33 2021 +0100 252.2 +++ b/logrotate/receipt Tue Jun 08 08:46:05 2021 +0000 252.3 @@ -16,6 +16,12 @@ 252.4 252.5 CONFIG_FILES="/etc/logrotate.conf" 252.6 252.7 +current_version() 252.8 +{ 252.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 252.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 252.11 +} 252.12 + 252.13 # Rules to configure and make the package. 252.14 compile_rules() 252.15 {
253.1 --- a/lpcnet/receipt Sun May 30 10:18:33 2021 +0100 253.2 +++ b/lpcnet/receipt Tue Jun 08 08:46:05 2021 +0000 253.3 @@ -12,6 +12,12 @@ 253.4 253.5 BUILD_DEPENDS="automake libtool gcc63" 253.6 253.7 +current_version() 253.8 +{ 253.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 253.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 253.11 +} 253.12 + 253.13 # Rules to configure and make the package. 253.14 compile_rules() 253.15 {
254.1 --- a/lsof/receipt Sun May 30 10:18:33 2021 +0100 254.2 +++ b/lsof/receipt Tue Jun 08 08:46:05 2021 +0000 254.3 @@ -11,6 +11,12 @@ 254.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 254.5 WGET_URL="${WEB_SITE}archive/$VERSION.tar.gz" 254.6 254.7 +current_version() 254.8 +{ 254.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 254.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 254.11 +} 254.12 + 254.13 # Rules to configure and make the package. 254.14 compile_rules() 254.15 {
255.1 --- a/lstm-compress/receipt Sun May 30 10:18:33 2021 +0100 255.2 +++ b/lstm-compress/receipt Tue Jun 08 08:46:05 2021 +0000 255.3 @@ -13,6 +13,12 @@ 255.4 DEPENDS="gcc83-lib-base" 255.5 BUILD_DEPENDS="gcc83" 255.6 255.7 +current_version() 255.8 +{ 255.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 255.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 255.11 +} 255.12 + 255.13 # Rules to configure and make the package. 255.14 compile_rules() 255.15 {
256.1 --- a/lua-ffi/receipt Sun May 30 10:18:33 2021 +0100 256.2 +++ b/lua-ffi/receipt Tue Jun 08 08:46:05 2021 +0000 256.3 @@ -16,6 +16,12 @@ 256.4 256.5 #HOST_ARCH="i486 arm" 256.6 256.7 +current_version() 256.8 +{ 256.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 256.10 + sed '/archive.*tar/!d;s|.*/\(.*\)-work1.tar.*|\1|;q' 256.11 +} 256.12 + 256.13 # Rules to configure and make the package. 256.14 compile_rules() 256.15 {
257.1 --- a/luksus/receipt Sun May 30 10:18:33 2021 +0100 257.2 +++ b/luksus/receipt Tue Jun 08 08:46:05 2021 +0000 257.3 @@ -13,6 +13,12 @@ 257.4 DEPENDS="bash dialog cryptsetup tcplay gnupg openssl" 257.5 BUILD_DEPENDS="wget" 257.6 257.7 +current_version() 257.8 +{ 257.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 257.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 257.11 +} 257.12 + 257.13 # Rules to gen a SliTaz package suitable for Tazpkg. 257.14 genpkg_rules() 257.15 {
258.1 --- a/lximage-qt/receipt Sun May 30 10:18:33 2021 +0100 258.2 +++ b/lximage-qt/receipt Tue Jun 08 08:46:05 2021 +0000 258.3 @@ -17,6 +17,12 @@ 258.4 xorg-libX11-dev xorg-libXfixes-dev xorg-xproto pcmanfm-qt-dev menu-cache-dev \ 258.5 libqtxdg-dev" 258.6 258.7 +current_version() 258.8 +{ 258.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 258.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 258.11 +} 258.12 + 258.13 # Rules to configure and make the package. 258.14 compile_rules() 258.15 {
259.1 --- a/lxqt-about/receipt Sun May 30 10:18:33 2021 +0100 259.2 +++ b/lxqt-about/receipt Tue Jun 08 08:46:05 2021 +0000 259.3 @@ -14,6 +14,12 @@ 259.4 DEPENDS="libQtCore libQtGui liblxqt" 259.5 BUILD_DEPENDS="wget cacerts cmake liblxqt-dev Qt4-dev qmake grep libqtxdg-dev" 259.6 259.7 +current_version() 259.8 +{ 259.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 259.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 259.11 +} 259.12 + 259.13 # Rules to configure and make the package. 259.14 compile_rules() 259.15 {
260.1 --- a/lxqt-admin/receipt Sun May 30 10:18:33 2021 +0100 260.2 +++ b/lxqt-admin/receipt Tue Jun 08 08:46:05 2021 +0000 260.3 @@ -15,6 +15,12 @@ 260.4 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liboobs-dev liblxqt-dev \ 260.5 libqtxdg-dev" 260.6 260.7 +current_version() 260.8 +{ 260.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 260.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 260.11 +} 260.12 + 260.13 # Rules to configure and make the package. 260.14 compile_rules() 260.15 {
261.1 --- a/lxqt-config/receipt Sun May 30 10:18:33 2021 +0100 261.2 +++ b/lxqt-config/receipt Tue Jun 08 08:46:05 2021 +0000 261.3 @@ -16,6 +16,12 @@ 261.4 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liblxqt-dev libqtxdg-dev \ 261.5 xorg-libX11-dev zlib-dev xorg-libXcursor-dev grep" 261.6 261.7 +current_version() 261.8 +{ 261.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 261.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 261.11 +} 261.12 + 261.13 # Rules to configure and make the package. 261.14 compile_rules() 261.15 {
262.1 --- a/lxqt-globalkeys/receipt Sun May 30 10:18:33 2021 +0100 262.2 +++ b/lxqt-globalkeys/receipt Tue Jun 08 08:46:05 2021 +0000 262.3 @@ -15,6 +15,12 @@ 262.4 BUILD_DEPENDS="wget cacerts cmake liblxqt-dev Qt4-dev qmake grep xorg-xproto \ 262.5 xorg-libX11-dev liblxqt-dev libqtxdg-dev libQtMimeTypes-dev sdft" 262.6 262.7 +current_version() 262.8 +{ 262.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 262.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 262.11 +} 262.12 + 262.13 # Rules to configure and make the package. 262.14 compile_rules() 262.15 {
263.1 --- a/lxqt-notificationd/receipt Sun May 30 10:18:33 2021 +0100 263.2 +++ b/lxqt-notificationd/receipt Tue Jun 08 08:46:05 2021 +0000 263.3 @@ -15,6 +15,12 @@ 263.4 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake libqtxdg-dev liblxqt-dev \ 263.5 xorg-libX11-dev grep libQtMimeTypes-dev sdft" 263.6 263.7 +current_version() 263.8 +{ 263.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 263.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 263.11 +} 263.12 + 263.13 # Rules to configure and make the package. 263.14 compile_rules() 263.15 {
264.1 --- a/lxqt-openssh-askpass/receipt Sun May 30 10:18:33 2021 +0100 264.2 +++ b/lxqt-openssh-askpass/receipt Tue Jun 08 08:46:05 2021 +0000 264.3 @@ -14,6 +14,12 @@ 264.4 DEPENDS="libQtGui" 264.5 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liblxqt-dev libqtxdg-dev" 264.6 264.7 +current_version() 264.8 +{ 264.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 264.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 264.11 +} 264.12 + 264.13 # Rules to configure and make the package. 264.14 compile_rules() 264.15 {
265.1 --- a/lxqt-panel/receipt Sun May 30 10:18:33 2021 +0100 265.2 +++ b/lxqt-panel/receipt Tue Jun 08 08:46:05 2021 +0000 265.3 @@ -22,6 +22,12 @@ 265.4 lm-sensors-dev alsa-lib-dev libsysstat-dev icu-dev grep glib-dev \ 265.5 libQtMimeTypes-dev" 265.6 265.7 +current_version() 265.8 +{ 265.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 265.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 265.11 +} 265.12 + 265.13 # Rules to configure and make the package. 265.14 compile_rules() 265.15 {
266.1 --- a/lxqt-policykit/receipt Sun May 30 10:18:33 2021 +0100 266.2 +++ b/lxqt-policykit/receipt Tue Jun 08 08:46:05 2021 +0000 266.3 @@ -16,6 +16,12 @@ 266.4 BUILD_DEPENDS="wget cacerts cmake polkit-qt-dev liblxqt-dev polkit-dev Qt4-dev \ 266.5 qmake libqtxdg-dev" 266.6 266.7 +current_version() 266.8 +{ 266.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 266.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 266.11 +} 266.12 + 266.13 # Rules to configure and make the package. 266.14 compile_rules() 266.15 {
267.1 --- a/lxqt-powermanagement/receipt Sun May 30 10:18:33 2021 +0100 267.2 +++ b/lxqt-powermanagement/receipt Tue Jun 08 08:46:05 2021 +0000 267.3 @@ -16,6 +16,12 @@ 267.4 BUILD_DEPENDS="wget cacerts cmake libqtxdg-dev Qt4-dev qmake liblxqt-dev \ 267.5 libxcb-dev xorg-libX11-dev" 267.6 267.7 +current_version() 267.8 +{ 267.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 267.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 267.11 +} 267.12 + 267.13 # Rules to configure and make the package. 267.14 compile_rules() 267.15 {
268.1 --- a/lxqt-qtplugin/receipt Sun May 30 10:18:33 2021 +0100 268.2 +++ b/lxqt-qtplugin/receipt Tue Jun 08 08:46:05 2021 +0000 268.3 @@ -14,6 +14,12 @@ 268.4 DEPENDS="libQtCore libQtGui" 268.5 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liblxqt-dev libqtxdg-dev" 268.6 268.7 +current_version() 268.8 +{ 268.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 268.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 268.11 +} 268.12 + 268.13 # Rules to configure and make the package. 268.14 compile_rules() 268.15 {
269.1 --- a/lxqt-runner/receipt Sun May 30 10:18:33 2021 +0100 269.2 +++ b/lxqt-runner/receipt Tue Jun 08 08:46:05 2021 +0000 269.3 @@ -16,6 +16,12 @@ 269.4 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake liblxqt-dev libqtxdg-dev \ 269.5 lxqt-globalkeys-dev menu-cache-dev xorg-libX11-dev" 269.6 269.7 +current_version() 269.8 +{ 269.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 269.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 269.11 +} 269.12 + 269.13 # Rules to configure and make the package. 269.14 compile_rules() 269.15 {
270.1 --- a/lxqt-session/receipt Sun May 30 10:18:33 2021 +0100 270.2 +++ b/lxqt-session/receipt Tue Jun 08 08:46:05 2021 +0000 270.3 @@ -15,6 +15,12 @@ 270.4 BUILD_DEPENDS="wget cacerts cmake liblxqt-dev Qt4-dev qmake xorg-libX11-dev \ 270.5 libqtxdg-dev grep" 270.6 270.7 +current_version() 270.8 +{ 270.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 270.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 270.11 +} 270.12 + 270.13 # Rules to configure and make the package. 270.14 compile_rules() 270.15 {
271.1 --- a/lz5/receipt Sun May 30 10:18:33 2021 +0100 271.2 +++ b/lz5/receipt Tue Jun 08 08:46:05 2021 +0000 271.3 @@ -12,6 +12,12 @@ 271.4 271.5 BUILD_DEPENDS="pkg-config" 271.6 271.7 +current_version() 271.8 +{ 271.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 271.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 271.11 +} 271.12 + 271.13 # Rules to configure and make the package. 271.14 compile_rules() 271.15 {
272.1 --- a/lzfse/receipt Sun May 30 10:18:33 2021 +0100 272.2 +++ b/lzfse/receipt Tue Jun 08 08:46:05 2021 +0000 272.3 @@ -11,6 +11,12 @@ 272.4 WGET_URL="$WEB_SITE/archive/$TARBALL" 272.5 TAGS="compression" 272.6 272.7 +current_version() 272.8 +{ 272.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 272.10 + sed '/archive.*tar/!d;s|.*/lzfse-\(.*\).tar.*|\1|;q' 272.11 +} 272.12 + 272.13 # Rules to configure and make the package. 272.14 compile_rules() 272.15 {
273.1 --- a/lzsa/receipt Sun May 30 10:18:33 2021 +0100 273.2 +++ b/lzsa/receipt Tue Jun 08 08:46:05 2021 +0000 273.3 @@ -11,6 +11,12 @@ 273.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 273.5 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" 273.6 273.7 +current_version() 273.8 +{ 273.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 273.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 273.11 +} 273.12 + 273.13 # Rules to configure and make the package. 273.14 compile_rules() 273.15 {
274.1 --- a/macchanger/receipt Sun May 30 10:18:33 2021 +0100 274.2 +++ b/macchanger/receipt Tue Jun 08 08:46:05 2021 +0000 274.3 @@ -11,6 +11,12 @@ 274.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 274.5 WGET_URL="https://github.com/alobbs/$PACKAGE/releases/download/$VERSION/$TARBALL" 274.6 274.7 +current_version() 274.8 +{ 274.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 274.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 274.11 +} 274.12 + 274.13 # Rules to configure and make the package. 274.14 compile_rules() 274.15 {
275.1 --- a/magicrescue/receipt Sun May 30 10:18:33 2021 +0100 275.2 +++ b/magicrescue/receipt Tue Jun 08 08:46:05 2021 +0000 275.3 @@ -13,6 +13,12 @@ 275.4 275.5 DEPENDS="perl" 275.6 275.7 +current_version() 275.8 +{ 275.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 275.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 275.11 +} 275.12 + 275.13 # Rules to configure and make the package. 275.14 compile_rules() 275.15 {
276.1 --- a/makeself/receipt Sun May 30 10:18:33 2021 +0100 276.2 +++ b/makeself/receipt Tue Jun 08 08:46:05 2021 +0000 276.3 @@ -11,6 +11,12 @@ 276.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 276.5 WGET_URL="https://github.com/megastep/$PACKAGE/archive/release-$VERSION.tar.gz" 276.6 276.7 +current_version() 276.8 +{ 276.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 276.10 + sed '/archive.*tar/!d;/release-/!d;s|.*/release-\(.*\).tar.*|\1|;q' 276.11 +} 276.12 + 276.13 # Rules to configure and make the package. 276.14 compile_rules() 276.15 {
277.1 --- a/man2html/receipt Sun May 30 10:18:33 2021 +0100 277.2 +++ b/man2html/receipt Tue Jun 08 08:46:05 2021 +0000 277.3 @@ -13,6 +13,12 @@ 277.4 DEPENDS="glib" 277.5 BUILD_DEPENDS="glib-dev" 277.6 277.7 +current_version() 277.8 +{ 277.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 277.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 277.11 +} 277.12 + 277.13 # Rules to configure and make the package. 277.14 compile_rules() 277.15 {
278.1 --- a/marco/receipt Sun May 30 10:18:33 2021 +0100 278.2 +++ b/marco/receipt Tue Jun 08 08:46:05 2021 +0000 278.3 @@ -17,6 +17,12 @@ 278.4 xorg-libICE-dev xorg-libSM-dev xorg-libXt-dev startup-notification-dev \ 278.5 util-linux-uuid-dev zenity xcb-util-dev" 278.6 278.7 +current_version() 278.8 +{ 278.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 278.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 278.11 +} 278.12 + 278.13 # Rules to configure and make the package. 278.14 compile_rules() 278.15 {
279.1 --- a/mate-common/receipt Sun May 30 10:18:33 2021 +0100 279.2 +++ b/mate-common/receipt Tue Jun 08 08:46:05 2021 +0000 279.3 @@ -13,6 +13,12 @@ 279.4 DEPENDS="" 279.5 BUILD_DEPENDS="wget cacerts autoconf automake" 279.6 279.7 +current_version() 279.8 +{ 279.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 279.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 279.11 +} 279.12 + 279.13 # Rules to configure and make the package. 279.14 compile_rules() 279.15 {
280.1 --- a/mate-control-center/receipt Sun May 30 10:18:33 2021 +0100 280.2 +++ b/mate-control-center/receipt Tue Jun 08 08:46:05 2021 +0000 280.3 @@ -19,6 +19,12 @@ 280.4 yelp-tools xorg-libXss-dev xorg-libXt-dev startup-notification-dev \ 280.5 util-linux-uuid-dev libcanberra-dev desktop-file-utils xcb-util-dev libcroco-dev" 280.6 280.7 +current_version() 280.8 +{ 280.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 280.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 280.11 +} 280.12 + 280.13 # Rules to configure and make the package. 280.14 compile_rules() 280.15 {
281.1 --- a/mate-desktop/receipt Sun May 30 10:18:33 2021 +0100 281.2 +++ b/mate-desktop/receipt Tue Jun 08 08:46:05 2021 +0000 281.3 @@ -14,6 +14,12 @@ 281.4 BUILD_DEPENDS="wget cacerts autoconf automake dconf-dev libtool itstool \ 281.5 mate-common-dev gtk-doc gtk+-dev gdk-pixbuf-dev yelp-tools harfbuzz-dev" 281.6 281.7 +current_version() 281.8 +{ 281.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 281.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 281.11 +} 281.12 + 281.13 # Rules to configure and make the package. 281.14 compile_rules() 281.15 {
282.1 --- a/mate-icon-theme/receipt Sun May 30 10:18:33 2021 +0100 282.2 +++ b/mate-icon-theme/receipt Tue Jun 08 08:46:05 2021 +0000 282.3 @@ -13,6 +13,12 @@ 282.4 DEPENDS="" 282.5 BUILD_DEPENDS="wget cacerts autoconf automake mate-common-dev icon-naming-utils" 282.6 282.7 +current_version() 282.8 +{ 282.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 282.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 282.11 +} 282.12 + 282.13 # Rules to configure and make the package. 282.14 compile_rules() 282.15 {
283.1 --- a/mate-menus/receipt Sun May 30 10:18:33 2021 +0100 283.2 +++ b/mate-menus/receipt Tue Jun 08 08:46:05 2021 +0000 283.3 @@ -14,6 +14,12 @@ 283.4 BUILD_DEPENDS="wget cacerts autoconf automake gobject-introspection-dev \ 283.5 libtool itstool mate-common-dev python-dev" 283.6 283.7 +current_version() 283.8 +{ 283.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 283.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 283.11 +} 283.12 + 283.13 # Rules to configure and make the package. 283.14 compile_rules() 283.15 {
284.1 --- a/mate-panel/receipt Sun May 30 10:18:33 2021 +0100 284.2 +++ b/mate-panel/receipt Tue Jun 08 08:46:05 2021 +0000 284.3 @@ -18,6 +18,12 @@ 284.4 libcanberra-dev libwnck-dev librsvg-dev util-linux-uuid-dev \ 284.5 libmateweather-dev libsoup-dev sqlite-dev libcroco-dev" 284.6 284.7 +current_version() 284.8 +{ 284.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 284.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 284.11 +} 284.12 + 284.13 # Rules to configure and make the package. 284.14 compile_rules() 284.15 {
285.1 --- a/mate-polkit/receipt Sun May 30 10:18:33 2021 +0100 285.2 +++ b/mate-polkit/receipt Tue Jun 08 08:46:05 2021 +0000 285.3 @@ -15,6 +15,12 @@ 285.4 gtk+-dev gtk-doc polkit-dev gobject-introspection-dev mate-common-dev \ 285.5 expat-dev" 285.6 285.7 +current_version() 285.8 +{ 285.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 285.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 285.11 +} 285.12 + 285.13 # Rules to configure and make the package. 285.14 compile_rules() 285.15 {
286.1 --- a/mate-screensaver/receipt Sun May 30 10:18:33 2021 +0100 286.2 +++ b/mate-screensaver/receipt Tue Jun 08 08:46:05 2021 +0000 286.3 @@ -15,6 +15,12 @@ 286.4 mate-common-dev mate-desktop-dev mate-menus-dev dbus-glib-dev \ 286.5 dconf-dev gtk+-dev xorg-libXScrnSaver-dev util-linux-uuid-dev" 286.6 286.7 +current_version() 286.8 +{ 286.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 286.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 286.11 +} 286.12 + 286.13 # Rules to configure and make the package. 286.14 compile_rules() 286.15 {
287.1 --- a/mate-settings-daemon/receipt Sun May 30 10:18:33 2021 +0100 287.2 +++ b/mate-settings-daemon/receipt Tue Jun 08 08:46:05 2021 +0000 287.3 @@ -17,6 +17,12 @@ 287.4 libcanberra-dev libnotify-dev xorg-libXt-dev nss-dev polkit-dev \ 287.5 util-linux-uuid-dev" 287.6 287.7 +current_version() 287.8 +{ 287.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 287.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 287.11 +} 287.12 + 287.13 # Rules to configure and make the package. 287.14 compile_rules() 287.15 {
288.1 --- a/mate-system-monitor/receipt Sun May 30 10:18:33 2021 +0100 288.2 +++ b/mate-system-monitor/receipt Tue Jun 08 08:46:05 2021 +0000 288.3 @@ -15,6 +15,12 @@ 288.4 gtk+-dev gtk-doc dbus-glib-dev glibmm-dev gtkmm-dev libgtop-dev libwnck-dev librsvg-dev \ 288.5 yelp-tools mate-common-dev mate-icon-theme libcroco-dev" 288.6 288.7 +current_version() 288.8 +{ 288.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 288.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 288.11 +} 288.12 + 288.13 # Rules to configure and make the package. 288.14 compile_rules() 288.15 {
289.1 --- a/mate-terminal/receipt Sun May 30 10:18:33 2021 +0100 289.2 +++ b/mate-terminal/receipt Tue Jun 08 08:46:05 2021 +0000 289.3 @@ -15,6 +15,12 @@ 289.4 vte-dev mate-common-dev mate-desktop-dev yelp-tools autoconf automake libtool \ 289.5 itstool harfbuzz-dev" 289.6 289.7 +current_version() 289.8 +{ 289.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 289.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 289.11 +} 289.12 + 289.13 # Rules to configure and make the package. 289.14 compile_rules() 289.15 {
290.1 --- a/mate-themes/receipt Sun May 30 10:18:33 2021 +0100 290.2 +++ b/mate-themes/receipt Tue Jun 08 08:46:05 2021 +0000 290.3 @@ -13,6 +13,12 @@ 290.4 DEPENDS="gtk+ gtk-engines gtk2-engine-murrine librsvg mate-icon-theme" 290.5 BUILD_DEPENDS="autoconf automake gtk+-dev mate-common-dev icon-naming-utils" 290.6 290.7 +current_version() 290.8 +{ 290.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 290.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 290.11 +} 290.12 + 290.13 # Rules to configure and make the package. 290.14 compile_rules() 290.15 {
291.1 --- a/mdp/receipt Sun May 30 10:18:33 2021 +0100 291.2 +++ b/mdp/receipt Tue Jun 08 08:46:05 2021 +0000 291.3 @@ -14,6 +14,12 @@ 291.4 DEPENDS="ncurses" 291.5 BUILD_DEPENDS="ncurses-dev" 291.6 291.7 +current_version() 291.8 +{ 291.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 291.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 291.11 +} 291.12 + 291.13 # Rules to configure and make the package. 291.14 compile_rules() 291.15 {
292.1 --- a/merkaartor/receipt Sun May 30 10:18:33 2021 +0100 292.2 +++ b/merkaartor/receipt Tue Jun 08 08:46:05 2021 +0000 292.3 @@ -15,6 +15,12 @@ 292.4 DEPENDS="gdal proj libQtWebkit libQtSvg libQtXml libpostgresqlclient" 292.5 BUILD_DEPENDS="wget Qt4-dev qmake gdal-dev proj-dev libQtWebkit" 292.6 292.7 +current_version() 292.8 +{ 292.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 292.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 292.11 +} 292.12 + 292.13 # Rules to configure and make the package. 292.14 compile_rules() 292.15 {
293.1 --- a/meson/receipt Sun May 30 10:18:33 2021 +0100 293.2 +++ b/meson/receipt Tue Jun 08 08:46:05 2021 +0000 293.3 @@ -14,6 +14,12 @@ 293.4 DEPENDS="ninja py3k" 293.5 BUILD_DEPENDS="py3k" 293.6 293.7 +current_version() 293.8 +{ 293.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 293.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 293.11 +} 293.12 + 293.13 # Rules to configure and make the package. 293.14 compile_rules() 293.15 {
294.1 --- a/metasploit/receipt Sun May 30 10:18:33 2021 +0100 294.2 +++ b/metasploit/receipt Tue Jun 08 08:46:05 2021 +0000 294.3 @@ -13,6 +13,12 @@ 294.4 294.5 DEPENDS="libpcap ruby" 294.6 294.7 +current_version() 294.8 +{ 294.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 294.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 294.11 +} 294.12 + 294.13 # Rules to gen a SliTaz package suitable for Tazpkg. 294.14 genpkg_rules() 294.15 {
295.1 --- a/micropython/receipt Sun May 30 10:18:33 2021 +0100 295.2 +++ b/micropython/receipt Tue Jun 08 08:46:05 2021 +0000 295.3 @@ -13,6 +13,12 @@ 295.4 DEPENDS="readline libffi" 295.5 BUILD_DEPENDS="wget git readline-dev libffi-dev pkg-config" 295.6 295.7 +current_version() 295.8 +{ 295.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 295.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 295.11 +} 295.12 + 295.13 # Rules to configure and make the package. 295.14 compile_rules() 295.15 {
296.1 --- a/minetest/receipt Sun May 30 10:18:33 2021 +0100 296.2 +++ b/minetest/receipt Tue Jun 08 08:46:05 2021 +0000 296.3 @@ -21,6 +21,12 @@ 296.4 libvorbis-dev luajit-dev mesa-dev openal-dev sqlite-dev \ 296.5 xorg-libXxf86vm-dev" 296.6 296.7 +current_version() 296.8 +{ 296.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 296.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 296.11 +} 296.12 + 296.13 # Rules to configure and make the package. 296.14 compile_rules() 296.15 {
297.1 --- a/miniupnpc/receipt Sun May 30 10:18:33 2021 +0100 297.2 +++ b/miniupnpc/receipt Tue Jun 08 08:46:05 2021 +0000 297.3 @@ -14,6 +14,12 @@ 297.4 DEPENDS="" 297.5 BUILD_DEPENDS="" 297.6 297.7 +current_version() 297.8 +{ 297.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 297.10 + sed '/archive.*tar/!d;/miniupnpc/!d;s|.*/miniupnpc_\(.*\).tar.*|\1|;s|_|.|g;q' 297.11 +} 297.12 + 297.13 # Rules to configure and make the package. 297.14 compile_rules() 297.15 {
298.1 --- a/mlt-python-bindings/receipt Sun May 30 10:18:33 2021 +0100 298.2 +++ b/mlt-python-bindings/receipt Tue Jun 08 08:46:05 2021 +0000 298.3 @@ -15,6 +15,12 @@ 298.4 DEPENDS="python mlt" 298.5 BUILD_DEPENDS="swig python-dev mlt" 298.6 298.7 +current_version() 298.8 +{ 298.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 298.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 298.11 +} 298.12 + 298.13 # Rules to configure and make the package. 298.14 compile_rules() 298.15 {
299.1 --- a/mlt/receipt Sun May 30 10:18:33 2021 +0100 299.2 +++ b/mlt/receipt Tue Jun 08 08:46:05 2021 +0000 299.3 @@ -18,8 +18,13 @@ 299.4 libdv-dev libsamplerate-dev libsdl2-image-dev libxml2-dev \ 299.5 mesa-dev pulseaudio-dev Qt4-dev sox-dev" 299.6 299.7 +current_version() 299.8 +{ 299.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 299.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 299.11 +} 299.12 + 299.13 # Rules to configure and make the package. 299.14 - 299.15 compile_rules() 299.16 { 299.17 export CC=gcc-83
300.1 --- a/mlvpn/receipt Sun May 30 10:18:33 2021 +0100 300.2 +++ b/mlvpn/receipt Tue Jun 08 08:46:05 2021 +0000 300.3 @@ -14,6 +14,12 @@ 300.4 DEPENDS="libpcap libsodium" 300.5 BUILD_DEPENDS="autoconf automake libev-dev libpcap-dev libsodium-dev" 300.6 300.7 +current_version() 300.8 +{ 300.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 300.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 300.11 +} 300.12 + 300.13 # Rules to configure and make the package. 300.14 compile_rules() 300.15 {
301.1 --- a/moosefs/receipt Sun May 30 10:18:33 2021 +0100 301.2 +++ b/moosefs/receipt Tue Jun 08 08:46:05 2021 +0000 301.3 @@ -14,6 +14,12 @@ 301.4 DEPENDS="fuse python zlib" 301.5 BUILD_DEPENDS="fuse-dev pkg-config python zlib-dev" 301.6 301.7 +current_version() 301.8 +{ 301.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 301.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 301.11 +} 301.12 + 301.13 # Rules to configure and make the package. 301.14 compile_rules() 301.15 {
302.1 --- a/motion/receipt Sun May 30 10:18:33 2021 +0100 302.2 +++ b/motion/receipt Tue Jun 08 08:46:05 2021 +0000 302.3 @@ -15,6 +15,12 @@ 302.4 BUILD_DEPENDS="automake ffmpeg-dev jpeg-dev libmicrohttpd-dev libpthread-stubs \ 302.5 libtool libv4l-dev" 302.6 302.7 +current_version() 302.8 +{ 302.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 302.10 + sed '/archive.*tar/!d;s|.*/release-\(.*\).tar.*|\1|;q' 302.11 +} 302.12 + 302.13 # Rules to configure and make the package. 302.14 compile_rules() 302.15 {
303.1 --- a/mozo/receipt Sun May 30 10:18:33 2021 +0100 303.2 +++ b/mozo/receipt Tue Jun 08 08:46:05 2021 +0000 303.3 @@ -15,6 +15,12 @@ 303.4 BUILD_DEPENDS="wget gtk+-dev autoconf automake mate-common-dev \ 303.5 mate-desktop-dev mate-menus-dev pygobject-dev" 303.6 303.7 +current_version() 303.8 +{ 303.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 303.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 303.11 +} 303.12 + 303.13 # Rules to configure and make the package. 303.14 compile_rules() 303.15 {
304.1 --- a/mpl123/receipt Sun May 30 10:18:33 2021 +0100 304.2 +++ b/mpl123/receipt Tue Jun 08 08:46:05 2021 +0000 304.3 @@ -14,6 +14,12 @@ 304.4 DEPENDS="dialog mpg123" 304.5 BUILD_DEPENDS="wget" 304.6 304.7 +current_version() 304.8 +{ 304.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 304.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 304.11 +} 304.12 + 304.13 # Rules to configure and make the package. 304.14 compile_rules() 304.15 {
305.1 --- a/mps-youtube/receipt Sun May 30 10:18:33 2021 +0100 305.2 +++ b/mps-youtube/receipt Tue Jun 08 08:46:05 2021 +0000 305.3 @@ -14,6 +14,12 @@ 305.4 DEPENDS="mplayer py3k" 305.5 BUILD_DEPENDS="py3k python-setuptools" 305.6 305.7 +current_version() 305.8 +{ 305.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 305.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 305.11 +} 305.12 + 305.13 # Rules to configure and make the package. 305.14 compile_rules() 305.15 {
306.1 --- a/mpv/receipt Sun May 30 10:18:33 2021 +0100 306.2 +++ b/mpv/receipt Tue Jun 08 08:46:05 2021 +0000 306.3 @@ -30,6 +30,12 @@ 306.4 xorg-libXinerama-dev xorg-libXrandr-dev xorg-libXrender-dev \ 306.5 xorg-libXv-dev xorg-libXxf86vm-dev yasm zlib-dev" 306.6 306.7 +current_version() 306.8 +{ 306.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 306.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 306.11 +} 306.12 + 306.13 # Rules to configure and make the package. 306.14 compile_rules() 306.15 {
307.1 --- a/msgpack/receipt Sun May 30 10:18:33 2021 +0100 307.2 +++ b/msgpack/receipt Tue Jun 08 08:46:05 2021 +0000 307.3 @@ -13,6 +13,12 @@ 307.4 307.5 BUILD_DEPENDS="cmake zlib" 307.6 307.7 +current_version() 307.8 +{ 307.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 307.10 + sed '/archive.*tar/!d;s|.*/cpp-\(.*\).tar.*|\1|;q' 307.11 +} 307.12 + 307.13 # Rules to configure and make the package. 307.14 compile_rules() 307.15 {
308.1 --- a/mspdebug/receipt Sun May 30 10:18:33 2021 +0100 308.2 +++ b/mspdebug/receipt Tue Jun 08 08:46:05 2021 +0000 308.3 @@ -14,6 +14,12 @@ 308.4 DEPENDS="libusb-compat" 308.5 BUILD_DEPENDS="libusb-compat-dev" 308.6 308.7 +current_version() 308.8 +{ 308.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 308.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 308.11 +} 308.12 + 308.13 # Rules to configure and make the package. 308.14 compile_rules() 308.15 {
309.1 --- a/mtpfs/receipt Sun May 30 10:18:33 2021 +0100 309.2 +++ b/mtpfs/receipt Tue Jun 08 08:46:05 2021 +0000 309.3 @@ -14,6 +14,12 @@ 309.4 DEPENDS="fuse libgio libid3tag libmad libmtp" 309.5 BUILD_DEPENDS="autoconf automake fuse-dev libid3tag-dev libmad-dev libmtp-dev" 309.6 309.7 +current_version() 309.8 +{ 309.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 309.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 309.11 +} 309.12 + 309.13 # Rules to configure and make the package. 309.14 compile_rules() 309.15 {
310.1 --- a/muparser/receipt Sun May 30 10:18:33 2021 +0100 310.2 +++ b/muparser/receipt Tue Jun 08 08:46:05 2021 +0000 310.3 @@ -14,6 +14,12 @@ 310.4 DEPENDS="" 310.5 BUILD_DEPENDS="gcc83" 310.6 310.7 +current_version() 310.8 +{ 310.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 310.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 310.11 +} 310.12 + 310.13 # Rules to configure and make the package. 310.14 compile_rules() 310.15 {
311.1 --- a/mupen64plus/receipt Sun May 30 10:18:33 2021 +0100 311.2 +++ b/mupen64plus/receipt Tue Jun 08 08:46:05 2021 +0000 311.3 @@ -18,7 +18,12 @@ 311.4 libsamplerate-dev libsdl2-dev libsdl-ttf-dev mesa-dev nasm speex-dev 311.5 yasm zlib-dev" 311.6 311.7 -# Rules to configure and make the package. 311.8 +current_version() 311.9 +{ 311.10 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 311.11 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 311.12 +} 311.13 + 311.14 compile_rules() 311.15 { 311.16 find $src -name Makefile | xargs sed -i 's|uname -m|echo i486|'
312.1 --- a/mutagen/receipt Sun May 30 10:18:33 2021 +0100 312.2 +++ b/mutagen/receipt Tue Jun 08 08:46:05 2021 +0000 312.3 @@ -15,6 +15,12 @@ 312.4 DEPENDS="python" 312.5 BUILD_DEPENDS="cacerts python" 312.6 312.7 +current_version() 312.8 +{ 312.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 312.10 + sed '/archive.*tar/!d;s|.*/release-\(.*\).tar.*|\1|;q' 312.11 +} 312.12 + 312.13 # Rules to configure and make the package. 312.14 compile_rules() 312.15 {
313.1 --- a/mxml/receipt Sun May 30 10:18:33 2021 +0100 313.2 +++ b/mxml/receipt Tue Jun 08 08:46:05 2021 +0000 313.3 @@ -14,6 +14,12 @@ 313.4 DEPENDS="" 313.5 BUILD_DEPENDS="" 313.6 313.7 +current_version() 313.8 +{ 313.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 313.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 313.11 +} 313.12 + 313.13 # Rules to configure and make the package. 313.14 compile_rules() 313.15 {
314.1 --- a/n2n/receipt Sun May 30 10:18:33 2021 +0100 314.2 +++ b/n2n/receipt Tue Jun 08 08:46:05 2021 +0000 314.3 @@ -14,6 +14,12 @@ 314.4 DEPENDS="" 314.5 BUILD_DEPENDS="openssl-dev" 314.6 314.7 +current_version() 314.8 +{ 314.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 314.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 314.11 +} 314.12 + 314.13 # Rules to configure and make the package. 314.14 compile_rules() 314.15 {
315.1 --- a/nabi/receipt Sun May 30 10:18:33 2021 +0100 315.2 +++ b/nabi/receipt Tue Jun 08 08:46:05 2021 +0000 315.3 @@ -14,6 +14,12 @@ 315.4 DEPENDS="cairo gtk+ libhangul xorg-libICE xorg-libSM" 315.5 BUILD_DEPENDS="automake cairo-dev gtk+-dev libhangul libhangul-dev" 315.6 315.7 +current_version() 315.8 +{ 315.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 315.10 + sed '/archive.*tar/!d;s|.*/nabi-\(.*\).tar.*|\1|;q' 315.11 +} 315.12 + 315.13 # Rules to configure and make the package. 315.14 compile_rules() 315.15 {
316.1 --- a/nagios-nrpe/receipt Sun May 30 10:18:33 2021 +0100 316.2 +++ b/nagios-nrpe/receipt Tue Jun 08 08:46:05 2021 +0000 316.3 @@ -15,6 +15,12 @@ 316.4 BUILD_DEPENDS="libcrypto-dev libwrap-dev openssl openssl-dev" 316.5 DEPENDS="libcrypto libssl nagios-plugins" 316.6 316.7 +current_version() 316.8 +{ 316.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 316.10 + sed '/archive.*tar/!d;s|.*/nrpe-\(.*\).tar.*|\1|;q' 316.11 +} 316.12 + 316.13 # Rules to configure and make the package. 316.14 compile_rules() 316.15 {
317.1 --- a/nbwmon/receipt Sun May 30 10:18:33 2021 +0100 317.2 +++ b/nbwmon/receipt Tue Jun 08 08:46:05 2021 +0000 317.3 @@ -14,6 +14,12 @@ 317.4 DEPENDS="ncurses" 317.5 BUILD_DEPENDS="ncurses-dev" 317.6 317.7 +current_version() 317.8 +{ 317.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 317.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 317.11 +} 317.12 + 317.13 # Rules to configure and make the package. 317.14 compile_rules() 317.15 {
318.1 --- a/ndppd/receipt Sun May 30 10:18:33 2021 +0100 318.2 +++ b/ndppd/receipt Tue Jun 08 08:46:05 2021 +0000 318.3 @@ -15,6 +15,12 @@ 318.4 DEPENDS="gcc-lib-base" 318.5 CONFIG_FILES="/etc/ndppd.conf" 318.6 318.7 +current_version() 318.8 +{ 318.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 318.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 318.11 +} 318.12 + 318.13 # Rules to configure and make the package. 318.14 compile_rules() 318.15 {
319.1 --- a/netdata/receipt Sun May 30 10:18:33 2021 +0100 319.2 +++ b/netdata/receipt Tue Jun 08 08:46:05 2021 +0000 319.3 @@ -16,6 +16,12 @@ 319.4 BUILD_DEPENDS="pkg-config util-linux-uuid-dev" 319.5 SUGGESTED="psycopg2 python-mysql lm-sensors curl node iproute2 gnu-netcat" 319.6 319.7 +current_version() 319.8 +{ 319.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 319.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 319.11 +} 319.12 + 319.13 # Rules to configure and make the package. 319.14 compile_rules() 319.15 {
320.1 --- a/nethogs/receipt Sun May 30 10:18:33 2021 +0100 320.2 +++ b/nethogs/receipt Tue Jun 08 08:46:05 2021 +0000 320.3 @@ -15,6 +15,12 @@ 320.4 DEPENDS="gcc-lib-base libpcap ncursesw" 320.5 BUILD_DEPENDS="libpcap libpcap-dev ncursesw-dev" 320.6 320.7 +current_version() 320.8 +{ 320.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 320.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 320.11 +} 320.12 + 320.13 # Rules to configure and make the package. 320.14 compile_rules() 320.15 {
321.1 --- a/nicotine+/receipt Sun May 30 10:18:33 2021 +0100 321.2 +++ b/nicotine+/receipt Tue Jun 08 08:46:05 2021 +0000 321.3 @@ -15,6 +15,12 @@ 321.4 DEPENDS="gtk+ python pygtk" 321.5 BUILD_DEPENDS="python-dev pygtk-dev" 321.6 321.7 +current_version() 321.8 +{ 321.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 321.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 321.11 +} 321.12 + 321.13 # Rules to configure and make the package. 321.14 compile_rules() 321.15 {
322.1 --- a/nilfs-utils/receipt Sun May 30 10:18:33 2021 +0100 322.2 +++ b/nilfs-utils/receipt Tue Jun 08 08:46:05 2021 +0000 322.3 @@ -15,6 +15,12 @@ 322.4 BUILD_DEPENDS="autoconf automake libtool util-linux-blkid-dev util-linux-mount-dev 322.5 util-linux-uuid-dev" 322.6 322.7 +current_version() 322.8 +{ 322.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 322.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 322.11 +} 322.12 + 322.13 # Rules to configure and make the package. 322.14 compile_rules() 322.15 {
323.1 --- a/ninja/receipt Sun May 30 10:18:33 2021 +0100 323.2 +++ b/ninja/receipt Tue Jun 08 08:46:05 2021 +0000 323.3 @@ -14,6 +14,12 @@ 323.4 DEPENDS="gcc-lib-base" 323.5 BUILD_DEPENDS="python" 323.6 323.7 +current_version() 323.8 +{ 323.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 323.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 323.11 +} 323.12 + 323.13 # Rules to configure and make the package. 323.14 compile_rules() 323.15 {
324.1 --- a/nitrogen/receipt Sun May 30 10:18:33 2021 +0100 324.2 +++ b/nitrogen/receipt Tue Jun 08 08:46:05 2021 +0000 324.3 @@ -16,6 +16,12 @@ 324.4 BUILD_DEPENDS="cairomm-dev glib-dev gtk+-dev gtkmm gtkmm-dev libpng-dev 324.5 pkg-config xorg-libXinerama-dev" 324.6 324.7 +current_version() 324.8 +{ 324.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 324.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 324.11 +} 324.12 + 324.13 # Rules to configure and make the package. 324.14 compile_rules() 324.15 {
325.1 --- a/nms/receipt Sun May 30 10:18:33 2021 +0100 325.2 +++ b/nms/receipt Tue Jun 08 08:46:05 2021 +0000 325.3 @@ -14,6 +14,12 @@ 325.4 DEPENDS="ncurses" 325.5 BUILD_DEPENDS="ncurses-dev" 325.6 325.7 +current_version() 325.8 +{ 325.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 325.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 325.11 +} 325.12 + 325.13 # Rules to configure and make the package. 325.14 compile_rules() 325.15 {
326.1 --- a/nzbget/receipt Sun May 30 10:18:33 2021 +0100 326.2 +++ b/nzbget/receipt Tue Jun 08 08:46:05 2021 +0000 326.3 @@ -16,6 +16,12 @@ 326.4 326.5 CONFIG_FILES="/etc/nzbget.conf" 326.6 326.7 +current_version() 326.8 +{ 326.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 326.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 326.11 +} 326.12 + 326.13 # Rules to configure and make the package. 326.14 compile_rules() 326.15 {
327.1 --- a/obconf-qt/receipt Sun May 30 10:18:33 2021 +0100 327.2 +++ b/obconf-qt/receipt Tue Jun 08 08:46:05 2021 +0000 327.3 @@ -16,6 +16,12 @@ 327.4 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake openbox-dev glib-dev \ 327.5 xorg-libXft-dev pango-dev" 327.6 327.7 +current_version() 327.8 +{ 327.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 327.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 327.11 +} 327.12 + 327.13 # Rules to configure and make the package. 327.14 compile_rules() 327.15 {
328.1 --- a/obexfs/receipt Sun May 30 10:18:33 2021 +0100 328.2 +++ b/obexfs/receipt Tue Jun 08 08:46:05 2021 +0000 328.3 @@ -14,6 +14,12 @@ 328.4 DEPENDS="fuse obexftp" 328.5 BUILD_DEPENDS="fuse-dev openobex-dev bluez-dev obexftp-dev automake autoconf" 328.6 328.7 +current_version() 328.8 +{ 328.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 328.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 328.11 +} 328.12 + 328.13 # Rules to configure and make the package. 328.14 compile_rules() 328.15 {
329.1 --- a/ocaml/receipt Sun May 30 10:18:33 2021 +0100 329.2 +++ b/ocaml/receipt Tue Jun 08 08:46:05 2021 +0000 329.3 @@ -14,6 +14,12 @@ 329.4 329.5 DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp" 329.6 329.7 +current_version() 329.8 +{ 329.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 329.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 329.11 +} 329.12 + 329.13 # Rules to configure and make the package. 329.14 compile_rules() 329.15 {
330.1 --- a/odt2txt/receipt Sun May 30 10:18:33 2021 +0100 330.2 +++ b/odt2txt/receipt Tue Jun 08 08:46:05 2021 +0000 330.3 @@ -16,6 +16,12 @@ 330.4 DEPENDS="zlib" 330.5 BUILD_DEPENDS="zlib-dev" 330.6 330.7 +current_version() 330.8 +{ 330.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 330.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 330.11 +} 330.12 + 330.13 # Rules to configure and make the package. 330.14 compile_rules() 330.15 {
331.1 --- a/ola/receipt Sun May 30 10:18:33 2021 +0100 331.2 +++ b/ola/receipt Tue Jun 08 08:46:05 2021 +0000 331.3 @@ -14,6 +14,12 @@ 331.4 BUILD_DEPENDS="libtool flex protobuf-dev util-linux-uuid-dev cppunit-dev \ 331.5 libmicrohttpd-dev libftdi-dev libusb-dev liblo-dev ncurses-dev" 331.6 331.7 +current_version() 331.8 +{ 331.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 331.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 331.11 +} 331.12 + 331.13 # Rules to configure and make the package. 331.14 compile_rules() 331.15 {
332.1 --- a/open-vm-tools-kernel/receipt Sun May 30 10:18:33 2021 +0100 332.2 +++ b/open-vm-tools-kernel/receipt Tue Jun 08 08:46:05 2021 +0000 332.3 @@ -15,6 +15,12 @@ 332.4 DEPENDS="linux shutdown glib libffi libmspack open-vm-tools procps" 332.5 BUILD_DEPENDS="wget cacerts linux autoconf automake libtool linux-source linux-module-headers procps glib-dev libffi-dev libdnet-dev libmspack-dev slitaz-toolchain" 332.6 332.7 +current_version() 332.8 +{ 332.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 332.10 + sed '/release.*tar/!d;s|.*/open-vm-tools-\(.*\).tar.*|\1|;q' 332.11 +} 332.12 + 332.13 332.14 # Rules to configure and make the package. 332.15 compile_rules()
333.1 --- a/open-vm-tools/receipt Sun May 30 10:18:33 2021 +0100 333.2 +++ b/open-vm-tools/receipt Tue Jun 08 08:46:05 2021 +0000 333.3 @@ -16,6 +16,12 @@ 333.4 BUILD_DEPENDS="wget cacerts autoconf automake libtool linux-source procps \ 333.5 glib-dev libffi-dev libdnet-dev libmspack-dev openssl-dev" 333.6 333.7 +current_version() 333.8 +{ 333.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 333.10 + sed '/release.*tar/!d;s|.*/open-vm-tools-\(.*\).tar.*|\1|;q' 333.11 +} 333.12 + 333.13 333.14 # Rules to configure and make the package. 333.15 compile_rules()
334.1 --- a/opencc/receipt Sun May 30 10:18:33 2021 +0100 334.2 +++ b/opencc/receipt Tue Jun 08 08:46:05 2021 +0000 334.3 @@ -14,6 +14,12 @@ 334.4 DEPENDS="" 334.5 BUILD_DEPENDS="cmake gettext" 334.6 334.7 +current_version() 334.8 +{ 334.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 334.10 + sed '/archive.*tar/!d;s|.*/ver.\(.*\).tar.*|\1|;q' 334.11 +} 334.12 + 334.13 # Rules to configure and make the package. 334.14 compile_rules() 334.15 {
335.1 --- a/openct/receipt Sun May 30 10:18:33 2021 +0100 335.2 +++ b/openct/receipt Tue Jun 08 08:46:05 2021 +0000 335.3 @@ -13,6 +13,12 @@ 335.4 DEPENDS="pcsc-lite libusb" 335.5 BUILD_DEPENDS="automake libtool pcsc-lite-dev libusb-dev doxygen" 335.6 335.7 +current_version() 335.8 +{ 335.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 335.10 + sed '/archive.*tar/!d;s|.*/openct-\(.*\).tar.*|\1|;q' 335.11 +} 335.12 + 335.13 # Rules to configure and make the package. 335.14 compile_rules() 335.15 {
336.1 --- a/opencv/receipt Sun May 30 10:18:33 2021 +0100 336.2 +++ b/opencv/receipt Tue Jun 08 08:46:05 2021 +0000 336.3 @@ -15,6 +15,12 @@ 336.4 BUILD_DEPENDS="cmake ffmpeg-dev gcc83 gtk+-dev jpeg-dev libgnutls \ 336.5 libpng-dev tiff-dev" 336.6 336.7 +current_version() 336.8 +{ 336.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 336.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 336.11 +} 336.12 + 336.13 # Rules to configure and make the package. 336.14 compile_rules() 336.15 {
337.1 --- a/openexr/receipt Sun May 30 10:18:33 2021 +0100 337.2 +++ b/openexr/receipt Tue Jun 08 08:46:05 2021 +0000 337.3 @@ -14,6 +14,12 @@ 337.4 DEPENDS="gcc83-lib-base ilmbase zlib" 337.5 BUILD_DEPENDS="cmake gcc83 ilmbase-dev zlib-dev" 337.6 337.7 +current_version() 337.8 +{ 337.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 337.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 337.11 +} 337.12 + 337.13 # Rules to configure and make the package. 337.14 compile_rules() 337.15 {
338.1 --- a/openjpeg2/receipt Sun May 30 10:18:33 2021 +0100 338.2 +++ b/openjpeg2/receipt Tue Jun 08 08:46:05 2021 +0000 338.3 @@ -15,6 +15,12 @@ 338.4 DEPENDS="glibc-base tiff zlib" 338.5 BUILD_DEPENDS="cmake tiff-dev" 338.6 338.7 +current_version() 338.8 +{ 338.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 338.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 338.11 +} 338.12 + 338.13 # Rules to configure and make the package. 338.14 compile_rules() 338.15 {
339.1 --- a/opensc/receipt Sun May 30 10:18:33 2021 +0100 339.2 +++ b/opensc/receipt Tue Jun 08 08:46:05 2021 +0000 339.3 @@ -15,6 +15,12 @@ 339.4 BUILD_DEPENDS="openssl-dev pcsc-lite-dev" 339.5 CONFIG_FILES="/etc/opensc.conf" 339.6 339.7 +current_version() 339.8 +{ 339.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 339.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 339.11 +} 339.12 + 339.13 # Rules to configure and make the package. 339.14 compile_rules() 339.15 {
340.1 --- a/openspades/receipt Sun May 30 10:18:33 2021 +0100 340.2 +++ b/openspades/receipt Tue Jun 08 08:46:05 2021 +0000 340.3 @@ -18,6 +18,12 @@ 340.4 imagemagick libogg-dev libsdl2-dev libsdl2-image-dev mesa-dev \ 340.5 opusfile-dev unzip zip" 340.6 340.7 +current_version() 340.8 +{ 340.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 340.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 340.11 +} 340.12 + 340.13 # Rules to configure and make the package. 340.14 compile_rules() 340.15 {
341.1 --- a/opus/receipt Sun May 30 10:18:33 2021 +0100 341.2 +++ b/opus/receipt Tue Jun 08 08:46:05 2021 +0000 341.3 @@ -13,12 +13,6 @@ 341.4 DEPENDS="" 341.5 BUILD_DEPENDS="" 341.6 341.7 -current_version() 341.8 -{ 341.9 - wget -O - $WEB_SITE 2>/dev/null | \ 341.10 - sed "/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|;q" 341.11 -} 341.12 - 341.13 # Rules to configure and make the package. 341.14 compile_rules() 341.15 {
342.1 --- a/osm2pgrouting/receipt Sun May 30 10:18:33 2021 +0100 342.2 +++ b/osm2pgrouting/receipt Tue Jun 08 08:46:05 2021 +0000 342.3 @@ -15,6 +15,12 @@ 342.4 BUILD_DEPENDS="cmake expat-dev gcc83 libpqxx libboost-program-options-dev \ 342.5 pgrouting postgis postgresql-dev" 342.6 342.7 +current_version() 342.8 +{ 342.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 342.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 342.11 +} 342.12 + 342.13 # Rules to configure and make the package. 342.14 compile_rules() 342.15 {
343.1 --- a/owfs/receipt Sun May 30 10:18:33 2021 +0100 343.2 +++ b/owfs/receipt Tue Jun 08 08:46:05 2021 +0000 343.3 @@ -14,6 +14,12 @@ 343.4 DEPENDS="fuse libusb" 343.5 BUILD_DEPENDS="fuse-dev libtool libusb libusb-dev libusb-compat" 343.6 343.7 +current_version() 343.8 +{ 343.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 343.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 343.11 +} 343.12 + 343.13 # Rules to configure and make the package. 343.14 compile_rules() 343.15 {
344.1 --- a/p11-kit/receipt Sun May 30 10:18:33 2021 +0100 344.2 +++ b/p11-kit/receipt Tue Jun 08 08:46:05 2021 +0000 344.3 @@ -15,6 +15,12 @@ 344.4 BUILD_DEPENDS="cacerts gettext glib glib-dev gtk-doc libffi libffi-dev \ 344.5 libtasn1-dev libxslt" 344.6 344.7 +current_version() 344.8 +{ 344.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 344.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 344.11 +} 344.12 + 344.13 # Rules to configure and make the package. 344.14 compile_rules() 344.15 {
345.1 --- a/paper-gtk-theme/receipt Sun May 30 10:18:33 2021 +0100 345.2 +++ b/paper-gtk-theme/receipt Tue Jun 08 08:46:05 2021 +0000 345.3 @@ -15,6 +15,12 @@ 345.4 DEPENDS="gtk2-engine-murrine" 345.5 BUILD_DEPENDS="autoconf automake" 345.6 345.7 +current_version() 345.8 +{ 345.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 345.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 345.11 +} 345.12 + 345.13 # Rules to configure and make the package. 345.14 compile_rules() 345.15 {
346.1 --- a/paper-icon-theme/receipt Sun May 30 10:18:33 2021 +0100 346.2 +++ b/paper-icon-theme/receipt Tue Jun 08 08:46:05 2021 +0000 346.3 @@ -14,6 +14,12 @@ 346.4 DEPENDS="librsvg" 346.5 BUILD_DEPENDS="meson ninja svgcleaner" 346.6 346.7 +current_version() 346.8 +{ 346.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 346.10 + sed '/archive.*tar/!d;s|.*/v.\(.*\).tar.*|\1|;q' 346.11 +} 346.12 + 346.13 # Rules to configure and make the package. 346.14 compile_rules() 346.15 {
347.1 --- a/par2/receipt Sun May 30 10:18:33 2021 +0100 347.2 +++ b/par2/receipt Tue Jun 08 08:46:05 2021 +0000 347.3 @@ -16,6 +16,12 @@ 347.4 DEPENDS="gcc83-lib-base" 347.5 BUILD_DEPENDS="automake gcc83" 347.6 347.7 +current_version() 347.8 +{ 347.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 347.10 + sed '/archive.*tar/!d;/par2cmdline-/!d;s|.*/par2cmdline-\(.*\).tar.*|\1|;q' 347.11 +} 347.12 + 347.13 # Rules to configure and make the package. 347.14 compile_rules() 347.15 {
348.1 --- a/paramiko/receipt Sun May 30 10:18:33 2021 +0100 348.2 +++ b/paramiko/receipt Tue Jun 08 08:46:05 2021 +0000 348.3 @@ -15,6 +15,12 @@ 348.4 DEPENDS="python-bcrypt python-cryptography python-pyasn1 python-pynacl" 348.5 BUILD_DEPENDS="python python-setuptools" 348.6 348.7 +current_version() 348.8 +{ 348.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 348.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 348.11 +} 348.12 + 348.13 # Rules to configure and make the package. 348.14 compile_rules() 348.15 {
349.1 --- a/patchelf/receipt Sun May 30 10:18:33 2021 +0100 349.2 +++ b/patchelf/receipt Tue Jun 08 08:46:05 2021 +0000 349.3 @@ -14,6 +14,12 @@ 349.4 DEPENDS="gcc83-lib-base" 349.5 BUILD_DEPENDS="automake gcc83" 349.6 349.7 +current_version() 349.8 +{ 349.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 349.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 349.11 +} 349.12 + 349.13 # Rules to configure and make the package. 349.14 compile_rules() 349.15 {
350.1 --- a/pcmanfm-qt/receipt Sun May 30 10:18:33 2021 +0100 350.2 +++ b/pcmanfm-qt/receipt Tue Jun 08 08:46:05 2021 +0000 350.3 @@ -16,6 +16,12 @@ 350.4 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake glib-dev libgio-dev libfm-dev \ 350.5 menu-cache-dev xorg-libX11-dev" 350.6 350.7 +current_version() 350.8 +{ 350.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 350.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 350.11 +} 350.12 + 350.13 # Rules to configure and make the package. 350.14 compile_rules() 350.15 {
351.1 --- a/pdf2djvu/receipt Sun May 30 10:18:33 2021 +0100 351.2 +++ b/pdf2djvu/receipt Tue Jun 08 08:46:05 2021 +0000 351.3 @@ -15,6 +15,12 @@ 351.4 DEPENDS="djvulibre poppler" 351.5 BUILD_DEPENDS="cacerts djvulibre-dev poppler-dev" #exiv2 351.6 351.7 +current_version() 351.8 +{ 351.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 351.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 351.11 +} 351.12 + 351.13 # Rules to configure and make the package. 351.14 compile_rules() 351.15 {
352.1 --- a/pekwm/receipt Sun May 30 10:18:33 2021 +0100 352.2 +++ b/pekwm/receipt Tue Jun 08 08:46:05 2021 +0000 352.3 @@ -16,6 +16,12 @@ 352.4 DEPENDS="xorg-libX11 xorg-libXinerama xorg-libXft xorg-libXrandr xorg-libXpm" 352.5 BUILD_DEPENDS="libtool xorg-dev xorg-dev-proto zlib-dev" 352.6 352.7 +current_version() 352.8 +{ 352.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 352.10 + sed '/archive.*tar/!d;s|.*/release-\(.*\).tar.*|\1|;q' 352.11 +} 352.12 + 352.13 # Rules to configure and make the package. 352.14 compile_rules() 352.15 {
353.1 --- a/pgbadger/receipt Sun May 30 10:18:33 2021 +0100 353.2 +++ b/pgbadger/receipt Tue Jun 08 08:46:05 2021 +0000 353.3 @@ -14,6 +14,12 @@ 353.4 DEPENDS="perl" 353.5 BUILD_DEPENDS="perl" 353.6 353.7 +current_version() 353.8 +{ 353.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 353.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 353.11 +} 353.12 + 353.13 # Rules to configure and make the package. 353.14 compile_rules() 353.15 {
354.1 --- a/pgrouting/receipt Sun May 30 10:18:33 2021 +0100 354.2 +++ b/pgrouting/receipt Tue Jun 08 08:46:05 2021 +0000 354.3 @@ -16,6 +16,12 @@ 354.4 BUILD_DEPENDS="cgal-dev cmake gmp-dev libboost-dev libboost-graph-dev \ 354.5 libboost-thread-dev libboost-tr1-dev mpfr-dev postgresql-dev" 354.6 354.7 +current_version() 354.8 +{ 354.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 354.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 354.11 +} 354.12 + 354.13 # Rules to configure and make the package. 354.14 compile_rules() 354.15 {
355.1 --- a/phonon-vlc/receipt Sun May 30 10:18:33 2021 +0100 355.2 +++ b/phonon-vlc/receipt Tue Jun 08 08:46:05 2021 +0000 355.3 @@ -15,6 +15,12 @@ 355.4 DEPENDS="libQtCore libQtDBus libQtGui libQtXml libvlc phonon" 355.5 BUILD_DEPENDS="automoc4 cmake libvlc-dev phonon phonon-dev qmake Qt4-dev" 355.6 355.7 +current_version() 355.8 +{ 355.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 355.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 355.11 +} 355.12 + 355.13 compile_rules() 355.14 { 355.15 mkdir build
356.1 --- a/phpldapadmin/receipt Sun May 30 10:18:33 2021 +0100 356.2 +++ b/phpldapadmin/receipt Tue Jun 08 08:46:05 2021 +0000 356.3 @@ -17,6 +17,12 @@ 356.4 356.5 HOST_ARCH="any" 356.6 356.7 +current_version() 356.8 +{ 356.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 356.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 356.11 +} 356.12 + 356.13 # Rules to gen a SliTaz package suitable for Tazpkg. 356.14 genpkg_rules() 356.15 {
357.1 --- a/phppgadmin/receipt Sun May 30 10:18:33 2021 +0100 357.2 +++ b/phppgadmin/receipt Tue Jun 08 08:46:05 2021 +0000 357.3 @@ -17,6 +17,12 @@ 357.4 357.5 HOST_ARCH="any" 357.6 357.7 +current_version() 357.8 +{ 357.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 357.10 + sed '/archive.*tar/!d;s|.*/REL_\(.*\).tar.*|\1|;s|-|.|g;q' 357.11 +} 357.12 + 357.13 # Rules to gen a SliTaz package suitable for Tazpkg. 357.14 genpkg_rules() 357.15 {
358.1 --- a/phpsysinfo/receipt Sun May 30 10:18:33 2021 +0100 358.2 +++ b/phpsysinfo/receipt Tue Jun 08 08:46:05 2021 +0000 358.3 @@ -18,6 +18,12 @@ 358.4 358.5 HOST_ARCH="any" 358.6 358.7 +current_version() 358.8 +{ 358.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 358.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 358.11 +} 358.12 + 358.13 # Rules to configure and make the package. 358.14 compile_rules() 358.15 {
359.1 --- a/phpvirtualbox/receipt Sun May 30 10:18:33 2021 +0100 359.2 +++ b/phpvirtualbox/receipt Tue Jun 08 08:46:05 2021 +0000 359.3 @@ -13,6 +13,12 @@ 359.4 359.5 DEPENDS="php-soap virtualbox" 359.6 359.7 +current_version() 359.8 +{ 359.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 359.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;s|-|.|;q' 359.11 +} 359.12 + 359.13 # Rules to gen a SliTaz package suitable for Tazpkg. 359.14 genpkg_rules() 359.15 {
360.1 --- a/picard/receipt Sun May 30 10:18:33 2021 +0100 360.2 +++ b/picard/receipt Tue Jun 08 08:46:05 2021 +0000 360.3 @@ -14,6 +14,12 @@ 360.4 DEPENDS="mutagen py3k PyQt-x11-gpl" 360.5 BUILD_DEPENDS="gettext mutagen py3k-dev PyQt-x11-gpl " 360.6 360.7 +current_version() 360.8 +{ 360.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 360.10 + sed '/archive.*tar/!d;s|.*/release-\(.*\).tar.*|\1|;q' 360.11 +} 360.12 + 360.13 # Rules to configure and make the package. 360.14 compile_rules() 360.15 {
361.1 --- a/pinta/receipt Sun May 30 10:18:33 2021 +0100 361.2 +++ b/pinta/receipt Tue Jun 08 08:46:05 2021 +0000 361.3 @@ -14,6 +14,12 @@ 361.4 DEPENDS="mono gtk-sharp" 361.5 BUILD_DEPENDS="automake mono-dev gtk-sharp-dev" 361.6 361.7 +current_version() 361.8 +{ 361.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 361.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 361.11 +} 361.12 + 361.13 # Rules to configure and make the package. 361.14 compile_rules() 361.15 {
362.1 --- a/pixiewps/receipt Sun May 30 10:18:33 2021 +0100 362.2 +++ b/pixiewps/receipt Tue Jun 08 08:46:05 2021 +0000 362.3 @@ -11,6 +11,12 @@ 362.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 362.5 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" 362.6 362.7 +current_version() 362.8 +{ 362.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 362.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 362.11 +} 362.12 + 362.13 # Rules to configure and make the package. 362.14 compile_rules() 362.15 {
363.1 --- a/plsh/receipt Sun May 30 10:18:33 2021 +0100 363.2 +++ b/plsh/receipt Tue Jun 08 08:46:05 2021 +0000 363.3 @@ -14,6 +14,12 @@ 363.4 DEPENDS="postgresql" 363.5 BUILD_DEPENDS="postgresql-dev" 363.6 363.7 +current_version() 363.8 +{ 363.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 363.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 363.11 +} 363.12 + 363.13 # Rules to configure and make the package. 363.14 compile_rules() 363.15 {
364.1 --- a/pnmixer/receipt Sun May 30 10:18:33 2021 +0100 364.2 +++ b/pnmixer/receipt Tue Jun 08 08:46:05 2021 +0000 364.3 @@ -19,6 +19,12 @@ 364.4 BUILD_DEPENDS="alsa-lib-dev cmake gettext glib-dev gtk+3-dev libnotify-dev \ 364.5 xorg-libX11-dev" 364.6 364.7 +current_version() 364.8 +{ 364.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 364.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 364.11 +} 364.12 + 364.13 # Rules to configure and make the package. 364.14 compile_rules() 364.15 {
365.1 --- a/poedit/receipt Sun May 30 10:18:33 2021 +0100 365.2 +++ b/poedit/receipt Tue Jun 08 08:46:05 2021 +0000 365.3 @@ -16,6 +16,12 @@ 365.4 lucene++-dev db-dev libdb libdb-cxx expat-dev" 365.5 SUGGESTED="aspell" 365.6 365.7 +current_version() 365.8 +{ 365.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 365.10 + sed '/archive.*tar/!d;s|.*/v\(.*\)-oss.tar.*|\1|;q' 365.11 +} 365.12 + 365.13 # Rules to configure and make the package. 365.14 compile_rules() 365.15 {
366.1 --- a/polipo/receipt Sun May 30 10:18:33 2021 +0100 366.2 +++ b/polipo/receipt Tue Jun 08 08:46:05 2021 +0000 366.3 @@ -14,6 +14,12 @@ 366.4 DEPENDS="" 366.5 BUILD_DEPENDS="texinfo" 366.6 366.7 +current_version() 366.8 +{ 366.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 366.10 + sed '/archive.*tar/!d;s|.*/polipo-\(.*\).tar.*|\1|;q' 366.11 +} 366.12 + 366.13 # Rules to configure and make the package. 366.14 compile_rules() 366.15 {
367.1 --- a/ponyprog-qt/receipt Sun May 30 10:18:33 2021 +0100 367.2 +++ b/ponyprog-qt/receipt Tue Jun 08 08:46:05 2021 +0000 367.3 @@ -16,6 +16,12 @@ 367.4 DEPENDS="libQtGui" 367.5 BUILD_DEPENDS="Qt4-dev qmake cmake" 367.6 367.7 +current_version() 367.8 +{ 367.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 367.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 367.11 +} 367.12 + 367.13 # Rules to configure and make the package. 367.14 compile_rules() 367.15 {
368.1 --- a/postfixadmin/receipt Sun May 30 10:18:33 2021 +0100 368.2 +++ b/postfixadmin/receipt Tue Jun 08 08:46:05 2021 +0000 368.3 @@ -13,6 +13,12 @@ 368.4 368.5 DEPENDS="mysql_or_postgresql php php-imap php-mysqli postfix" 368.6 368.7 +current_version() 368.8 +{ 368.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 368.10 + sed '/archive.*tar/!d;s|.*/postfixadmin-\(.*\).tar.*|\1|;q' 368.11 +} 368.12 + 368.13 # Rules to gen a SliTaz package suitable for Tazpkg. 368.14 genpkg_rules() 368.15 {
369.1 --- a/powertop/receipt Sun May 30 10:18:33 2021 +0100 369.2 +++ b/powertop/receipt Tue Jun 08 08:46:05 2021 +0000 369.3 @@ -16,6 +16,12 @@ 369.4 BUILD_DEPENDS="acl autoconf automake diffutils file gcc83 gettext libnl-dev 369.5 libtool ncursesw-dev pciutils-dev zlib-dev" 369.6 369.7 +current_version() 369.8 +{ 369.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 369.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 369.11 +} 369.12 + 369.13 # Rules to configure and make the package. 369.14 compile_rules() 369.15 {
370.1 --- a/ppp-pam/receipt Sun May 30 10:18:33 2021 +0100 370.2 +++ b/ppp-pam/receipt Tue Jun 08 08:46:05 2021 +0000 370.3 @@ -17,6 +17,12 @@ 370.4 BUILD_DEPENDS="wget pam pam-dev" 370.5 PROVIDE="ppp:pam" 370.6 370.7 +current_version() 370.8 +{ 370.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 370.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 370.11 +} 370.12 + 370.13 # Rules to configure and make the package. 370.14 compile_rules() 370.15 {
371.1 --- a/ppp/receipt Sun May 30 10:18:33 2021 +0100 371.2 +++ b/ppp/receipt Tue Jun 08 08:46:05 2021 +0000 371.3 @@ -16,6 +16,12 @@ 371.4 BUILD_DEPENDS="wget" 371.5 SUGGESTED="tazpanel" 371.6 371.7 +current_version() 371.8 +{ 371.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 371.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 371.11 +} 371.12 + 371.13 # Rules to configure and make the package. 371.14 compile_rules() 371.15 {
372.1 --- a/proot/receipt Sun May 30 10:18:33 2021 +0100 372.2 +++ b/proot/receipt Tue Jun 08 08:46:05 2021 +0000 372.3 @@ -14,6 +14,12 @@ 372.4 DEPENDS="talloc" 372.5 BUILD_DEPENDS="talloc-dev" 372.6 372.7 +current_version() 372.8 +{ 372.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 372.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 372.11 +} 372.12 + 372.13 # Rules to configure and make the package. 372.14 compile_rules() 372.15 {
373.1 --- a/proxychains-ng/receipt Sun May 30 10:18:33 2021 +0100 373.2 +++ b/proxychains-ng/receipt Tue Jun 08 08:46:05 2021 +0000 373.3 @@ -13,6 +13,12 @@ 373.4 373.5 CONFIG_FILES="/etc/proxychains.conf" 373.6 373.7 +current_version() 373.8 +{ 373.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 373.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 373.11 +} 373.12 + 373.13 # Rules to configure and make the package. 373.14 compile_rules() 373.15 {
374.1 --- a/ptpython/receipt Sun May 30 10:18:33 2021 +0100 374.2 +++ b/ptpython/receipt Tue Jun 08 08:46:05 2021 +0000 374.3 @@ -14,6 +14,12 @@ 374.4 BUILD_DEPENDS="python-dev python-docopt python-jedi \ 374.5 python-prompt-toolkit python-setuptools " 374.6 374.7 +current_version() 374.8 +{ 374.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 374.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 374.11 +} 374.12 + 374.13 # Rules to configure and make the package. 374.14 compile_rules() 374.15 {
375.1 --- a/puddletag/receipt Sun May 30 10:18:33 2021 +0100 375.2 +++ b/puddletag/receipt Tue Jun 08 08:46:05 2021 +0000 375.3 @@ -15,6 +15,12 @@ 375.4 DEPENDS="mutagen python-configobj python-pyparsing PyQt-x11-gpl" 375.5 BUILD_DEPENDS="python" 375.6 375.7 +current_version() 375.8 +{ 375.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 375.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 375.11 +} 375.12 + 375.13 # Rules to configure and make the package. 375.14 compile_rules() 375.15 {
376.1 --- a/pugixml/receipt Sun May 30 10:18:33 2021 +0100 376.2 +++ b/pugixml/receipt Tue Jun 08 08:46:05 2021 +0000 376.3 @@ -14,6 +14,12 @@ 376.4 SUGGESTED="cmake" 376.5 BUILD_DEPENDS="cmake" 376.6 376.7 +current_version() 376.8 +{ 376.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 376.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 376.11 +} 376.12 + 376.13 # Rules to configure and make the package. 376.14 compile_rules() 376.15 {
377.1 --- a/punjab/receipt Sun May 30 10:18:33 2021 +0100 377.2 +++ b/punjab/receipt Tue Jun 08 08:46:05 2021 +0000 377.3 @@ -14,6 +14,12 @@ 377.4 DEPENDS="python twisted pyopenssl" 377.5 BUILD_DEPENDS="python python-dev" 377.6 377.7 +current_version() 377.8 +{ 377.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 377.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 377.11 +} 377.12 + 377.13 # Rules to configure and make the package. 377.14 compile_rules() 377.15 {
378.1 --- a/purple-facebook/receipt Sun May 30 10:18:33 2021 +0100 378.2 +++ b/purple-facebook/receipt Tue Jun 08 08:46:05 2021 +0000 378.3 @@ -13,6 +13,12 @@ 378.4 DEPENDS="pidgin zip json-glib" 378.5 BUILD_DEPENDS="libpurple-dev json-glib-dev zlib-dev unzip pidgin" 378.6 378.7 +current_version() 378.8 +{ 378.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 378.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 378.11 +} 378.12 + 378.13 # Rules to configure and make the package. 378.14 compile_rules() 378.15 {
379.1 --- a/py3k-cython/receipt Sun May 30 10:18:33 2021 +0100 379.2 +++ b/py3k-cython/receipt Tue Jun 08 08:46:05 2021 +0000 379.3 @@ -15,6 +15,12 @@ 379.4 DEPENDS="py3k" 379.5 BUILD_DEPENDS="$DEPENDS py3k-dev" 379.6 379.7 +current_version() 379.8 +{ 379.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 379.10 + sed '/archive.*tar/!d;/[0-9]a[0-9]/d;s|.*/\(.*\).tar.*|\1|;q' 379.11 +} 379.12 + 379.13 # Rules to configure and make the package. 379.14 compile_rules() 379.15 {
380.1 --- a/py3k-numpy/receipt Sun May 30 10:18:33 2021 +0100 380.2 +++ b/py3k-numpy/receipt Tue Jun 08 08:46:05 2021 +0000 380.3 @@ -15,6 +15,12 @@ 380.4 DEPENDS="gcc83-lib-base py3k" 380.5 BUILD_DEPENDS="gcc83 py3k-dev py3k-cython" 380.6 380.7 +current_version() 380.8 +{ 380.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 380.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 380.11 +} 380.12 + 380.13 # Rules to configure and make the package. 380.14 compile_rules() 380.15 {
381.1 --- a/pycairo/receipt Sun May 30 10:18:33 2021 +0100 381.2 +++ b/pycairo/receipt Tue Jun 08 08:46:05 2021 +0000 381.3 @@ -15,6 +15,12 @@ 381.4 xorg-libXdmcp xorg-libXrender xcb-util" 381.5 BUILD_DEPENDS="cairo cairo-dev pkg-config python-dev xorg-xproto" 381.6 381.7 +current_version() 381.8 +{ 381.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 381.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 381.11 +} 381.12 + 381.13 # Rules to configure and make the package. 381.14 compile_rules() 381.15 {
382.1 --- a/pyopenssl/receipt Sun May 30 10:18:33 2021 +0100 382.2 +++ b/pyopenssl/receipt Tue Jun 08 08:46:05 2021 +0000 382.3 @@ -14,6 +14,12 @@ 382.4 DEPENDS="openssl python" 382.5 BUILD_DEPENDS="openssl-dev python python-dev python-setuptools" 382.6 382.7 +current_version() 382.8 +{ 382.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 382.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 382.11 +} 382.12 + 382.13 # Rules to configure and make the package. 382.14 compile_rules() 382.15 {
383.1 --- a/pypdf2/receipt Sun May 30 10:18:33 2021 +0100 383.2 +++ b/pypdf2/receipt Tue Jun 08 08:46:05 2021 +0000 383.3 @@ -13,6 +13,12 @@ 383.4 DEPENDS="python" 383.5 BUILD_DEPENDS="python" 383.6 383.7 +current_version() 383.8 +{ 383.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 383.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 383.11 +} 383.12 + 383.13 # Rules to configure and make the package. 383.14 compile_rules() 383.15 {
384.1 --- a/pyradio/receipt Sun May 30 10:18:33 2021 +0100 384.2 +++ b/pyradio/receipt Tue Jun 08 08:46:05 2021 +0000 384.3 @@ -14,6 +14,12 @@ 384.4 DEPENDS="mplayer ncurses python" 384.5 BUILD_DEPENDS="python-setuptools" 384.6 384.7 +current_version() 384.8 +{ 384.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 384.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 384.11 +} 384.12 + 384.13 # Rules to configure and make the package. 384.14 compile_rules() 384.15 {
385.1 --- a/pyrit/receipt Sun May 30 10:18:33 2021 +0100 385.2 +++ b/pyrit/receipt Tue Jun 08 08:46:05 2021 +0000 385.3 @@ -13,6 +13,12 @@ 385.4 DEPENDS="python libcrypto libpcap" 385.5 BUILD_DEPENDS="python-setuptools python-dev openssl-dev libpcap-dev" 385.6 385.7 +current_version() 385.8 +{ 385.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 385.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 385.11 +} 385.12 + 385.13 # Rules to configure and make the package. 385.14 compile_rules() 385.15 {
386.1 --- a/python-antlr/receipt Sun May 30 10:18:33 2021 +0100 386.2 +++ b/python-antlr/receipt Tue Jun 08 08:46:05 2021 +0000 386.3 @@ -15,6 +15,12 @@ 386.4 DEPENDS="python" 386.5 BUILD_DEPENDS="python python-dev python-setuptools" 386.6 386.7 +current_version() 386.8 +{ 386.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 386.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 386.11 +} 386.12 + 386.13 # Rules to configure and make the package. 386.14 compile_rules() 386.15 {
387.1 --- a/python-ari/receipt Sun May 30 10:18:33 2021 +0100 387.2 +++ b/python-ari/receipt Tue Jun 08 08:46:05 2021 +0000 387.3 @@ -13,6 +13,12 @@ 387.4 DEPENDS="python" 387.5 BUILD_DEPENDS="python-setuptools" 387.6 387.7 +current_version() 387.8 +{ 387.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 387.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 387.11 +} 387.12 + 387.13 # Rules to configure and make the package. 387.14 compile_rules() 387.15 {
388.1 --- a/python-asn1crypto/receipt Sun May 30 10:18:33 2021 +0100 388.2 +++ b/python-asn1crypto/receipt Tue Jun 08 08:46:05 2021 +0000 388.3 @@ -13,6 +13,12 @@ 388.4 DEPENDS="python" 388.5 BUILD_DEPENDS="python-setuptools" 388.6 388.7 +current_version() 388.8 +{ 388.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 388.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 388.11 +} 388.12 + 388.13 # Rules to configure and make the package. 388.14 compile_rules() 388.15 {
389.1 --- a/python-beaker/receipt Sun May 30 10:18:33 2021 +0100 389.2 +++ b/python-beaker/receipt Tue Jun 08 08:46:05 2021 +0000 389.3 @@ -15,6 +15,12 @@ 389.4 DEPENDS="python" 389.5 BUILD_DEPENDS="python python-dev python-setuptools" 389.6 389.7 +current_version() 389.8 +{ 389.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 389.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 389.11 +} 389.12 + 389.13 # Rules to configure and make the package. 389.14 compile_rules() 389.15 {
390.1 --- a/python-chardet/receipt Sun May 30 10:18:33 2021 +0100 390.2 +++ b/python-chardet/receipt Tue Jun 08 08:46:05 2021 +0000 390.3 @@ -15,8 +15,13 @@ 390.4 DEPENDS="python" 390.5 BUILD_DEPENDS="python-dev python-setuptools" 390.6 390.7 +current_version() 390.8 +{ 390.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 390.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 390.11 +} 390.12 + 390.13 # Rules to configure and make the package. 390.14 - 390.15 compile_rules() 390.16 { 390.17 python setup.py install --root=$DESTDIR --optimize=1
391.1 --- a/python-configobj/receipt Sun May 30 10:18:33 2021 +0100 391.2 +++ b/python-configobj/receipt Tue Jun 08 08:46:05 2021 +0000 391.3 @@ -13,6 +13,12 @@ 391.4 DEPENDS="python python-six" 391.5 BUILD_DEPENDS="wget cacerts python" 391.6 391.7 +current_version() 391.8 +{ 391.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 391.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 391.11 +} 391.12 + 391.13 # Rules to configure and make the package. 391.14 compile_rules() 391.15 {
392.1 --- a/python-constantly/receipt Sun May 30 10:18:33 2021 +0100 392.2 +++ b/python-constantly/receipt Tue Jun 08 08:46:05 2021 +0000 392.3 @@ -14,6 +14,12 @@ 392.4 DEPENDS="python" 392.5 BUILD_DEPENDS="python-setuptools" 392.6 392.7 +current_version() 392.8 +{ 392.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 392.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 392.11 +} 392.12 + 392.13 # Rules to configure and make the package. 392.14 compile_rules() 392.15 {
393.1 --- a/python-couchdbkit/receipt Sun May 30 10:18:33 2021 +0100 393.2 +++ b/python-couchdbkit/receipt Tue Jun 08 08:46:05 2021 +0000 393.3 @@ -16,6 +16,12 @@ 393.4 DEPENDS="couchdb python python-restkit python-simplejson" 393.5 BUILD_DEPENDS="python python-dev python-setuptools" 393.6 393.7 +current_version() 393.8 +{ 393.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 393.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 393.11 +} 393.12 + 393.13 # Rules to configure and make the package. 393.14 compile_rules() 393.15 {
394.1 --- a/python-cparser/receipt Sun May 30 10:18:33 2021 +0100 394.2 +++ b/python-cparser/receipt Tue Jun 08 08:46:05 2021 +0000 394.3 @@ -13,6 +13,12 @@ 394.4 DEPENDS="python" 394.5 BUILD_DEPENDS="python" 394.6 394.7 +current_version() 394.8 +{ 394.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 394.10 + sed '/archive.*tar/!d;s|.*/release_v\(.*\).tar.*|\1|;q' 394.11 +} 394.12 + 394.13 # Rules to configure and make the package. 394.14 compile_rules() 394.15 {
395.1 --- a/python-cryptography/receipt Sun May 30 10:18:33 2021 +0100 395.2 +++ b/python-cryptography/receipt Tue Jun 08 08:46:05 2021 +0000 395.3 @@ -15,6 +15,12 @@ 395.4 python-cparser" 395.5 #BUILD_DEPENDS="python" 395.6 395.7 +current_version() 395.8 +{ 395.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 395.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 395.11 +} 395.12 + 395.13 # Rules to configure and make the package. 395.14 compile_rules() 395.15 {
396.1 --- a/python-cython/receipt Sun May 30 10:18:33 2021 +0100 396.2 +++ b/python-cython/receipt Tue Jun 08 08:46:05 2021 +0000 396.3 @@ -15,6 +15,12 @@ 396.4 DEPENDS="python" 396.5 BUILD_DEPENDS="python python-dev" 396.6 396.7 +current_version() 396.8 +{ 396.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 396.10 + sed '/archive.*tar/!d;/[0-9]a[0-9]/d;s|.*/\(.*\).tar.*|\1|;q' 396.11 +} 396.12 + 396.13 # Rules to configure and make the package. 396.14 compile_rules() 396.15 {
397.1 --- a/python-ethtool/receipt Sun May 30 10:18:33 2021 +0100 397.2 +++ b/python-ethtool/receipt Tue Jun 08 08:46:05 2021 +0000 397.3 @@ -14,6 +14,12 @@ 397.4 DEPENDS="python libnl" 397.5 BUILD_DEPENDS="libnl-dev pkg-config python python-dev python-setuptools" 397.6 397.7 +current_version() 397.8 +{ 397.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 397.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 397.11 +} 397.12 + 397.13 # Rules to configure and make the package. 397.14 compile_rules() 397.15 {
398.1 --- a/python-gammu/receipt Sun May 30 10:18:33 2021 +0100 398.2 +++ b/python-gammu/receipt Tue Jun 08 08:46:05 2021 +0000 398.3 @@ -14,6 +14,12 @@ 398.4 DEPENDS="gammu python" 398.5 BUILD_DEPENDS="gammu-dev pkg-config python python-dev python-setuptools" 398.6 398.7 +current_version() 398.8 +{ 398.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 398.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 398.11 +} 398.12 + 398.13 # Rules to configure and make the package. 398.14 compile_rules() 398.15 {
399.1 --- a/python-html2text/receipt Sun May 30 10:18:33 2021 +0100 399.2 +++ b/python-html2text/receipt Tue Jun 08 08:46:05 2021 +0000 399.3 @@ -14,6 +14,12 @@ 399.4 DEPENDS="python" 399.5 BUILD_DEPENDS="python-dev python-distribute python-setuptools" 399.6 399.7 +current_version() 399.8 +{ 399.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 399.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 399.11 +} 399.12 + 399.13 # Rules to configure and make the package. 399.14 compile_rules() 399.15 {
400.1 --- a/python-html5lib/receipt Sun May 30 10:18:33 2021 +0100 400.2 +++ b/python-html5lib/receipt Tue Jun 08 08:46:05 2021 +0000 400.3 @@ -16,6 +16,12 @@ 400.4 400.5 HOST_ARCH="i486 arm" 400.6 400.7 +current_version() 400.8 +{ 400.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 400.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 400.11 +} 400.12 + 400.13 # Rules to configure and make the package. 400.14 compile_rules() 400.15 {
401.1 --- a/python-http-parser/receipt Sun May 30 10:18:33 2021 +0100 401.2 +++ b/python-http-parser/receipt Tue Jun 08 08:46:05 2021 +0000 401.3 @@ -15,6 +15,12 @@ 401.4 DEPENDS="python" 401.5 BUILD_DEPENDS="python python-cython python-dev python-setuptools" 401.6 401.7 +current_version() 401.8 +{ 401.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 401.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 401.11 +} 401.12 + 401.13 # Rules to configure and make the package. 401.14 compile_rules() 401.15 {
402.1 --- a/python-httplib2/receipt Sun May 30 10:18:33 2021 +0100 402.2 +++ b/python-httplib2/receipt Tue Jun 08 08:46:05 2021 +0000 402.3 @@ -15,6 +15,12 @@ 402.4 DEPENDS="python" 402.5 BUILD_DEPENDS="python python-dev python-setuptools" 402.6 402.7 +current_version() 402.8 +{ 402.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 402.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 402.11 +} 402.12 + 402.13 # Rules to configure and make the package. 402.14 compile_rules() 402.15 {
403.1 --- a/python-humanize/receipt Sun May 30 10:18:33 2021 +0100 403.2 +++ b/python-humanize/receipt Tue Jun 08 08:46:05 2021 +0000 403.3 @@ -14,6 +14,12 @@ 403.4 DEPENDS="python" 403.5 BUILD_DEPENDS="python python-setuptools" 403.6 403.7 +current_version() 403.8 +{ 403.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 403.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 403.11 +} 403.12 + 403.13 # Rules to configure and make the package. 403.14 compile_rules() 403.15 {
404.1 --- a/python-incremental/receipt Sun May 30 10:18:33 2021 +0100 404.2 +++ b/python-incremental/receipt Tue Jun 08 08:46:05 2021 +0000 404.3 @@ -14,6 +14,12 @@ 404.4 DEPENDS="python" 404.5 BUILD_DEPENDS="python-setuptools" 404.6 404.7 +current_version() 404.8 +{ 404.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 404.10 + sed '/archive.*tar/!d;s|.*/incremental-\(.*\).tar.*|\1|;q' 404.11 +} 404.12 + 404.13 # Rules to configure and make the package. 404.14 compile_rules() 404.15 {
405.1 --- a/python-invoice2data/receipt Sun May 30 10:18:33 2021 +0100 405.2 +++ b/python-invoice2data/receipt Tue Jun 08 08:46:05 2021 +0000 405.3 @@ -15,6 +15,12 @@ 405.4 DEPENDS="poppler-apps python" 405.5 BUILD_DEPENDS="python python-setuptools" 405.6 405.7 +current_version() 405.8 +{ 405.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 405.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 405.11 +} 405.12 + 405.13 # Rules to configure and make the package. 405.14 compile_rules() 405.15 {
406.1 --- a/python-numpy/receipt Sun May 30 10:18:33 2021 +0100 406.2 +++ b/python-numpy/receipt Tue Jun 08 08:46:05 2021 +0000 406.3 @@ -15,6 +15,12 @@ 406.4 DEPENDS="python" 406.5 BUILD_DEPENDS="python python-cython python-dev python-setuptools" 406.6 406.7 +current_version() 406.8 +{ 406.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 406.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 406.11 +} 406.12 + 406.13 # Rules to configure and make the package. 406.14 compile_rules() 406.15 {
407.1 --- a/python-odoorpc/receipt Sun May 30 10:18:33 2021 +0100 407.2 +++ b/python-odoorpc/receipt Tue Jun 08 08:46:05 2021 +0000 407.3 @@ -12,6 +12,12 @@ 407.4 407.5 DEPENDS="python" 407.6 407.7 +current_version() 407.8 +{ 407.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 407.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 407.11 +} 407.12 + 407.13 # Rules to configure and make the package. 407.14 compile_rules() 407.15 {
408.1 --- a/python-paho-mqtt/receipt Sun May 30 10:18:33 2021 +0100 408.2 +++ b/python-paho-mqtt/receipt Tue Jun 08 08:46:05 2021 +0000 408.3 @@ -14,6 +14,12 @@ 408.4 DEPENDS="python" 408.5 BUILD_DEPENDS="python python-setuptools" 408.6 408.7 +current_version() 408.8 +{ 408.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 408.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 408.11 +} 408.12 + 408.13 # Rules to configure and make the package. 408.14 compile_rules() 408.15 {
409.1 --- a/python-pip/receipt Sun May 30 10:18:33 2021 +0100 409.2 +++ b/python-pip/receipt Tue Jun 08 08:46:05 2021 +0000 409.3 @@ -15,6 +15,12 @@ 409.4 DEPENDS="python" 409.5 BUILD_DEPENDS="python python-setuptools" 409.6 409.7 +current_version() 409.8 +{ 409.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 409.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 409.11 +} 409.12 + 409.13 # Rules to configure and make the package. 409.14 compile_rules() 409.15 {
410.1 --- a/python-pyflakes/receipt Sun May 30 10:18:33 2021 +0100 410.2 +++ b/python-pyflakes/receipt Tue Jun 08 08:46:05 2021 +0000 410.3 @@ -15,6 +15,12 @@ 410.4 DEPENDS="python" 410.5 BUILD_DEPENDS="python python-dev python-setuptools" 410.6 410.7 +current_version() 410.8 +{ 410.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 410.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 410.11 +} 410.12 + 410.13 # Rules to configure and make the package. 410.14 compile_rules() 410.15 {
411.1 --- a/python-pynacl/receipt Sun May 30 10:18:33 2021 +0100 411.2 +++ b/python-pynacl/receipt Tue Jun 08 08:46:05 2021 +0000 411.3 @@ -14,6 +14,12 @@ 411.4 DEPENDS="python libsodium" 411.5 BUILD_DEPENDS="python-setuptools python-dev libmagic libsodium-dev" 411.6 411.7 +current_version() 411.8 +{ 411.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 411.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 411.11 +} 411.12 + 411.13 # Rules to configure and make the package. 411.14 compile_rules() 411.15 {
412.1 --- a/python-pyst2/receipt Sun May 30 10:18:33 2021 +0100 412.2 +++ b/python-pyst2/receipt Tue Jun 08 08:46:05 2021 +0000 412.3 @@ -13,6 +13,12 @@ 412.4 DEPENDS="python" 412.5 BUILD_DEPENDS="python-setuptools" 412.6 412.7 +current_version() 412.8 +{ 412.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 412.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 412.11 +} 412.12 + 412.13 # Rules to configure and make the package. 412.14 compile_rules() 412.15 {
413.1 --- a/python-scapy/receipt Sun May 30 10:18:33 2021 +0100 413.2 +++ b/python-scapy/receipt Tue Jun 08 08:46:05 2021 +0000 413.3 @@ -15,6 +15,12 @@ 413.4 DEPENDS="python" 413.5 BUILD_DEPENDS="python python-setuptools" 413.6 413.7 +current_version() 413.8 +{ 413.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 413.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 413.11 +} 413.12 + 413.13 # Rules to configure and make the package. 413.14 compile_rules() 413.15 {
414.1 --- a/python-setuptools/receipt Sun May 30 10:18:33 2021 +0100 414.2 +++ b/python-setuptools/receipt Tue Jun 08 08:46:05 2021 +0000 414.3 @@ -15,6 +15,12 @@ 414.4 DEPENDS="python" 414.5 BUILD_DEPENDS="python python-dev" 414.6 414.7 +current_version() 414.8 +{ 414.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 414.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 414.11 +} 414.12 + 414.13 # Rules to configure and make the package. 414.14 compile_rules() 414.15 {
415.1 --- a/python-socketpool/receipt Sun May 30 10:18:33 2021 +0100 415.2 +++ b/python-socketpool/receipt Tue Jun 08 08:46:05 2021 +0000 415.3 @@ -15,6 +15,12 @@ 415.4 DEPENDS="python" 415.5 BUILD_DEPENDS="python python-dev python-setuptools" 415.6 415.7 +current_version() 415.8 +{ 415.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 415.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 415.11 +} 415.12 + 415.13 # Rules to configure and make the package. 415.14 compile_rules() 415.15 {
416.1 --- a/python-tornado/receipt Sun May 30 10:18:33 2021 +0100 416.2 +++ b/python-tornado/receipt Tue Jun 08 08:46:05 2021 +0000 416.3 @@ -14,6 +14,12 @@ 416.4 DEPENDS="python python-backports_abc python-futures python-singledispatch" 416.5 BUILD_DEPENDS="python python-dev" 416.6 416.7 +current_version() 416.8 +{ 416.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 416.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 416.11 +} 416.12 + 416.13 # Rules to configure and make the package. 416.14 compile_rules() 416.15 {
417.1 --- a/python-unicodecsv/receipt Sun May 30 10:18:33 2021 +0100 417.2 +++ b/python-unicodecsv/receipt Tue Jun 08 08:46:05 2021 +0000 417.3 @@ -14,6 +14,12 @@ 417.4 DEPENDS="python" 417.5 BUILD_DEPENDS="python python-setuptools" 417.6 417.7 +current_version() 417.8 +{ 417.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 417.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 417.11 +} 417.12 + 417.13 # Rules to configure and make the package. 417.14 compile_rules() 417.15 {
418.1 --- a/python-werkzeug/receipt Sun May 30 10:18:33 2021 +0100 418.2 +++ b/python-werkzeug/receipt Tue Jun 08 08:46:05 2021 +0000 418.3 @@ -14,6 +14,12 @@ 418.4 DEPENDS="python" 418.5 BUILD_DEPENDS="python python-dev python-setuptools" 418.6 418.7 +current_version() 418.8 +{ 418.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 418.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 418.11 +} 418.12 + 418.13 # Rules to configure and make the package. 418.14 compile_rules() 418.15 {
419.1 --- a/qdirstat/receipt Sun May 30 10:18:33 2021 +0100 419.2 +++ b/qdirstat/receipt Tue Jun 08 08:46:05 2021 +0000 419.3 @@ -14,6 +14,12 @@ 419.4 DEPENDS="qt4" 419.5 BUILD_DEPENDS="Qt4-dev qmake" 419.6 419.7 +current_version() 419.8 +{ 419.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 419.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 419.11 +} 419.12 + 419.13 # Rules to configure and make the package. 419.14 compile_rules() 419.15 {
420.1 --- a/qjson/receipt Sun May 30 10:18:33 2021 +0100 420.2 +++ b/qjson/receipt Tue Jun 08 08:46:05 2021 +0000 420.3 @@ -14,6 +14,12 @@ 420.4 DEPENDS="libQtGui libQtNetwork libQtSql libcrypto" 420.5 BUILD_DEPENDS="Qt4-dev qmake cmake wget" 420.6 420.7 +current_version() 420.8 +{ 420.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 420.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 420.11 +} 420.12 + 420.13 # Rules to configure and make the package. 420.14 compile_rules() 420.15 {
421.1 --- a/qlcplus/receipt Sun May 30 10:18:33 2021 +0100 421.2 +++ b/qlcplus/receipt Tue Jun 08 08:46:05 2021 +0000 421.3 @@ -14,6 +14,12 @@ 421.4 DEPENDS="alsa-lib libftdi libQtGui libQtNetwork libQtScript ola" 421.5 BUILD_DEPENDS="alsa-lib-dev libftdi-dev libusb-dev ola-dev qmake Qt4-dev" 421.6 421.7 +current_version() 421.8 +{ 421.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 421.10 + sed '/archive.*tar/!d;s|.*/QLC+_\(.*\).tar.*|\1|;q' 421.11 +} 421.12 + 421.13 # Rules to configure and make the package. 421.14 compile_rules() 421.15 {
422.1 --- a/qoauth/receipt Sun May 30 10:18:33 2021 +0100 422.2 +++ b/qoauth/receipt Tue Jun 08 08:46:05 2021 +0000 422.3 @@ -16,6 +16,12 @@ 422.4 libQtWebkit libQtXml" 422.5 BUILD_DEPENDS="dbus-dev qca-dev qmake Qt4-dev slitaz-toolchain xorg-libX11-dev" 422.6 422.7 +current_version() 422.8 +{ 422.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 422.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 422.11 +} 422.12 + 422.13 # Rules to configure and make the package. 422.14 compile_rules() 422.15 {
423.1 --- a/qpdf/receipt Sun May 30 10:18:33 2021 +0100 423.2 +++ b/qpdf/receipt Tue Jun 08 08:46:05 2021 +0000 423.3 @@ -14,6 +14,12 @@ 423.4 DEPENDS="libjpeg pcre zlib" 423.5 BUILD_DEPENDS="jpeg-dev pcre-dev zlib-dev" 423.6 423.7 +current_version() 423.8 +{ 423.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 423.10 + sed '/archive.*tar/!d;s|.*/release-qpdf-\(.*\).tar.*|\1|;q' 423.11 +} 423.12 + 423.13 # Rules to configure and make the package. 423.14 compile_rules() 423.15 {
424.1 --- a/qrencode/receipt Sun May 30 10:18:33 2021 +0100 424.2 +++ b/qrencode/receipt Tue Jun 08 08:46:05 2021 +0000 424.3 @@ -14,6 +14,12 @@ 424.4 DEPENDS="libpng" 424.5 BUILD_DEPENDS="automake libpng-dev libtool" 424.6 424.7 +current_version() 424.8 +{ 424.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 424.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 424.11 +} 424.12 + 424.13 # Rules to configure and make the package. 424.14 compile_rules() 424.15 {
425.1 --- a/qterminal/receipt Sun May 30 10:18:33 2021 +0100 425.2 +++ b/qterminal/receipt Tue Jun 08 08:46:05 2021 +0000 425.3 @@ -20,6 +20,12 @@ 425.4 GENERIC_PIXMAPS="no" 425.5 GENERIC_MENUS="no" 425.6 425.7 +current_version() 425.8 +{ 425.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 425.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 425.11 +} 425.12 + 425.13 # Rules to configure and make the package. 425.14 compile_rules() 425.15 {
426.1 --- a/qtkeychain/receipt Sun May 30 10:18:33 2021 +0100 426.2 +++ b/qtkeychain/receipt Tue Jun 08 08:46:05 2021 +0000 426.3 @@ -14,6 +14,12 @@ 426.4 DEPENDS="gcc83-lib-base libQtDBus" 426.5 BUILD_DEPENDS="cmake gcc83 Qt4-dev qmake" 426.6 426.7 +current_version() 426.8 +{ 426.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 426.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 426.11 +} 426.12 + 426.13 # Rules to configure and make the package. 426.14 compile_rules() 426.15 {
427.1 --- a/quazip/receipt Sun May 30 10:18:33 2021 +0100 427.2 +++ b/quazip/receipt Tue Jun 08 08:46:05 2021 +0000 427.3 @@ -14,6 +14,12 @@ 427.4 DEPENDS="zlib" 427.5 BUILD_DEPENDS="qmake Qt4-dev zlib-dev" 427.6 427.7 +current_version() 427.8 +{ 427.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 427.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 427.11 +} 427.12 + 427.13 # Rules to configure and make the package. 427.14 compile_rules() 427.15 {
428.1 --- a/qupzilla/receipt Sun May 30 10:18:33 2021 +0100 428.2 +++ b/qupzilla/receipt Tue Jun 08 08:46:05 2021 +0000 428.3 @@ -17,6 +17,12 @@ 428.4 BUILD_DEPENDS="wget cacerts Qt4-dev qmake openssl-dev xorg-libX11-dev" 428.5 SUGGESTED="libQtWebkit-video qupzilla-locales" 428.6 428.7 +current_version() 428.8 +{ 428.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 428.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 428.11 +} 428.12 + 428.13 # Rules to configure and make the PACKAGE. 428.14 compile_rules() 428.15 {
429.1 --- a/qxmpp/receipt Sun May 30 10:18:33 2021 +0100 429.2 +++ b/qxmpp/receipt Tue Jun 08 08:46:05 2021 +0000 429.3 @@ -14,6 +14,12 @@ 429.4 BUILD_DEPENDS="qmake Qt4-dev speex-dev libtheora-dev libogg-dev libvpx-dev \ 429.5 doxygen wget" 429.6 429.7 +current_version() 429.8 +{ 429.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 429.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 429.11 +} 429.12 + 429.13 # Rules to configure and make the package. 429.14 compile_rules() 429.15 {
430.1 --- a/ranger/receipt Sun May 30 10:18:33 2021 +0100 430.2 +++ b/ranger/receipt Tue Jun 08 08:46:05 2021 +0000 430.3 @@ -15,6 +15,12 @@ 430.4 DEPENDS="python" 430.5 BUILD_DEPENDS="python python-dev" 430.6 430.7 +current_version() 430.8 +{ 430.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 430.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 430.11 +} 430.12 + 430.13 # Rules to configure and make the package. 430.14 compile_rules() 430.15 {
431.1 --- a/razorqt/receipt Sun May 30 10:18:33 2021 +0100 431.2 +++ b/razorqt/receipt Tue Jun 08 08:46:05 2021 +0000 431.3 @@ -20,6 +20,12 @@ 431.4 431.5 GENERIC_MENUS="no" 431.6 431.7 +current_version() 431.8 +{ 431.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 431.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 431.11 +} 431.12 + 431.13 # Rules to configure and make the package. 431.14 compile_rules() 431.15 {
432.1 --- a/rdesktop/receipt Sun May 30 10:18:33 2021 +0100 432.2 +++ b/rdesktop/receipt Tue Jun 08 08:46:05 2021 +0000 432.3 @@ -1,7 +1,7 @@ 432.4 # SliTaz package receipt. 432.5 432.6 PACKAGE="rdesktop" 432.7 -VERSION="1.9.0" 432.8 +VERSION="1.8.6" 432.9 CATEGORY="network" 432.10 TAGS="rdp remote-desktop" 432.11 SHORT_DESC="Remote Desktop Protocol (RDP) client for Windows terminal server." 432.12 @@ -17,6 +17,12 @@ 432.13 BUILD_DEPENDS="autoconf automake gnutls-dev libgnutls libtasn1-dev nettle-dev 432.14 openssl-dev pcsc-lite-dev xorg-dev" 432.15 432.16 +current_version() 432.17 +{ 432.18 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 432.19 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 432.20 +} 432.21 + 432.22 # Rules to configure and make the package. 432.23 compile_rules() 432.24 {
433.1 --- a/re2c/receipt Sun May 30 10:18:33 2021 +0100 433.2 +++ b/re2c/receipt Tue Jun 08 08:46:05 2021 +0000 433.3 @@ -14,6 +14,12 @@ 433.4 433.5 BUILD_DEPENDS="automake libtool" 433.6 433.7 +current_version() 433.8 +{ 433.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 433.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 433.11 +} 433.12 + 433.13 # Rules to configure and make the package. 433.14 compile_rules() 433.15 {
434.1 --- a/reaver/receipt Sun May 30 10:18:33 2021 +0100 434.2 +++ b/reaver/receipt Tue Jun 08 08:46:05 2021 +0000 434.3 @@ -14,6 +14,12 @@ 434.4 DEPENDS="aircrack-ng libpcap pixiewps" 434.5 BUILD_DEPENDS="libpcap-dev" 434.6 434.7 +current_version() 434.8 +{ 434.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 434.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 434.11 +} 434.12 + 434.13 # Rules to configure and make the package. 434.14 compile_rules() 434.15 {
435.1 --- a/redshift/receipt Sun May 30 10:18:33 2021 +0100 435.2 +++ b/redshift/receipt Tue Jun 08 08:46:05 2021 +0000 435.3 @@ -14,6 +14,12 @@ 435.4 DEPENDS="python" 435.5 BUILD_DEPENDS="python" 435.6 435.7 +current_version() 435.8 +{ 435.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 435.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 435.11 +} 435.12 + 435.13 # Rules to configure and make the package. 435.14 compile_rules() 435.15 {
436.1 --- a/reptyr/receipt Sun May 30 10:18:33 2021 +0100 436.2 +++ b/reptyr/receipt Tue Jun 08 08:46:05 2021 +0000 436.3 @@ -13,6 +13,12 @@ 436.4 DEPENDS="" 436.5 BUILD_DEPENDS="wget" 436.6 436.7 +current_version() 436.8 +{ 436.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 436.10 + sed '/archive.*tar/!d;s|.*/reptyr-\(.*\).tar.*|\1|;q' 436.11 +} 436.12 + 436.13 # Rules to configure and make the package. 436.14 compile_rules() 436.15 {
437.1 --- a/reqflow/receipt Sun May 30 10:18:33 2021 +0100 437.2 +++ b/reqflow/receipt Tue Jun 08 08:46:05 2021 +0000 437.3 @@ -14,6 +14,12 @@ 437.4 DEPENDS="libxml2 libzip pcre poppler zlib" 437.5 BUILD_DEPENDS="libxml2-dev libzip-dev pcre-dev poppler-dev zlib-dev" 437.6 437.7 +current_version() 437.8 +{ 437.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 437.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 437.11 +} 437.12 + 437.13 # Rules to configure and make the package. 437.14 compile_rules() 437.15 {
438.1 --- a/rhythmcat2/receipt Sun May 30 10:18:33 2021 +0100 438.2 +++ b/rhythmcat2/receipt Tue Jun 08 08:46:05 2021 +0000 438.3 @@ -14,6 +14,12 @@ 438.4 DEPENDS="gst-plugins-base gtk+3 xorg-libXdamage" 438.5 BUILD_DEPENDS="gstreamer-dev gst-plugins-base-dev gtk+3-dev curl-dev" 438.6 438.7 +current_version() 438.8 +{ 438.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 438.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 438.11 +} 438.12 + 438.13 # Rules to configure and make the package. 438.14 compile_rules() 438.15 {
439.1 --- a/rspamd/receipt Sun May 30 10:18:33 2021 +0100 439.2 +++ b/rspamd/receipt Tue Jun 08 08:46:05 2021 +0000 439.3 @@ -16,6 +16,12 @@ 439.4 libmagic-dev lua-dev luajit-dev openssl-dev perl pkg-config \ 439.5 ragel sqlite-dev" 439.6 439.7 +current_version() 439.8 +{ 439.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 439.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 439.11 +} 439.12 + 439.13 # Rules to configure and make the package. 439.14 compile_rules() 439.15 {
440.1 --- a/rtorrent/receipt Sun May 30 10:18:33 2021 +0100 440.2 +++ b/rtorrent/receipt Tue Jun 08 08:46:05 2021 +0000 440.3 @@ -15,6 +15,12 @@ 440.4 BUILD_DEPENDS="ncurses-dev libtorrent-dev libtorrent pkg-config xmlrpc-c-dev \ 440.5 libsigc++-dev curl-dev automake libtool" 440.6 440.7 +current_version() 440.8 +{ 440.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 440.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 440.11 +} 440.12 + 440.13 # Rules to configure and make the package. 440.14 compile_rules() 440.15 {
441.1 --- a/ruby-native-package-installer/receipt Sun May 30 10:18:33 2021 +0100 441.2 +++ b/ruby-native-package-installer/receipt Tue Jun 08 08:46:05 2021 +0000 441.3 @@ -17,6 +17,12 @@ 441.4 441.5 COOK_OPT="!repack_src !unpack" 441.6 441.7 +current_version() 441.8 +{ 441.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 441.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 441.11 +} 441.12 + 441.13 # Rules to configure and make the package. 441.14 compile_rules() 441.15 {
442.1 --- a/ruby-pkgconfig/receipt Sun May 30 10:18:33 2021 +0100 442.2 +++ b/ruby-pkgconfig/receipt Tue Jun 08 08:46:05 2021 +0000 442.3 @@ -15,6 +15,12 @@ 442.4 DEPENDS="ruby" 442.5 BUILD_DEPENDS="ruby-dev rubygems" 442.6 442.7 +current_version() 442.8 +{ 442.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 442.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 442.11 +} 442.12 + 442.13 # Rules to configure and make the package. 442.14 compile_rules() 442.15 {
443.1 --- a/scim/receipt Sun May 30 10:18:33 2021 +0100 443.2 +++ b/scim/receipt Tue Jun 08 08:46:05 2021 +0000 443.3 @@ -15,6 +15,12 @@ 443.4 BUILD_DEPENDS="gtk+-dev libtool xz gettext-tools" 443.5 CONFIG_FILES="/etc/scim/config /etc/scim/global" 443.6 443.7 +current_version() 443.8 +{ 443.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 443.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 443.11 +} 443.12 + 443.13 # Rules to configure and make the package. 443.14 compile_rules() 443.15 {
444.1 --- a/screentest/receipt Sun May 30 10:18:33 2021 +0100 444.2 +++ b/screentest/receipt Tue Jun 08 08:46:05 2021 +0000 444.3 @@ -15,6 +15,12 @@ 444.4 BUILD_DEPENDS="wget gtk+-dev libglade-dev automake autoconf libtool pkg-config \ 444.5 file" 444.6 444.7 +current_version() 444.8 +{ 444.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 444.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 444.11 +} 444.12 + 444.13 # Rules to configure and make the package. 444.14 compile_rules() 444.15 {
445.1 --- a/scrub/receipt Sun May 30 10:18:33 2021 +0100 445.2 +++ b/scrub/receipt Tue Jun 08 08:46:05 2021 +0000 445.3 @@ -14,6 +14,12 @@ 445.4 DEPENDS="" 445.5 BUILD_DEPENDS="perl" 445.6 445.7 +current_version() 445.8 +{ 445.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 445.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 445.11 +} 445.12 + 445.13 # Rules to configure and make the package. 445.14 compile_rules() 445.15 {
446.1 --- a/shaarli/receipt Sun May 30 10:18:33 2021 +0100 446.2 +++ b/shaarli/receipt Tue Jun 08 08:46:05 2021 +0000 446.3 @@ -16,6 +16,12 @@ 446.4 446.5 HOST_ARCH="any" 446.6 446.7 +current_version() 446.8 +{ 446.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 446.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 446.11 +} 446.12 + 446.13 # Rules to gen a SliTaz package suitable for Tazpkg. 446.14 genpkg_rules() 446.15 {
447.1 --- a/shaarlo/receipt Sun May 30 10:18:33 2021 +0100 447.2 +++ b/shaarlo/receipt Tue Jun 08 08:46:05 2021 +0000 447.3 @@ -18,6 +18,12 @@ 447.4 447.5 HOST_ARCH="any" 447.6 447.7 +current_version() 447.8 +{ 447.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 447.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 447.11 +} 447.12 + 447.13 # Rules to gen a SliTaz package suitable for Tazpkg. 447.14 genpkg_rules() 447.15 {
448.1 --- a/shake/receipt Sun May 30 10:18:33 2021 +0100 448.2 +++ b/shake/receipt Tue Jun 08 08:46:05 2021 +0000 448.3 @@ -15,6 +15,12 @@ 448.4 DEPENDS="attr" 448.5 BUILD_DEPENDS="attr attr-dev cmake help2man" 448.6 448.7 +current_version() 448.8 +{ 448.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 448.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 448.11 +} 448.12 + 448.13 # Rules to configure and make the package. 448.14 compile_rules() 448.15 {
449.1 --- a/shared-mime-info/receipt Sun May 30 10:18:33 2021 +0100 449.2 +++ b/shared-mime-info/receipt Tue Jun 08 08:46:05 2021 +0000 449.3 @@ -21,6 +21,12 @@ 449.4 arm*) BUILD_DEPENDS="glib-dev libxml2-dev" ;; 449.5 esac 449.6 449.7 +current_version() 449.8 +{ 449.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 449.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 449.11 +} 449.12 + 449.13 # Rules to configure and make the package. 449.14 compile_rules() 449.15 {
450.1 --- a/simple-mtpfs/receipt Sun May 30 10:18:33 2021 +0100 450.2 +++ b/simple-mtpfs/receipt Tue Jun 08 08:46:05 2021 +0000 450.3 @@ -16,6 +16,12 @@ 450.4 450.5 HOST_ARCH="i486 arm" 450.6 450.7 +current_version() 450.8 +{ 450.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 450.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 450.11 +} 450.12 + 450.13 # Rules to configure and make the package. 450.14 compile_rules() 450.15 {
451.1 --- a/sipsak/receipt Sun May 30 10:18:33 2021 +0100 451.2 +++ b/sipsak/receipt Tue Jun 08 08:46:05 2021 +0000 451.3 @@ -14,6 +14,12 @@ 451.4 DEPENDS="gnutls libcrypto zlib" 451.5 BUILD_DEPENDS="libtool libcrypto libcrypto-dev" 451.6 451.7 +current_version() 451.8 +{ 451.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 451.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 451.11 +} 451.12 + 451.13 # Rules to configure and make the package. 451.14 compile_rules() 451.15 {
452.1 --- a/sleuthkit/receipt Sun May 30 10:18:33 2021 +0100 452.2 +++ b/sleuthkit/receipt Tue Jun 08 08:46:05 2021 +0000 452.3 @@ -14,6 +14,12 @@ 452.4 DEPENDS="gcc83-lib-base perl" 452.5 BUILD_DEPENDS="gcc83 libpthread-stubs perl sqlite-dev" 452.6 452.7 +current_version() 452.8 +{ 452.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 452.10 + sed '/archive.*tar/!d;s|.*/sleuthkit-\(.*\).tar.*|\1|;q' 452.11 +} 452.12 + 452.13 # Rules to configure and make the package. 452.14 compile_rules() 452.15 {
453.1 --- a/slitaz-backgrounds/receipt Sun May 30 10:18:33 2021 +0100 453.2 +++ b/slitaz-backgrounds/receipt Tue Jun 08 08:46:05 2021 +0000 453.3 @@ -12,6 +12,12 @@ 453.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 453.5 WGET_URL="$WEB_SITE/archive/$COMMIT.tar.gz" 453.6 453.7 +current_version() 453.8 +{ 453.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 453.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 453.11 +} 453.12 + 453.13 # Rules to configure and make the package. 453.14 compile_rules() 453.15 {
454.1 --- a/snimpy/receipt Sun May 30 10:18:33 2021 +0100 454.2 +++ b/snimpy/receipt Tue Jun 08 08:46:05 2021 +0000 454.3 @@ -13,6 +13,12 @@ 454.4 DEPENDS="python" 454.5 BUILD_DEPENDS="wget python-dev python-setuptools libffi-dev glib" 454.6 454.7 +current_version() 454.8 +{ 454.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 454.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 454.11 +} 454.12 + 454.13 # Rules to configure and make the package. 454.14 compile_rules() 454.15 {
455.1 --- a/spacefm/receipt Sun May 30 10:18:33 2021 +0100 455.2 +++ b/spacefm/receipt Tue Jun 08 08:46:05 2021 +0000 455.3 @@ -18,6 +18,12 @@ 455.4 gdk-pixbuf-dev gtk+-dev intltool libxcb-dev startup-notification-dev 455.5 udev-dev xcb-util-dev" 455.6 455.7 +current_version() 455.8 +{ 455.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 455.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 455.11 +} 455.12 + 455.13 # Rules to configure and make the package. 455.14 compile_rules() 455.15 {
456.1 --- a/spectrwm/receipt Sun May 30 10:18:33 2021 +0100 456.2 +++ b/spectrwm/receipt Tue Jun 08 08:46:05 2021 +0000 456.3 @@ -19,6 +19,12 @@ 456.4 456.5 CONFIG_FILES="/etc/spectrwm.conf" 456.6 456.7 +current_version() 456.8 +{ 456.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 456.10 + sed '/archive.*tar/!d;s|.*/SPECTRWM_\(.*\).tar.*|\1|;s|_|.|g;q' 456.11 +} 456.12 + 456.13 # Rules to configure and make the package. 456.14 compile_rules() 456.15 {
457.1 --- a/speech-dispatcher/receipt Sun May 30 10:18:33 2021 +0100 457.2 +++ b/speech-dispatcher/receipt Tue Jun 08 08:46:05 2021 +0000 457.3 @@ -16,6 +16,12 @@ 457.4 libvorbis-dev flac-dev libsndfile-dev pkg-config python-dev texinfo" 457.5 SUGGESTED="libvorbis flac" 457.6 457.7 +current_version() 457.8 +{ 457.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 457.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 457.11 +} 457.12 + 457.13 # Rules to configure and make the package. 457.14 compile_rules() 457.15 {
458.1 --- a/spl/receipt Sun May 30 10:18:33 2021 +0100 458.2 +++ b/spl/receipt Tue Jun 08 08:46:05 2021 +0000 458.3 @@ -14,6 +14,12 @@ 458.4 DEPENDS="" 458.5 BUILD_DEPENDS="linux-module-headers" 458.6 458.7 +current_version() 458.8 +{ 458.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 458.10 + sed '/archive.*tar/!d;s|.*/zfs-\(.*\).tar.*|\1|;q' 458.11 +} 458.12 + 458.13 # Rules to configure and make the package. 458.14 compile_rules() 458.15 {
459.1 --- a/squashfs/receipt Sun May 30 10:18:33 2021 +0100 459.2 +++ b/squashfs/receipt Tue Jun 08 08:46:05 2021 +0000 459.3 @@ -14,6 +14,12 @@ 459.4 DEPENDS="liblzma linux-squashfs lz4-lib lzo zlib" 459.5 BUILD_DEPENDS="attr-dev liblzma-dev lz4-dev lzo-dev zlib-dev" 459.6 459.7 +current_version() 459.8 +{ 459.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 459.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 459.11 +} 459.12 + 459.13 # Rules to configure and make the package. 459.14 compile_rules() 459.15 {
460.1 --- a/squidanalyzer/receipt Sun May 30 10:18:33 2021 +0100 460.2 +++ b/squidanalyzer/receipt Tue Jun 08 08:46:05 2021 +0000 460.3 @@ -16,6 +16,12 @@ 460.4 BUILD_DEPENDS="perl" 460.5 SUGGESTED="logrotate" 460.6 460.7 +current_version() 460.8 +{ 460.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 460.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 460.11 +} 460.12 + 460.13 # Rules to configure and make the package. 460.14 compile_rules() 460.15 {
461.1 --- a/sshfp/receipt Sun May 30 10:18:33 2021 +0100 461.2 +++ b/sshfp/receipt Tue Jun 08 08:46:05 2021 +0000 461.3 @@ -13,6 +13,12 @@ 461.4 DEPENDS="python-dnspython" 461.5 BUILD_DEPENDS="wget" 461.6 461.7 +current_version() 461.8 +{ 461.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 461.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 461.11 +} 461.12 + 461.13 # Rules to configure and make the package. 461.14 compile_rules() 461.15 {
462.1 --- a/sshfs-fuse/receipt Sun May 30 10:18:33 2021 +0100 462.2 +++ b/sshfs-fuse/receipt Tue Jun 08 08:46:05 2021 +0000 462.3 @@ -17,6 +17,12 @@ 462.4 SUGGESTED="afuse" 462.5 BUILD_DEPENDS="fuse-dev gettext glib-dev pkg-config autoconf automake libtool" 462.6 462.7 +current_version() 462.8 +{ 462.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 462.10 + sed '/archive.*tar/!d;s|.*/sshfs-\(.*\).tar.*|\1|;q' 462.11 +} 462.12 + 462.13 # Rules to configure and make the package. 462.14 compile_rules() 462.15 {
463.1 --- a/sshttp/receipt Sun May 30 10:18:33 2021 +0100 463.2 +++ b/sshttp/receipt Tue Jun 08 08:46:05 2021 +0000 463.3 @@ -15,6 +15,12 @@ 463.4 DEPENDS="gcc83-lib-base libcap" 463.5 BUILD_DEPENDS="gcc83 libcap-dev libidn" 463.6 463.7 +current_version() 463.8 +{ 463.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 463.10 + sed '/archive.*tar/!d;s|.*/sshttp-splice-\(.*\).tar.*|\1|;s|-|.|g;q' 463.11 +} 463.12 + 463.13 # Rules to configure and make the package. 463.14 compile_rules() 463.15 {
464.1 --- a/sslscan/receipt Sun May 30 10:18:33 2021 +0100 464.2 +++ b/sslscan/receipt Tue Jun 08 08:46:05 2021 +0000 464.3 @@ -14,6 +14,12 @@ 464.4 DEPENDS="libssl zlib" 464.5 BUILD_DEPENDS="git openssl-dev zlib-dev" 464.6 464.7 +current_version() 464.8 +{ 464.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 464.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 464.11 +} 464.12 + 464.13 # Rules to configure and make the package. 464.14 compile_rules() 464.15 {
465.1 --- a/stella/receipt Sun May 30 10:18:33 2021 +0100 465.2 +++ b/stella/receipt Tue Jun 08 08:46:05 2021 +0000 465.3 @@ -15,6 +15,12 @@ 465.4 DEPENDS="gcc83-lib-base libpng libsdl2" 465.5 BUILD_DEPENDS="gcc83 libpng-dev libsdl2-dev zlib-dev" 465.6 465.7 +current_version() 465.8 +{ 465.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 465.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 465.11 +} 465.12 + 465.13 # Rules to configure and make the package. 465.14 compile_rules() 465.15 {
466.1 --- a/stjerm-terminal/receipt Sun May 30 10:18:33 2021 +0100 466.2 +++ b/stjerm-terminal/receipt Tue Jun 08 08:46:05 2021 +0000 466.3 @@ -16,6 +16,12 @@ 466.4 DEPENDS="vte" 466.5 BUILD_DEPENDS="automake glib-dev gtk+-dev vte-dev" 466.6 466.7 +current_version() 466.8 +{ 466.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 466.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 466.11 +} 466.12 + 466.13 # Rules to configure and make the package. 466.14 compile_rules() 466.15 {
467.1 --- a/stoqdrivers/receipt Sun May 30 10:18:33 2021 +0100 467.2 +++ b/stoqdrivers/receipt Tue Jun 08 08:46:05 2021 +0000 467.3 @@ -15,6 +15,12 @@ 467.4 DEPENDS="python python-kiwi python-serial zopeinterface" 467.5 BUILD_DEPENDS="python python-dev python-kiwi python-serial zopeinterface" 467.6 467.7 +current_version() 467.8 +{ 467.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 467.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 467.11 +} 467.12 + 467.13 # Rules to configure and make the package. 467.14 compile_rules() 467.15 {
468.1 --- a/strace/receipt Sun May 30 10:18:33 2021 +0100 468.2 +++ b/strace/receipt Tue Jun 08 08:46:05 2021 +0000 468.3 @@ -12,6 +12,12 @@ 468.4 TARBALL="$PACKAGE-$VERSION.tar.xz" 468.5 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" 468.6 468.7 +current_version() 468.8 +{ 468.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 468.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 468.11 +} 468.12 + 468.13 # Rules to configure and make the package. 468.14 compile_rules() 468.15 {
469.1 --- a/suplemon/receipt Sun May 30 10:18:33 2021 +0100 469.2 +++ b/suplemon/receipt Tue Jun 08 08:46:05 2021 +0000 469.3 @@ -14,6 +14,12 @@ 469.4 DEPENDS="py3k" 469.5 BUILD_DEPENDS="py3k-dev" 469.6 469.7 +current_version() 469.8 +{ 469.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 469.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 469.11 +} 469.12 + 469.13 # Rules to configure and make the package. 469.14 compile_rules() 469.15 {
470.1 --- a/svgcleaner/receipt Sun May 30 10:18:33 2021 +0100 470.2 +++ b/svgcleaner/receipt Tue Jun 08 08:46:05 2021 +0000 470.3 @@ -13,6 +13,12 @@ 470.4 470.5 BUILD_DEPENDS="rust-cargo cacerts" 470.6 470.7 +current_version() 470.8 +{ 470.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 470.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 470.11 +} 470.12 + 470.13 # Rules to configure and make the package. 470.14 compile_rules() 470.15 {
471.1 --- a/swagger-py/receipt Sun May 30 10:18:33 2021 +0100 471.2 +++ b/swagger-py/receipt Tue Jun 08 08:46:05 2021 +0000 471.3 @@ -13,6 +13,12 @@ 471.4 DEPENDS="python" 471.5 BUILD_DEPENDS="python python-setuptools" 471.6 471.7 +current_version() 471.8 +{ 471.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 471.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 471.11 +} 471.12 + 471.13 # Rules to configure and make the package. 471.14 compile_rules() 471.15 {
472.1 --- a/sxiv/receipt Sun May 30 10:18:33 2021 +0100 472.2 +++ b/sxiv/receipt Tue Jun 08 08:46:05 2021 +0000 472.3 @@ -13,6 +13,12 @@ 472.4 DEPENDS="giflib imlib2 libexif xdg-utils" 472.5 BUILD_DEPENDS="bzip2 giflib-dev imlib2-dev libexif-dev xorg-dev" 472.6 472.7 +current_version() 472.8 +{ 472.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 472.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 472.11 +} 472.12 + 472.13 # Rules to configure and make the package. 472.14 compile_rules() 472.15 {
473.1 --- a/symlinks/receipt Sun May 30 10:18:33 2021 +0100 473.2 +++ b/symlinks/receipt Tue Jun 08 08:46:05 2021 +0000 473.3 @@ -13,6 +13,12 @@ 473.4 DEPENDS="glibc-base" 473.5 BUILD_DEPENDS="wget cacerts" 473.6 473.7 +current_version() 473.8 +{ 473.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 473.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 473.11 +} 473.12 + 473.13 # Rules to configure and make the package. 473.14 compile_rules() 473.15 {
474.1 --- a/tcpcrypt/receipt Sun May 30 10:18:33 2021 +0100 474.2 +++ b/tcpcrypt/receipt Tue Jun 08 08:46:05 2021 +0000 474.3 @@ -14,6 +14,12 @@ 474.4 BUILD_DEPENDS="autoconf automake libtool m4 openssl-dev libpcap-dev libmnl \ 474.5 libnetfilter_conntrack-dev libnetfilter_queue-dev libnfnetlink-dev libcap-dev" 474.6 474.7 +current_version() 474.8 +{ 474.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 474.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 474.11 +} 474.12 + 474.13 # Rules to configure and make the package. 474.14 compile_rules() 474.15 {
475.1 --- a/tcplay/receipt Sun May 30 10:18:33 2021 +0100 475.2 +++ b/tcplay/receipt Tue Jun 08 08:46:05 2021 +0000 475.3 @@ -15,6 +15,12 @@ 475.4 BUILD_DEPENDS="cmake libdevmapper libdevmapper-dev libgcrypt-dev 475.5 openssl-dev util-linux-uuid-dev zlib-dev" 475.6 475.7 +current_version() 475.8 +{ 475.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 475.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 475.11 +} 475.12 + 475.13 # Rules to configure and make the package. 475.14 compile_rules() 475.15 {
476.1 --- a/tcsh/receipt Sun May 30 10:18:33 2021 +0100 476.2 +++ b/tcsh/receipt Tue Jun 08 08:46:05 2021 +0000 476.3 @@ -16,6 +16,12 @@ 476.4 #The following build dep will be necessary when glibc ups to 2.14. 476.5 #BUILD_DEPENDS="libtirpc" 476.6 476.7 +current_version() 476.8 +{ 476.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 476.10 + sed '/archive.*tar/!d;s|.*/TCSH\(.*\).tar.*|\1|;s|_|.|;q' 476.11 +} 476.12 + 476.13 # Rules to configure and make the package. 476.14 compile_rules() 476.15 {
477.1 --- a/tea/receipt Sun May 30 10:18:33 2021 +0100 477.2 +++ b/tea/receipt Tue Jun 08 08:46:05 2021 +0000 477.3 @@ -15,6 +15,12 @@ 477.4 DEPENDS="libQtCore libQtGui libQtXml xorg-libX11" 477.5 BUILD_DEPENDS="qmake Qt4-dev xorg-dev" 477.6 477.7 +current_version() 477.8 +{ 477.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 477.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 477.11 +} 477.12 + 477.13 # Rules to configure and make the package. 477.14 compile_rules() 477.15 {
478.1 --- a/terminator/receipt Sun May 30 10:18:33 2021 +0100 478.2 +++ b/terminator/receipt Tue Jun 08 08:46:05 2021 +0000 478.3 @@ -14,6 +14,12 @@ 478.4 DEPENDS="notify-python pygtk python python-vte" 478.5 BUILD_DEPENDS="python-dev" 478.6 478.7 +current_version() 478.8 +{ 478.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 478.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 478.11 +} 478.12 + 478.13 # Rules to configure and make the package. 478.14 compile_rules() 478.15 {
479.1 --- a/thermald/receipt Sun May 30 10:18:33 2021 +0100 479.2 +++ b/thermald/receipt Tue Jun 08 08:46:05 2021 +0000 479.3 @@ -14,6 +14,12 @@ 479.4 DEPENDS="dbus dbus-glib" 479.5 BUILD_DEPENDS="automake dbus-dev dbus-glib-dev libxml2" 479.6 479.7 +current_version() 479.8 +{ 479.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 479.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 479.11 +} 479.12 + 479.13 # Rules to configure and make the package. 479.14 compile_rules() 479.15 {
480.1 --- a/tidy-html5/receipt Sun May 30 10:18:33 2021 +0100 480.2 +++ b/tidy-html5/receipt Tue Jun 08 08:46:05 2021 +0000 480.3 @@ -14,6 +14,12 @@ 480.4 DEPENDS="" 480.5 BUILD_DEPENDS="cmake libxslt" 480.6 480.7 +current_version() 480.8 +{ 480.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 480.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 480.11 +} 480.12 + 480.13 # Rules to configure and make the package. 480.14 compile_rules() 480.15 {
481.1 --- a/tig/receipt Sun May 30 10:18:33 2021 +0100 481.2 +++ b/tig/receipt Tue Jun 08 08:46:05 2021 +0000 481.3 @@ -14,6 +14,12 @@ 481.4 DEPENDS="ncurses" 481.5 BUILD_DEPENDS="libtool ncurses-dev" 481.6 481.7 +current_version() 481.8 +{ 481.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 481.10 + sed '/archive.*tar/!d;s|.*/tig-\(.*\).tar.*|\1|;q' 481.11 +} 481.12 + 481.13 # Rules to configure and make the package. 481.14 compile_rules() 481.15 {
482.1 --- a/tinyproxy/receipt Sun May 30 10:18:33 2021 +0100 482.2 +++ b/tinyproxy/receipt Tue Jun 08 08:46:05 2021 +0000 482.3 @@ -12,6 +12,12 @@ 482.4 482.5 BUILD_DEPENDS="wget automake" 482.6 482.7 +current_version() 482.8 +{ 482.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 482.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 482.11 +} 482.12 + 482.13 # Rules to configure and make the package. 482.14 compile_rules() 482.15 {
483.1 --- a/tinyssh-keyconvert/receipt Sun May 30 10:18:33 2021 +0100 483.2 +++ b/tinyssh-keyconvert/receipt Tue Jun 08 08:46:05 2021 +0000 483.3 @@ -13,6 +13,12 @@ 483.4 DEPENDS="python" 483.5 BUILD_DEPENDS="python-setuptools" 483.6 483.7 +current_version() 483.8 +{ 483.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 483.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 483.11 +} 483.12 + 483.13 # Rules to configure and make the package. 483.14 compile_rules() 483.15 {
484.1 --- a/tinyssh/receipt Sun May 30 10:18:33 2021 +0100 484.2 +++ b/tinyssh/receipt Tue Jun 08 08:46:05 2021 +0000 484.3 @@ -14,6 +14,12 @@ 484.4 484.5 SECRET_FILES="/etc/tinyssh/sshkeydir" 484.6 484.7 +current_version() 484.8 +{ 484.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 484.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 484.11 +} 484.12 + 484.13 # Rules to configure and make the package. 484.14 compile_rules() 484.15 {
485.1 --- a/tlp/receipt Sun May 30 10:18:33 2021 +0100 485.2 +++ b/tlp/receipt Tue Jun 08 08:46:05 2021 +0000 485.3 @@ -11,6 +11,12 @@ 485.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 485.5 WGET_URL="https://github.com/linrunner/TLP/archive/$VERSION.tar.gz" 485.6 485.7 +current_version() 485.8 +{ 485.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 485.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 485.11 +} 485.12 + 485.13 # Rules to configure and make the package. 485.14 compile_rules() 485.15 {
486.1 --- a/tmate/receipt Sun May 30 10:18:33 2021 +0100 486.2 +++ b/tmate/receipt Tue Jun 08 08:46:05 2021 +0000 486.3 @@ -14,6 +14,12 @@ 486.4 DEPENDS="libevent libssh msgpack ncurses" 486.5 BUILD_DEPENDS="automake libevent-dev libssh-dev msgpack-dev ncurses-dev" 486.6 486.7 +current_version() 486.8 +{ 486.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 486.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 486.11 +} 486.12 + 486.13 # Rules to configure and make the package. 486.14 compile_rules() 486.15 {
487.1 --- a/tmux-mem-cpu-load/receipt Sun May 30 10:18:33 2021 +0100 487.2 +++ b/tmux-mem-cpu-load/receipt Tue Jun 08 08:46:05 2021 +0000 487.3 @@ -14,6 +14,12 @@ 487.4 DEPENDS="tmux" 487.5 BUILD_DEPENDS="cmake python" 487.6 487.7 +current_version() 487.8 +{ 487.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 487.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 487.11 +} 487.12 + 487.13 # Rules to configure and make the package. 487.14 compile_rules() 487.15 {
488.1 --- a/tmux/receipt Sun May 30 10:18:33 2021 +0100 488.2 +++ b/tmux/receipt Tue Jun 08 08:46:05 2021 +0000 488.3 @@ -16,6 +16,12 @@ 488.4 488.5 HOST_ARCH="i486 arm" 488.6 488.7 +current_version() 488.8 +{ 488.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 488.10 + sed '/archive.*tar/!d;/flex/!d;s|.*/\(.*\).tar.*|\1|;q' 488.11 +} 488.12 + 488.13 # Rules to configure and make the package. 488.14 compile_rules() 488.15 {
489.1 --- a/transmission/receipt Sun May 30 10:18:33 2021 +0100 489.2 +++ b/transmission/receipt Tue Jun 08 08:46:05 2021 +0000 489.3 @@ -18,6 +18,12 @@ 489.4 BUILD_DEPENDS="libtool curl curl-dev dbus-dev dbus-glib-dev expat-dev 489.5 gettext gtk+3-dev intltool libevent-dev openssl-dev tar" 489.6 489.7 +current_version() 489.8 +{ 489.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 489.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 489.11 +} 489.12 + 489.13 # Rules to configure and make the package. 489.14 compile_rules() 489.15 {
490.1 --- a/trash-cli/receipt Sun May 30 10:18:33 2021 +0100 490.2 +++ b/trash-cli/receipt Tue Jun 08 08:46:05 2021 +0000 490.3 @@ -14,6 +14,12 @@ 490.4 DEPENDS="python" 490.5 BUILD_DEPENDS="python-dev python-setuptools" 490.6 490.7 +current_version() 490.8 +{ 490.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 490.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 490.11 +} 490.12 + 490.13 # Rules to configure and make the package. 490.14 compile_rules() 490.15 {
491.1 --- a/tslib/receipt Sun May 30 10:18:33 2021 +0100 491.2 +++ b/tslib/receipt Tue Jun 08 08:46:05 2021 +0000 491.3 @@ -20,6 +20,12 @@ 491.4 arm*) export ac_cv_func_malloc_0_nonnull=yes ;; 491.5 esac 491.6 491.7 +current_version() 491.8 +{ 491.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 491.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 491.11 +} 491.12 + 491.13 # Rules to configure and make the package. 491.14 compile_rules() 491.15 {
492.1 --- a/ttf-open-dyslexic/receipt Sun May 30 10:18:33 2021 +0100 492.2 +++ b/ttf-open-dyslexic/receipt Tue Jun 08 08:46:05 2021 +0000 492.3 @@ -12,6 +12,12 @@ 492.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 492.5 WGET_URL="https://github.com/antijingoist/open-dyslexic/archive/$VERSION-Stable.tar.gz" 492.6 492.7 +current_version() 492.8 +{ 492.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 492.10 + sed '/archive.*tar/!d;s|.*/\(.*\)-Stable.tar.*|\1|;q' 492.11 +} 492.12 + 492.13 # Rules to gen a SliTaz package suitable for Tazpkg. 492.14 genpkg_rules() 492.15 {
493.1 --- a/tty-clock/receipt Sun May 30 10:18:33 2021 +0100 493.2 +++ b/tty-clock/receipt Tue Jun 08 08:46:05 2021 +0000 493.3 @@ -15,6 +15,12 @@ 493.4 DEPENDS="ncurses" 493.5 BUILD_DEPENDS="ncurses-dev" 493.6 493.7 +current_version() 493.8 +{ 493.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 493.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 493.11 +} 493.12 + 493.13 # Rules to configure and make the package. 493.14 compile_rules() 493.15 {
494.1 --- a/turses/receipt Sun May 30 10:18:33 2021 +0100 494.2 +++ b/turses/receipt Tue Jun 08 08:46:05 2021 +0000 494.3 @@ -14,6 +14,12 @@ 494.4 DEPENDS="python python-httplib2 python-oauth2 python-tweepy python-urwid" 494.5 BUILD_DEPENDS="python python-dev python-setuptools" 494.6 494.7 +current_version() 494.8 +{ 494.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 494.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 494.11 +} 494.12 + 494.13 # Rules to configure and make the package. 494.14 compile_rules() 494.15 {
495.1 --- a/udevil/receipt Sun May 30 10:18:33 2021 +0100 495.2 +++ b/udevil/receipt Tue Jun 08 08:46:05 2021 +0000 495.3 @@ -14,6 +14,12 @@ 495.4 DEPENDS="udev glib" 495.5 BUILD_DEPENDS="udev-dev glib-dev file" 495.6 495.7 +current_version() 495.8 +{ 495.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 495.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 495.11 +} 495.12 + 495.13 # Rules to configure and make the package. 495.14 compile_rules() 495.15 {
496.1 --- a/udftools/receipt Sun May 30 10:18:33 2021 +0100 496.2 +++ b/udftools/receipt Tue Jun 08 08:46:05 2021 +0000 496.3 @@ -15,6 +15,12 @@ 496.4 BUILD_DEPENDS="autoconf automake bash file libtool ncurses-dev 496.5 readline-dev udev-dev" 496.6 496.7 +current_version() 496.8 +{ 496.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 496.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 496.11 +} 496.12 + 496.13 # Rules to configure and make the package. 496.14 compile_rules() 496.15 {
497.1 --- a/udpxy/receipt Sun May 30 10:18:33 2021 +0100 497.2 +++ b/udpxy/receipt Tue Jun 08 08:46:05 2021 +0000 497.3 @@ -11,6 +11,12 @@ 497.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 497.5 WGET_URL="https://github.com/pcherenkov/$PACKAGE/archive/${VERSION%.*.*}-${VERSION#*.*.}.tar.gz" 497.6 497.7 +current_version() 497.8 +{ 497.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 497.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;s|-|.|;q' 497.11 +} 497.12 + 497.13 # Rules to configure and make the package. 497.14 compile_rules() 497.15 {
498.1 --- a/uhd/receipt Sun May 30 10:18:33 2021 +0100 498.2 +++ b/uhd/receipt Tue Jun 08 08:46:05 2021 +0000 498.3 @@ -18,6 +18,12 @@ 498.4 libboost-system-dev libboost-test-dev libboost-serialization-dev \ 498.5 libboost-thread-dev libboost-tr1-dev libusb-dev udev-dev" 498.6 498.7 +current_version() 498.8 +{ 498.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 498.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 498.11 +} 498.12 + 498.13 # Rules to configure and make the package. 498.14 compile_rules() 498.15 {
499.1 --- a/unetbootin/receipt Sun May 30 10:18:33 2021 +0100 499.2 +++ b/unetbootin/receipt Tue Jun 08 08:46:05 2021 +0000 499.3 @@ -15,6 +15,12 @@ 499.4 DEPENDS="libQtCore libQtGui libQtNetwork mtools p7zip-full syslinux" 499.5 BUILD_DEPENDS="qmake Qt4-dev upx" 499.6 499.7 +current_version() 499.8 +{ 499.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 499.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 499.11 +} 499.12 + 499.13 # Rules to configure and make the package. 499.14 compile_rules() 499.15 {
500.1 --- a/unionfs-fuse/receipt Sun May 30 10:18:33 2021 +0100 500.2 +++ b/unionfs-fuse/receipt Tue Jun 08 08:46:05 2021 +0000 500.3 @@ -14,6 +14,12 @@ 500.4 DEPENDS="fuse" 500.5 BUILD_DEPENDS="cmake fuse-dev" 500.6 500.7 +current_version() 500.8 +{ 500.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 500.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 500.11 +} 500.12 + 500.13 # Rules to configure and make the package. 500.14 compile_rules() 500.15 {
501.1 --- a/unshield/receipt Sun May 30 10:18:33 2021 +0100 501.2 +++ b/unshield/receipt Tue Jun 08 08:46:05 2021 +0000 501.3 @@ -15,6 +15,12 @@ 501.4 DEPENDS="zlib" 501.5 BUILD_DEPENDS="cmake zlib-dev" 501.6 501.7 +current_version() 501.8 +{ 501.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 501.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 501.11 +} 501.12 + 501.13 # Rules to configure and make the package. 501.14 compile_rules() 501.15 {
502.1 --- a/utf8proc/receipt Sun May 30 10:18:33 2021 +0100 502.2 +++ b/utf8proc/receipt Tue Jun 08 08:46:05 2021 +0000 502.3 @@ -12,6 +12,12 @@ 502.4 502.5 BUILD_DEPENDS="cmake" 502.6 502.7 +current_version() 502.8 +{ 502.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 502.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 502.11 +} 502.12 + 502.13 # Rules to configure and make the package. 502.14 compile_rules() 502.15 {
503.1 --- a/v4l4j/receipt Sun May 30 10:18:33 2021 +0100 503.2 +++ b/v4l4j/receipt Tue Jun 08 08:46:05 2021 +0000 503.3 @@ -14,6 +14,12 @@ 503.4 DEPENDS="libv4l jpeg icedtea6-jre" 503.5 BUILD_DEPENDS="libv4l-dev jpeg-dev apache-ant icedtea6-jdk" 503.6 503.7 +current_version() 503.8 +{ 503.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 503.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 503.11 +} 503.12 + 503.13 compile_rules() 503.14 { 503.15 export JAVA_HOME=/usr/lib/jvm/java-icedtea/
504.1 --- a/vbindiff/receipt Sun May 30 10:18:33 2021 +0100 504.2 +++ b/vbindiff/receipt Tue Jun 08 08:46:05 2021 +0000 504.3 @@ -17,6 +17,12 @@ 504.4 504.5 HOST_ARCH="i486 arm" 504.6 504.7 +current_version() 504.8 +{ 504.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 504.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 504.11 +} 504.12 + 504.13 # Rules to configure and make the package. 504.14 compile_rules() 504.15 {
505.1 --- a/viewnior/receipt Sun May 30 10:18:33 2021 +0100 505.2 +++ b/viewnior/receipt Tue Jun 08 08:46:05 2021 +0000 505.3 @@ -24,6 +24,12 @@ 505.4 i?86) BUILD_DEPENDS="$BUILD_DEPENDS shared-mime-info-dev" ;; 505.5 esac 505.6 505.7 +current_version() 505.8 +{ 505.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 505.10 + sed '/archive.*tar/!d;s|.*/viewnior-\(.*\).tar.*|\1|;q' 505.11 +} 505.12 + 505.13 # Rules to configure and make the package. 505.14 compile_rules() 505.15 {
506.1 --- a/vim-tiny/receipt Sun May 30 10:18:33 2021 +0100 506.2 +++ b/vim-tiny/receipt Tue Jun 08 08:46:05 2021 +0000 506.3 @@ -18,6 +18,12 @@ 506.4 506.5 CONFIG_FILES="/etc/vim/vimrc" 506.6 506.7 +current_version() 506.8 +{ 506.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 506.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 506.11 +} 506.12 + 506.13 # Rules to configure and make the package. 506.14 compile_rules() 506.15 {
507.1 --- a/vim/receipt Sun May 30 10:18:33 2021 +0100 507.2 +++ b/vim/receipt Tue Jun 08 08:46:05 2021 +0000 507.3 @@ -17,6 +17,12 @@ 507.4 507.5 CONFIG_FILES="/etc/vim/vimrc" 507.6 507.7 +current_version() 507.8 +{ 507.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 507.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 507.11 +} 507.12 + 507.13 # Rules to configure and make the package. 507.14 compile_rules() 507.15 {
508.1 --- a/virtualenv/receipt Sun May 30 10:18:33 2021 +0100 508.2 +++ b/virtualenv/receipt Tue Jun 08 08:46:05 2021 +0000 508.3 @@ -15,6 +15,12 @@ 508.4 DEPENDS="python python-dev" 508.5 BUILD_DEPENDS="python python-dev python-setuptools" 508.6 508.7 +current_version() 508.8 +{ 508.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 508.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 508.11 +} 508.12 + 508.13 # Rules to configure and make the package. 508.14 compile_rules() 508.15 {
509.1 --- a/vmtouch/receipt Sun May 30 10:18:33 2021 +0100 509.2 +++ b/vmtouch/receipt Tue Jun 08 08:46:05 2021 +0000 509.3 @@ -11,6 +11,12 @@ 509.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 509.5 WGET_URL="https://github.com/hoytech/$PACKAGE/archive/v$VERSION.tar.gz" 509.6 509.7 +current_version() 509.8 +{ 509.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 509.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 509.11 +} 509.12 + 509.13 # Rules to configure and make the package. 509.14 compile_rules() 509.15 {
510.1 --- a/vorta/receipt Sun May 30 10:18:33 2021 +0100 510.2 +++ b/vorta/receipt Tue Jun 08 08:46:05 2021 +0000 510.3 @@ -14,6 +14,12 @@ 510.4 DEPENDS="borgbackup" 510.5 BUILD_DEPENDS="py3k-dev py3k-setuptools_scm" 510.6 510.7 +current_version() 510.8 +{ 510.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 510.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 510.11 +} 510.12 + 510.13 # Rules to configure and make the package. 510.14 compile_rules() 510.15 {
511.1 --- a/vrrpd/receipt Sun May 30 10:18:33 2021 +0100 511.2 +++ b/vrrpd/receipt Tue Jun 08 08:46:05 2021 +0000 511.3 @@ -12,6 +12,12 @@ 511.4 CONFIG_FILES="/etc/vrrpd /etc/vrrp.conf" 511.5 TAGS="High availability HA" 511.6 511.7 +current_version() 511.8 +{ 511.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 511.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 511.11 +} 511.12 + 511.13 # Rules to configure and make the package. 511.14 compile_rules() 511.15 {
512.1 --- a/wesnoth/receipt Sun May 30 10:18:33 2021 +0100 512.2 +++ b/wesnoth/receipt Tue Jun 08 08:46:05 2021 +0000 512.3 @@ -24,6 +24,12 @@ 512.4 libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf libsdl2-ttf-dev \ 512.5 lua-dev openssl-dev pango-dev" 512.6 512.7 +current_version() 512.8 +{ 512.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 512.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 512.11 +} 512.12 + 512.13 # Rules to configure and make the package. 512.14 compile_rules() 512.15 {
513.1 --- a/whdd/receipt Sun May 30 10:18:33 2021 +0100 513.2 +++ b/whdd/receipt Tue Jun 08 08:46:05 2021 +0000 513.3 @@ -13,6 +13,12 @@ 513.4 DEPENDS="ncursesw" 513.5 BUILD_DEPENDS="ncursesw-dev dialog-dev" 513.6 513.7 +current_version() 513.8 +{ 513.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 513.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 513.11 +} 513.12 + 513.13 # Rules to configure and make the package. 513.14 compile_rules() 513.15 {
514.1 --- a/whowatch/receipt Sun May 30 10:18:33 2021 +0100 514.2 +++ b/whowatch/receipt Tue Jun 08 08:46:05 2021 +0000 514.3 @@ -14,6 +14,12 @@ 514.4 DEPENDS="libtinfo ncurses" 514.5 BUILD_DEPENDS="ncurses-dev" 514.6 514.7 +current_version() 514.8 +{ 514.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 514.10 + sed '/archive.*tar/!d;s|.*/whowatch-\(.*\).tar.*|\1|;q' 514.11 +} 514.12 + 514.13 # Rules to configure and make the package. 514.14 compile_rules() 514.15 {
515.1 --- a/wifidog/receipt Sun May 30 10:18:33 2021 +0100 515.2 +++ b/wifidog/receipt Tue Jun 08 08:46:05 2021 +0000 515.3 @@ -15,6 +15,12 @@ 515.4 515.5 CONFIG_FILES="/etc/wifidog.conf" 515.6 515.7 +current_version() 515.8 +{ 515.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 515.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 515.11 +} 515.12 + 515.13 # Rules to configure and make the package. 515.14 compile_rules() 515.15 {
516.1 --- a/winetricks/receipt Sun May 30 10:18:33 2021 +0100 516.2 +++ b/winetricks/receipt Tue Jun 08 08:46:05 2021 +0000 516.3 @@ -14,6 +14,12 @@ 516.4 SUGGESTED="zenity" 516.5 DEPENDS="cabextract unzip wget wine xorg-xmessage" 516.6 516.7 +current_version() 516.8 +{ 516.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 516.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 516.11 +} 516.12 + 516.13 # Rules to configure and make the package. 516.14 compile_rules() 516.15 {
517.1 --- a/wkhtmltopdf/receipt Sun May 30 10:18:33 2021 +0100 517.2 +++ b/wkhtmltopdf/receipt Tue Jun 08 08:46:05 2021 +0000 517.3 @@ -14,6 +14,12 @@ 517.4 DEPENDS="libQtCore libQtGui libQtNetwork libQtSvg libQtWebkit libQtXml" 517.5 BUILD_DEPENDS="python qmake Qt4-dev" 517.6 517.7 +current_version() 517.8 +{ 517.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 517.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 517.11 +} 517.12 + 517.13 # Rules to configure and make the package. 517.14 compile_rules() 517.15 {
518.1 --- a/wordwarvi/receipt Sun May 30 10:18:33 2021 +0100 518.2 +++ b/wordwarvi/receipt Tue Jun 08 08:46:05 2021 +0000 518.3 @@ -20,6 +20,12 @@ 518.4 portaudio portaudio-dev xorg-kbproto xorg-libXrender-dev 518.5 xorg-renderproto xorg-xproto " 518.6 518.7 +current_version() 518.8 +{ 518.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 518.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 518.11 +} 518.12 + 518.13 # Rules to configure and make the package. 518.14 compile_rules() 518.15 {
519.1 --- a/wxWidgets/receipt Sun May 30 10:18:33 2021 +0100 519.2 +++ b/wxWidgets/receipt Tue Jun 08 08:46:05 2021 +0000 519.3 @@ -20,6 +20,12 @@ 519.4 BUILD_DEPENDS="expat-dev gtk+-dev jpeg-dev libglu-mesa libpng-dev mesa-dev 519.5 tiff-dev xorg-dev xorg-libXpm-dev xorg-xineramaproto zlib-dev" 519.6 519.7 +current_version() 519.8 +{ 519.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 519.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 519.11 +} 519.12 + 519.13 # Rules to configure and make the package. 519.14 compile_rules() 519.15 {
520.1 --- a/x11vnc/receipt Sun May 30 10:18:33 2021 +0100 520.2 +++ b/x11vnc/receipt Tue Jun 08 08:46:05 2021 +0000 520.3 @@ -17,6 +17,12 @@ 520.4 520.5 HOST_ARCH="i486 arm" 520.6 520.7 +current_version() 520.8 +{ 520.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 520.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 520.11 +} 520.12 + 520.13 # Rules to configure and make the package. 520.14 compile_rules() 520.15 {
521.1 --- a/xarchiver/receipt Sun May 30 10:18:33 2021 +0100 521.2 +++ b/xarchiver/receipt Tue Jun 08 08:46:05 2021 +0000 521.3 @@ -22,6 +22,12 @@ 521.4 GENERIC_PIXMAPS="no" 521.5 GENERIC_MENUS="no" 521.6 521.7 +current_version() 521.8 +{ 521.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 521.10 + sed '/archive.*tags\//!d;s|.*/\(.*\).zip.*|\1|;q' 521.11 +} 521.12 + 521.13 # Rules to configure and make the package. 521.14 compile_rules() 521.15 {
522.1 --- a/xcb-util-xrm/receipt Sun May 30 10:18:33 2021 +0100 522.2 +++ b/xcb-util-xrm/receipt Tue Jun 08 08:46:05 2021 +0000 522.3 @@ -14,6 +14,12 @@ 522.4 DEPENDS="libxcb xcb-util" 522.5 BUILD_DEPENDS="libxcb-dev xcb-util-dev xorg-libX11-dev" 522.6 522.7 +current_version() 522.8 +{ 522.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 522.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 522.11 +} 522.12 + 522.13 compile_rules() 522.14 { 522.15 ./configure $CONFIGURE_ARGS &&
523.1 --- a/xdotool/receipt Sun May 30 10:18:33 2021 +0100 523.2 +++ b/xdotool/receipt Tue Jun 08 08:46:05 2021 +0000 523.3 @@ -14,6 +14,12 @@ 523.4 DEPENDS="xorg-libX11 xorg-libXtst" 523.5 BUILD_DEPENDS="libxkbcommon-dev xorg-libX11-dev xorg-libXtst-dev xorg-libXtst" 523.6 523.7 +current_version() 523.8 +{ 523.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 523.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 523.11 +} 523.12 + 523.13 # Rules to configure and make the package. 523.14 compile_rules() 523.15 {
524.1 --- a/xl2tpd/receipt Sun May 30 10:18:33 2021 +0100 524.2 +++ b/xl2tpd/receipt Tue Jun 08 08:46:05 2021 +0000 524.3 @@ -17,6 +17,12 @@ 524.4 524.5 CONFIG_FILES="/etc/xl2tpd" 524.6 524.7 +current_version() 524.8 +{ 524.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 524.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 524.11 +} 524.12 + 524.13 # Rules to configure and make the package. 524.14 compile_rules() 524.15 {
525.1 --- a/xorg-xf86-video-fbturbo/receipt Sun May 30 10:18:33 2021 +0100 525.2 +++ b/xorg-xf86-video-fbturbo/receipt Tue Jun 08 08:46:05 2021 +0000 525.3 @@ -16,6 +16,12 @@ 525.4 525.5 HOST_ARCH="i486 arm" 525.6 525.7 +current_version() 525.8 +{ 525.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 525.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 525.11 +} 525.12 + 525.13 # Rules to configure and make the package. 525.14 compile_rules() 525.15 {
526.1 --- a/xorgxrdp/receipt Sun May 30 10:18:33 2021 +0100 526.2 +++ b/xorgxrdp/receipt Tue Jun 08 08:46:05 2021 +0000 526.3 @@ -16,6 +16,12 @@ 526.4 BUILD_DEPENDS="autoconf automake libtool nasm pkg-config 526.5 xorg-server-dev xrdp-dev" 526.6 526.7 +current_version() 526.8 +{ 526.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 526.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 526.11 +} 526.12 + 526.13 # Rules to configure and make the package. 526.14 compile_rules() 526.15 {
527.1 --- a/xprintidle/receipt Sun May 30 10:18:33 2021 +0100 527.2 +++ b/xprintidle/receipt Tue Jun 08 08:46:05 2021 +0000 527.3 @@ -15,6 +15,12 @@ 527.4 527.5 HOST_ARCH="i486 arm" 527.6 527.7 +current_version() 527.8 +{ 527.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 527.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 527.11 +} 527.12 + 527.13 # Rules to configure and make the package. 527.14 compile_rules() 527.15 {
528.1 --- a/xrdp/receipt Sun May 30 10:18:33 2021 +0100 528.2 +++ b/xrdp/receipt Tue Jun 08 08:46:05 2021 +0000 528.3 @@ -16,6 +16,12 @@ 528.4 BUILD_DEPENDS="autoconf automake libtool nasm openssl-dev pam-dev 528.5 pkg-config util-linux-uuid-dev xorg-dev" 528.6 528.7 +current_version() 528.8 +{ 528.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 528.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 528.11 +} 528.12 + 528.13 # Rules to configure and make the package. 528.14 compile_rules() 528.15 {
529.1 --- a/xtel/receipt Sun May 30 10:18:33 2021 +0100 529.2 +++ b/xtel/receipt Tue Jun 08 08:46:05 2021 +0000 529.3 @@ -18,6 +18,12 @@ 529.4 529.5 CONFIG_FILES="/etc/xtel" 529.6 529.7 +current_version() 529.8 +{ 529.9 + wget -O - $WEB_SITE/tele.html 2>/dev/null | \ 529.10 + sed "/$PACKAGE/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|;q" 529.11 +} 529.12 + 529.13 # Rules to configure and make the package. 529.14 compile_rules() 529.15 {
530.1 --- a/yajl/receipt Sun May 30 10:18:33 2021 +0100 530.2 +++ b/yajl/receipt Tue Jun 08 08:46:05 2021 +0000 530.3 @@ -13,6 +13,12 @@ 530.4 530.5 BUILD_DEPENDS="cmake doxygen git" 530.6 530.7 +current_version() 530.8 +{ 530.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 530.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 530.11 +} 530.12 + 530.13 # Rules to configure and make the package. 530.14 compile_rules() 530.15 {
531.1 --- a/yaws/receipt Sun May 30 10:18:33 2021 +0100 531.2 +++ b/yaws/receipt Tue Jun 08 08:46:05 2021 +0000 531.3 @@ -15,6 +15,12 @@ 531.4 DEPENDS="erlang pam pkg-config" 531.5 BUILD_DEPENDS="autoconf automake erlang gawk libtool pam-dev" 531.6 531.7 +current_version() 531.8 +{ 531.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 531.10 + sed '/archive.*tar/!d;s|.*/yaws-\(.*\).tar.*|\1|;q' 531.11 +} 531.12 + 531.13 # Rules to configure and make the package. 531.14 compile_rules() 531.15 {
532.1 --- a/ympd/receipt Sun May 30 10:18:33 2021 +0100 532.2 +++ b/ympd/receipt Tue Jun 08 08:46:05 2021 +0000 532.3 @@ -24,6 +24,12 @@ 532.4 -DLIBMPDCLIENT_INCLUDE_DIR=/cross/$ARCH/sysroot/usr/include" ;; 532.5 esac 532.6 532.7 +current_version() 532.8 +{ 532.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 532.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 532.11 +} 532.12 + 532.13 # Rules to configure and make the package. 532.14 compile_rules() 532.15 {
533.1 --- a/yp-tools/receipt Sun May 30 10:18:33 2021 +0100 533.2 +++ b/yp-tools/receipt Tue Jun 08 08:46:05 2021 +0000 533.3 @@ -13,6 +13,12 @@ 533.4 533.5 BUILD_DEPENDS="libtool" 533.6 533.7 +current_version() 533.8 +{ 533.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 533.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 533.11 +} 533.12 + 533.13 # Rules to configure and make the package. 533.14 compile_rules() 533.15 {
534.1 --- a/ytnef/receipt Sun May 30 10:18:33 2021 +0100 534.2 +++ b/ytnef/receipt Tue Jun 08 08:46:05 2021 +0000 534.3 @@ -13,6 +13,12 @@ 534.4 534.5 BUILD_DEPENDS="automake libtool" 534.6 534.7 +current_version() 534.8 +{ 534.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 534.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 534.11 +} 534.12 + 534.13 compile_rules() 534.14 { 534.15 ./autogen.sh &&
535.1 --- a/zbackup/receipt Sun May 30 10:18:33 2021 +0100 535.2 +++ b/zbackup/receipt Tue Jun 08 08:46:05 2021 +0000 535.3 @@ -14,6 +14,12 @@ 535.4 DEPENDS="gcc83-lib-base liblzma libssl protobuf zlib" 535.5 BUILD_DEPENDS="cmake gcc83 liblzma-dev lzo-dev openssl-dev protobuf-dev zlib-dev" 535.6 535.7 +current_version() 535.8 +{ 535.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 535.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 535.11 +} 535.12 + 535.13 # Rules to configure and make the package. 535.14 compile_rules() 535.15 {
536.1 --- a/zbar/receipt Sun May 30 10:18:33 2021 +0100 536.2 +++ b/zbar/receipt Tue Jun 08 08:46:05 2021 +0000 536.3 @@ -18,6 +18,12 @@ 536.4 jpeg-dev lcms-dev libgio-dev libtool libxml2-dev linux-api-headers 536.5 openexr-dev pango-dev util-linux-uuid-dev" 536.6 536.7 +current_version() 536.8 +{ 536.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 536.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 536.11 +} 536.12 + 536.13 # Rules to configure and make the package. 536.14 compile_rules() 536.15 {
537.1 --- a/zeromq/receipt Sun May 30 10:18:33 2021 +0100 537.2 +++ b/zeromq/receipt Tue Jun 08 08:46:05 2021 +0000 537.3 @@ -14,6 +14,12 @@ 537.4 DEPENDS="" 537.5 BUILD_DEPENDS="wget pkg-config util-linux-uuid-dev" 537.6 537.7 +current_version() 537.8 +{ 537.9 + wget -O - ${WGET_URL%/down*} 2>/dev/null | \ 537.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 537.11 +} 537.12 + 537.13 # Rules to configure and make the package. 537.14 compile_rules() 537.15 {
538.1 --- a/znotes/receipt Sun May 30 10:18:33 2021 +0100 538.2 +++ b/znotes/receipt Tue Jun 08 08:46:05 2021 +0000 538.3 @@ -15,6 +15,12 @@ 538.4 DEPENDS="libQtGui libQtXml" 538.5 BUILD_DEPENDS="Qt4-dev qmake wget" 538.6 538.7 +current_version() 538.8 +{ 538.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 538.10 + sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' 538.11 +} 538.12 + 538.13 # Rules to configure and make the package. 538.14 compile_rules() 538.15 {
539.1 --- a/zopfli/receipt Sun May 30 10:18:33 2021 +0100 539.2 +++ b/zopfli/receipt Tue Jun 08 08:46:05 2021 +0000 539.3 @@ -15,6 +15,12 @@ 539.4 DEPENDS="gcc83-lib-base" 539.5 BUILD_DEPENDS="gcc83" 539.6 539.7 +current_version() 539.8 +{ 539.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 539.10 + sed '/archive.*tar/!d;s|.*/zopfli-\(.*\).tar.*|\1|;q' 539.11 +} 539.12 + 539.13 # Rules to configure and make the package. 539.14 compile_rules() 539.15 {