wok rev 24427

Add some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 12 11:42:56 2022 +0000 (2022-02-12)
parents a89966b4677d
children 7c71a871a04b
files centerim/receipt chillispot/receipt cmatrix/receipt conntrack-tools/receipt elinks-small/receipt elinks/receipt enet/receipt fpm2/receipt freetds/receipt fswebcam/receipt fwknop/receipt gliv/receipt gnupg/receipt gvfb/receipt haproxy/receipt hiawatha/receipt i3/receipt iftop/receipt imagemagick/receipt incron/receipt iotop/receipt jbigkit/receipt libdaq/receipt libnetfilter_cthelper/receipt libnetfilter_cttimeout/receipt libnetfilter_queue/receipt libnfnetlink/receipt libnl1/receipt libproxy/receipt libsndfile/receipt libssh2/receipt lilo/receipt lzop/receipt masqmail/receipt mcabber/receipt memcached/receipt miniupnpd/receipt mpg123/receipt nginx-extras/receipt nginx/receipt nim/receipt physfs/receipt pidgin-musictracker/receipt prosody/receipt qiv/receipt remind/receipt rsnapshot/receipt scrollz/receipt snort/receipt socat/receipt stunnel/receipt tahoe-lafs/receipt task/receipt ucl/receipt urlgrabber/receipt wimlib/receipt workerfm/receipt xbill/receipt
line diff
     1.1 --- a/centerim/receipt	Sat Feb 12 11:04:56 2022 +0100
     1.2 +++ b/centerim/receipt	Sat Feb 12 11:42:56 2022 +0000
     1.3 @@ -15,6 +15,13 @@
     1.4  BUILD_DEPENDS="ncursesw-dev curl-dev openssl-dev libidn-dev libgpg-error-dev \
     1.5  gpgme-dev"
     1.6  
     1.7 +# What is the latest version available today?
     1.8 +current_version()
     1.9 +{
    1.10 +	wget -O - https://github.com/petrpavlu/centerim5/releases 2>/dev/null | \
    1.11 +	sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
    1.12 +}
    1.13 +
    1.14  # Rules to configure and make the package.
    1.15  compile_rules()
    1.16  {
     2.1 --- a/chillispot/receipt	Sat Feb 12 11:04:56 2022 +0100
     2.2 +++ b/chillispot/receipt	Sat Feb 12 11:42:56 2022 +0000
     2.3 @@ -11,6 +11,13 @@
     2.4  WGET_URL="${WEB_SITE}download/$TARBALL"
     2.5  CONFIG_FILES="/etc/chilli.conf"
     2.6  
     2.7 +# What is the latest version available today?
     2.8 +current_version()
     2.9 +{
    2.10 +	wget -O - http://www.chillispot.org/download.html 2>/dev/null | \
    2.11 +	sed '/Released/!d;s|.*hillispot ||;s| Released.*||;q'
    2.12 +}
    2.13 +
    2.14  # Rules to configure and make the package.
    2.15  compile_rules()
    2.16  {
     3.1 --- a/cmatrix/receipt	Sat Feb 12 11:04:56 2022 +0100
     3.2 +++ b/cmatrix/receipt	Sat Feb 12 11:42:56 2022 +0000
     3.3 @@ -14,6 +14,13 @@
     3.4  DEPENDS="ncurses"
     3.5  BUILD_DEPENDS="cmake ncurses-dev"
     3.6  
     3.7 +# What is the latest version available today?
     3.8 +current_version()
     3.9 +{
    3.10 +	wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
    3.11 +	sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
    3.12 +}
    3.13 +
    3.14  # Rules to configure and make the package.
    3.15  compile_rules()
    3.16  {
     4.1 --- a/conntrack-tools/receipt	Sat Feb 12 11:04:56 2022 +0100
     4.2 +++ b/conntrack-tools/receipt	Sat Feb 12 11:42:56 2022 +0000
     4.3 @@ -17,6 +17,13 @@
     4.4  	libnetfilter_cthelper-dev libnetfilter_cttimeout-dev 
     4.5  	libnetfilter_queue-dev libnfnetlink-dev pkg-config"
     4.6  
     4.7 +# What is the latest version available today?
     4.8 +current_version()
     4.9 +{
    4.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
    4.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
    4.12 +}
    4.13 +
    4.14  # Rules to configure and make the package.
    4.15  compile_rules()
    4.16  {
     5.1 --- a/elinks-small/receipt	Sat Feb 12 11:04:56 2022 +0100
     5.2 +++ b/elinks-small/receipt	Sat Feb 12 11:42:56 2022 +0000
     5.3 @@ -17,6 +17,13 @@
     5.4  DEPENDS="bzip2 zlib libidn expat"
     5.5  BUILD_DEPENDS="bzip2-dev zlib-dev libidn-dev expat-dev"
     5.6  
     5.7 +# What is the latest version available today?
     5.8 +current_version()
     5.9 +{
    5.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
    5.11 +	sed "/current/d;/$SOURCE-/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
    5.12 +}
    5.13 +
    5.14  # Rules to configure and make the package.
    5.15  compile_rules()
    5.16  {
     6.1 --- a/elinks/receipt	Sat Feb 12 11:04:56 2022 +0100
     6.2 +++ b/elinks/receipt	Sat Feb 12 11:42:56 2022 +0000
     6.3 @@ -15,6 +15,13 @@
     6.4  BUILD_DEPENDS="openssl-dev bzip2-dev spidermonkey-dev zlib-dev libidn-dev \
     6.5  expat-dev gpm-dev"
     6.6  
     6.7 +# What is the latest version available today?
     6.8 +current_version()
     6.9 +{
    6.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
    6.11 +	sed "/current/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
    6.12 +}
    6.13 +
    6.14  # Rules to configure and make the package.
    6.15  compile_rules()
    6.16  {
     7.1 --- a/enet/receipt	Sat Feb 12 11:04:56 2022 +0100
     7.2 +++ b/enet/receipt	Sat Feb 12 11:42:56 2022 +0000
     7.3 @@ -11,6 +11,13 @@
     7.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     7.5  WGET_URL="$WEB_SITE/download/$TARBALL"
     7.6  
     7.7 +# What is the latest version available today?
     7.8 +current_version()
     7.9 +{
    7.10 +	wget -O - $WEB_SITE 2>/dev/null | \
    7.11 +	sed '/projectnumber/!d;s|.*>v||;s|<.*||'
    7.12 +}
    7.13 +
    7.14  # Rules to configure and make the package.
    7.15  compile_rules()
    7.16  {
     8.1 --- a/fpm2/receipt	Sat Feb 12 11:04:56 2022 +0100
     8.2 +++ b/fpm2/receipt	Sat Feb 12 11:42:56 2022 +0000
     8.3 @@ -16,6 +16,13 @@
     8.4  xorg-libXrandr xorg-libXrender xorg-libXdamage"
     8.5  BUILD_DEPENDS="gtk+-dev libxml2-dev"
     8.6  
     8.7 +# What is the latest version available today?
     8.8 +current_version()
     8.9 +{
    8.10 +	wget -O - $WEB_SITE 2>/dev/null | \
    8.11 +	sed '/anager/!d;/span/!d;s|.*>v||;s|<.*||;q'
    8.12 +}
    8.13 +
    8.14  # Rules to configure and make the package.
    8.15  compile_rules()
    8.16  {
     9.1 --- a/freetds/receipt	Sat Feb 12 11:04:56 2022 +0100
     9.2 +++ b/freetds/receipt	Sat Feb 12 11:42:56 2022 +0000
     9.3 @@ -14,6 +14,13 @@
     9.4  DEPENDS="libunixODBC ncurses readline"
     9.5  BUILD_DEPENDS="readline-dev"
     9.6  
     9.7 +# What is the latest version available today?
     9.8 +current_version()
     9.9 +{
    9.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
    9.11 +	sed "/patch/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
    9.12 +}
    9.13 +
    9.14  # Rules to configure and make the package.
    9.15  compile_rules()
    9.16  {
    10.1 --- a/fswebcam/receipt	Sat Feb 12 11:04:56 2022 +0100
    10.2 +++ b/fswebcam/receipt	Sat Feb 12 11:42:56 2022 +0000
    10.3 @@ -16,6 +16,13 @@
    10.4  DEPENDS="libgd"
    10.5  BUILD_DEPENDS="libgd-dev"
    10.6  
    10.7 +# What is the latest version available today?
    10.8 +current_version()
    10.9 +{
   10.10 +	wget -O - ${WGET_URL%/*/*} 2>/dev/null | \
   10.11 +	sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   10.12 +}
   10.13 +
   10.14  # Rules to configure and make the package.
   10.15  compile_rules()
   10.16  {
    11.1 --- a/fwknop/receipt	Sat Feb 12 11:04:56 2022 +0100
    11.2 +++ b/fwknop/receipt	Sat Feb 12 11:42:56 2022 +0000
    11.3 @@ -14,6 +14,13 @@
    11.4  DEPENDS="iptables gpgme gnupg libgpg-error"
    11.5  BUILD_DEPENDS="libpcap-dev gpgme-dev gnupg iptables"
    11.6  
    11.7 +# What is the latest version available today?
    11.8 +current_version()
    11.9 +{
   11.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   11.11 +	sed "/dep/d;/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   11.12 +}
   11.13 +
   11.14  # Rules to configure and make the package.
   11.15  compile_rules()
   11.16  {
    12.1 --- a/gliv/receipt	Sat Feb 12 11:04:56 2022 +0100
    12.2 +++ b/gliv/receipt	Sat Feb 12 11:42:56 2022 +0000
    12.3 @@ -13,6 +13,13 @@
    12.4  DEPENDS="gtk+ gtkglext gettext-base pangox-compat"
    12.5  BUILD_DEPENDS="gtk+-dev gtkglext gtkglext-dev bison mesa-dev pangox-compat-dev"
    12.6  
    12.7 +# What is the latest version available today?
    12.8 +current_version()
    12.9 +{
   12.10 +	wget -O - $WEB_SITE 2>/dev/null | \
   12.11 +	sed '/gliv-/!d;/rpm/!d;s|.*gliv-||;s|-.*||;q'
   12.12 +}
   12.13 +
   12.14  # Rules to configure and make the package.
   12.15  compile_rules()
   12.16  {
    13.1 --- a/gnupg/receipt	Sat Feb 12 11:04:56 2022 +0100
    13.2 +++ b/gnupg/receipt	Sat Feb 12 11:42:56 2022 +0000
    13.3 @@ -17,6 +17,13 @@
    13.4  	libgpg-error-dev libksba-dev libusb-compat-dev libusb-dev 
    13.5  	npth-dev openldap-dev pth-dev readline-dev sqlite-dev zlib-dev"
    13.6  
    13.7 +# What is the latest version available today?
    13.8 +current_version()
    13.9 +{
   13.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   13.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   13.12 +}
   13.13 +
   13.14  # Rules to configure and make the package.
   13.15  compile_rules()
   13.16  {
    14.1 --- a/gvfb/receipt	Sat Feb 12 11:04:56 2022 +0100
    14.2 +++ b/gvfb/receipt	Sat Feb 12 11:42:56 2022 +0000
    14.3 @@ -14,6 +14,13 @@
    14.4  DEPENDS="gtk+"
    14.5  BUILD_DEPENDS="cmake gtk+-dev pkg-config"
    14.6  
    14.7 +# What is the latest version available today?
    14.8 +current_version()
    14.9 +{
   14.10 +	wget -O - ${WEB_SITE}download 2>/dev/null | \
   14.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   14.12 +}
   14.13 +
   14.14  # Rules to configure and make the package.
   14.15  compile_rules()
   14.16  {
    15.1 --- a/haproxy/receipt	Sat Feb 12 11:04:56 2022 +0100
    15.2 +++ b/haproxy/receipt	Sat Feb 12 11:42:56 2022 +0000
    15.3 @@ -14,6 +14,13 @@
    15.4  DEPENDS="pcre"
    15.5  BUILD_DEPENDS="pcre-dev"
    15.6  
    15.7 +# What is the latest version available today?
    15.8 +current_version()
    15.9 +{
   15.10 +	wget -O - $WEB_SITE 2>/dev/null | \
   15.11 +	sed "/dev/d;/LATEST/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\([0-9\\.]*\\).tar.*|\\1|" | sort -Vr | sed q
   15.12 +}
   15.13 +
   15.14  # Rules to configure and make the package.
   15.15  compile_rules()
   15.16  {
    16.1 --- a/hiawatha/receipt	Sat Feb 12 11:04:56 2022 +0100
    16.2 +++ b/hiawatha/receipt	Sat Feb 12 11:42:56 2022 +0000
    16.3 @@ -18,6 +18,13 @@
    16.4  
    16.5  CONFIG_FILES="/etc/hiawatha"
    16.6  
    16.7 +# What is the latest version available today?
    16.8 +current_version()
    16.9 +{
   16.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   16.11 +	sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   16.12 +}
   16.13 +
   16.14  # Rules to configure and make the package.
   16.15  compile_rules()
   16.16  {
    17.1 --- a/i3/receipt	Sat Feb 12 11:04:56 2022 +0100
    17.2 +++ b/i3/receipt	Sat Feb 12 11:42:56 2022 +0000
    17.3 @@ -21,6 +21,13 @@
    17.4  	xcb-util-keysyms-dev xcb-util-renderutil-dev xcb-util-wm-dev 
    17.5  	xcb-util-xrm-dev xorg-libX11-dev xorg-libXcursor-dev yajl"
    17.6  
    17.7 +# What is the latest version available today?
    17.8 +current_version()
    17.9 +{
   17.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   17.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   17.12 +}
   17.13 +
   17.14  # Rules to configure and make the package.
   17.15  compile_rules()
   17.16  {
    18.1 --- a/iftop/receipt	Sat Feb 12 11:04:56 2022 +0100
    18.2 +++ b/iftop/receipt	Sat Feb 12 11:42:56 2022 +0000
    18.3 @@ -14,6 +14,13 @@
    18.4  BUILD_DEPENDS="libpcap-dev ncurses-dev"
    18.5  DEPENDS="libpcap ncurses"
    18.6  
    18.7 +# What is the latest version available today?
    18.8 +current_version()
    18.9 +{
   18.10 +	wget -O - $WEB_SITE 2>/dev/null | \
   18.11 +	sed "/dev/d;/LATEST/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\([0-9\\.]*\\).tar.*|\\1|" | sort -Vr | sed q
   18.12 +}
   18.13 +
   18.14  # Rules to configure and make the package.
   18.15  compile_rules()
   18.16  {
    19.1 --- a/imagemagick/receipt	Sat Feb 12 11:04:56 2022 +0100
    19.2 +++ b/imagemagick/receipt	Sat Feb 12 11:42:56 2022 +0000
    19.3 @@ -24,6 +24,13 @@
    19.4  	librsvg-dev libtool libxml2-dev openexr-dev pango-dev perl \
    19.5  	tiff-dev util-linux-uuid-dev xorg-libXext-dev"
    19.6  
    19.7 +# What is the latest version available today?
    19.8 +current_version()
    19.9 +{
   19.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   19.11 +	sed "/latest/d;/$SOURCE-/!d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|;s|-|.|" | sort -Vr | sed q
   19.12 +}
   19.13 +
   19.14  # Rules to configure and make the package.
   19.15  compile_rules()
   19.16  {
    20.1 --- a/incron/receipt	Sat Feb 12 11:04:56 2022 +0100
    20.2 +++ b/incron/receipt	Sat Feb 12 11:42:56 2022 +0000
    20.3 @@ -13,6 +13,13 @@
    20.4  
    20.5  DEPENDS="gcc-lib-base"
    20.6  
    20.7 +# What is the latest version available today?
    20.8 +current_version()
    20.9 +{
   20.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   20.11 +	sed "/doc/d;/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   20.12 +}
   20.13 +
   20.14  # Rules to configure and make the package.
   20.15  compile_rules()
   20.16  {
    21.1 --- a/iotop/receipt	Sat Feb 12 11:04:56 2022 +0100
    21.2 +++ b/iotop/receipt	Sat Feb 12 11:42:56 2022 +0000
    21.3 @@ -13,6 +13,13 @@
    21.4  DEPENDS="python"
    21.5  BUILD_DEPENDS="python"
    21.6  
    21.7 +# What is the latest version available today?
    21.8 +current_version()
    21.9 +{
   21.10 +	wget -O - $WEB_SITE 2>/dev/null | \
   21.11 +	sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   21.12 +}
   21.13 +
   21.14  # Rules to configure and make the package.
   21.15  compile_rules()
   21.16  {
    22.1 --- a/jbigkit/receipt	Sat Feb 12 11:04:56 2022 +0100
    22.2 +++ b/jbigkit/receipt	Sat Feb 12 11:42:56 2022 +0000
    22.3 @@ -13,6 +13,13 @@
    22.4  
    22.5  HOST_ARCH="i486 arm"
    22.6  
    22.7 +# What is the latest version available today?
    22.8 +current_version()
    22.9 +{
   22.10 +	wget -O - ${WGET_URL%/*/*} 2>/dev/null | \
   22.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   22.12 +}
   22.13 +
   22.14  # Rules to configure and make the package.
   22.15  compile_rules()
   22.16  {
    23.1 --- a/libdaq/receipt	Sat Feb 12 11:04:56 2022 +0100
    23.2 +++ b/libdaq/receipt	Sat Feb 12 11:42:56 2022 +0000
    23.3 @@ -15,6 +15,13 @@
    23.4  DEPENDS="libpcap"
    23.5  BUILD_DEPENDS="automake bison flex libpcap-dev"
    23.6  
    23.7 +# What is the latest version available today?
    23.8 +current_version()
    23.9 +{
   23.10 +	wget -O - ${WGET_URL%/*/*} 2>/dev/null | \
   23.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-v\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
   23.12 +}
   23.13 +
   23.14  # Rules to configure and make the package.
   23.15  compile_rules()
   23.16  {
    24.1 --- a/libnetfilter_cthelper/receipt	Sat Feb 12 11:04:56 2022 +0100
    24.2 +++ b/libnetfilter_cthelper/receipt	Sat Feb 12 11:42:56 2022 +0000
    24.3 @@ -13,6 +13,13 @@
    24.4  DEPENDS="libmnl"
    24.5  BUILD_DEPENDS="pkg-config glib-dev libmnl-dev"
    24.6  
    24.7 +# What is the latest version available today?
    24.8 +current_version()
    24.9 +{
   24.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   24.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   24.12 +}
   24.13 +
   24.14  # Rules to configure and make the package.
   24.15  compile_rules()
   24.16  {
    25.1 --- a/libnetfilter_cttimeout/receipt	Sat Feb 12 11:04:56 2022 +0100
    25.2 +++ b/libnetfilter_cttimeout/receipt	Sat Feb 12 11:42:56 2022 +0000
    25.3 @@ -13,6 +13,13 @@
    25.4  DEPENDS="libmnl"
    25.5  BUILD_DEPENDS="pkg-config glib-dev libmnl-dev"
    25.6  
    25.7 +# What is the latest version available today?
    25.8 +current_version()
    25.9 +{
   25.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   25.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   25.12 +}
   25.13 +
   25.14  # Rules to configure and make the package.
   25.15  compile_rules()
   25.16  {
    26.1 --- a/libnetfilter_queue/receipt	Sat Feb 12 11:04:56 2022 +0100
    26.2 +++ b/libnetfilter_queue/receipt	Sat Feb 12 11:42:56 2022 +0000
    26.3 @@ -14,6 +14,13 @@
    26.4  DEPENDS="libnfnetlink"
    26.5  BUILD_DEPENDS="libmnl-dev libnfnetlink-dev"
    26.6  
    26.7 +# What is the latest version available today?
    26.8 +current_version()
    26.9 +{
   26.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   26.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   26.12 +}
   26.13 +
   26.14  # Rules to configure and make the package.
   26.15  compile_rules()
   26.16  {
    27.1 --- a/libnfnetlink/receipt	Sat Feb 12 11:04:56 2022 +0100
    27.2 +++ b/libnfnetlink/receipt	Sat Feb 12 11:42:56 2022 +0000
    27.3 @@ -10,6 +10,13 @@
    27.4  WEB_SITE="http://www.netfilter.org/projects/$PACKAGE/"
    27.5  WGET_URL="${WEB_SITE}files/$TARBALL"
    27.6  
    27.7 +# What is the latest version available today?
    27.8 +current_version()
    27.9 +{
   27.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   27.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   27.12 +}
   27.13 +
   27.14  # Rules to configure and make the package.
   27.15  compile_rules()
   27.16  {
    28.1 --- a/libnl1/receipt	Sat Feb 12 11:04:56 2022 +0100
    28.2 +++ b/libnl1/receipt	Sat Feb 12 11:42:56 2022 +0000
    28.3 @@ -13,6 +13,13 @@
    28.4  
    28.5  BUILD_DEPENDS="flex"
    28.6  
    28.7 +# What is the latest version available today?
    28.8 +current_version()
    28.9 +{
   28.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   28.11 +	sed "/$SOURCE-[0-9]/!d;/-rc/d;/tar/!d;s|.*$SOURCE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   28.12 +}
   28.13 +
   28.14  # Rules to configure and make the package.
   28.15  compile_rules()
   28.16  {
    29.1 --- a/libproxy/receipt	Sat Feb 12 11:04:56 2022 +0100
    29.2 +++ b/libproxy/receipt	Sat Feb 12 11:42:56 2022 +0000
    29.3 @@ -15,6 +15,13 @@
    29.4  BUILD_DEPENDS="glibc-base cmake libwebkit-dev python python-dev perl \
    29.5  gtk+-dev pkg-config"
    29.6  
    29.7 +# What is the latest version available today?
    29.8 +current_version()
    29.9 +{
   29.10 +	wget -O - https://github.com/libproxy/libproxy/releases 2>/dev/null | \
   29.11 +	sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
   29.12 +}
   29.13 +
   29.14  # Rules to configure and make the package.
   29.15  compile_rules()
   29.16  {
    30.1 --- a/libsndfile/receipt	Sat Feb 12 11:04:56 2022 +0100
    30.2 +++ b/libsndfile/receipt	Sat Feb 12 11:42:56 2022 +0000
    30.3 @@ -26,6 +26,13 @@
    30.4  	i?86) BUILD_DEPENDS="$BUILD_DEPENDS flac-dev" ;;
    30.5  esac
    30.6  
    30.7 +# What is the latest version available today?
    30.8 +current_version()
    30.9 +{
   30.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   30.11 +	sed "/test/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   30.12 +}
   30.13 +
   30.14  # Rules to configure and make the package.
   30.15  compile_rules()
   30.16  {
    31.1 --- a/libssh2/receipt	Sat Feb 12 11:04:56 2022 +0100
    31.2 +++ b/libssh2/receipt	Sat Feb 12 11:42:56 2022 +0000
    31.3 @@ -14,6 +14,13 @@
    31.4  DEPENDS="libgcrypt libgpg-error libssl zlib"
    31.5  BUILD_DEPENDS="libgcrypt-dev openssl-dev zlib-dev"
    31.6  
    31.7 +# What is the latest version available today?
    31.8 +current_version()
    31.9 +{
   31.10 +	wget -O - $WEB_SITE 2>/dev/null | \
   31.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   31.12 +}
   31.13 +
   31.14  # Rules to configure and make the package.
   31.15  compile_rules()
   31.16  {
    32.1 --- a/lilo/receipt	Sat Feb 12 11:04:56 2022 +0100
    32.2 +++ b/lilo/receipt	Sat Feb 12 11:42:56 2022 +0000
    32.3 @@ -14,6 +14,13 @@
    32.4  BUILD_DEPENDS="dev86 libdevmapper"
    32.5  DEPENDS="libdevmapper"
    32.6  
    32.7 +# What is the latest version available today?
    32.8 +current_version()
    32.9 +{
   32.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   32.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   32.12 +}
   32.13 +
   32.14  # Rules to configure and make the package.
   32.15  compile_rules()
   32.16  {
    33.1 --- a/lzop/receipt	Sat Feb 12 11:04:56 2022 +0100
    33.2 +++ b/lzop/receipt	Sat Feb 12 11:42:56 2022 +0000
    33.3 @@ -14,6 +14,13 @@
    33.4  DEPENDS="lzo"
    33.5  BUILD_DEPENDS="lzo-dev"
    33.6  
    33.7 +# What is the latest version available today?
    33.8 +current_version()
    33.9 +{
   33.10 +	wget -O - $WEB_SITE 2>/dev/null | \
   33.11 +	sed '/Version/!d;s|.*sion ||;s|<.*||;q'
   33.12 +}
   33.13 +
   33.14  # Rules to configure and make the package.
   33.15  compile_rules()
   33.16  {
    34.1 --- a/masqmail/receipt	Sat Feb 12 11:04:56 2022 +0100
    34.2 +++ b/masqmail/receipt	Sat Feb 12 11:42:56 2022 +0000
    34.3 @@ -14,6 +14,13 @@
    34.4  
    34.5  BUILD_DEPENDS="glib glib-dev pkg-config"
    34.6  
    34.7 +# What is the latest version available today?
    34.8 +current_version()
    34.9 +{
   34.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   34.11 +	sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   34.12 +}
   34.13 +
   34.14  # Rules to configure and make the package.
   34.15  compile_rules()
   34.16  {
    35.1 --- a/mcabber/receipt	Sat Feb 12 11:04:56 2022 +0100
    35.2 +++ b/mcabber/receipt	Sat Feb 12 11:42:56 2022 +0000
    35.3 @@ -13,6 +13,13 @@
    35.4  DEPENDS="libcrypto openssl glib gpgme libgpg-error  ncurses"
    35.5  BUILD_DEPENDS="ncurses-dev glib-dev"
    35.6  
    35.7 +# What is the latest version available today?
    35.8 +current_version()
    35.9 +{
   35.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   35.11 +	sed "/current/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   35.12 +}
   35.13 +
   35.14  # Rules to configure and make the package.
   35.15  compile_rules()
   35.16  {
    36.1 --- a/memcached/receipt	Sat Feb 12 11:04:56 2022 +0100
    36.2 +++ b/memcached/receipt	Sat Feb 12 11:42:56 2022 +0000
    36.3 @@ -14,6 +14,13 @@
    36.4  DEPENDS="libevent"
    36.5  BUILD_DEPENDS="libevent-dev"
    36.6  
    36.7 +# What is the latest version available today?
    36.8 +current_version()
    36.9 +{
   36.10 +	wget -O - $WEB_SITE 2>/dev/null | \
   36.11 +	sed '/id="ver"/!d;s|.*>v||;s|<.*||'
   36.12 +}
   36.13 +
   36.14  # Rules to configure and make the package.
   36.15  compile_rules()
   36.16  {
    37.1 --- a/miniupnpd/receipt	Sat Feb 12 11:04:56 2022 +0100
    37.2 +++ b/miniupnpd/receipt	Sat Feb 12 11:42:56 2022 +0000
    37.3 @@ -15,6 +15,13 @@
    37.4  DEPENDS="iptables libssl"
    37.5  BUILD_DEPENDS="iptables-dev libnfnetlink-dev openssl-dev util-linux-uuid-dev"
    37.6  
    37.7 +# What is the latest version available today?
    37.8 +current_version()
    37.9 +{
   37.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   37.11 +	sed "/latest/d;/$PACKAGE-[0-9]*\.[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
   37.12 +}
   37.13 +
   37.14  # Rules to configure and make the package.
   37.15  compile_rules()
   37.16  {
    38.1 --- a/mpg123/receipt	Sat Feb 12 11:04:56 2022 +0100
    38.2 +++ b/mpg123/receipt	Sat Feb 12 11:42:56 2022 +0000
    38.3 @@ -22,6 +22,13 @@
    38.4  	arm*) ARCH_ARGS="--with-cpu=arm_nofpu" ;;
    38.5  esac
    38.6  
    38.7 +# What is the latest version available today?
    38.8 +current_version()
    38.9 +{
   38.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   38.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   38.12 +}
   38.13 +
   38.14  # Rules to configure and make the package.
   38.15  compile_rules()
   38.16  {
    39.1 --- a/nginx-extras/receipt	Sat Feb 12 11:04:56 2022 +0100
    39.2 +++ b/nginx-extras/receipt	Sat Feb 12 11:42:56 2022 +0000
    39.3 @@ -9,7 +9,7 @@
    39.4  WEB_SITE="http://nginx.org/"
    39.5  
    39.6  TARBALL="nginx-$VERSION.tar.gz"
    39.7 -WGET_URL="${WEB_SITE}download//$TARBALL"
    39.8 +WGET_URL="${WEB_SITE}download/$TARBALL"
    39.9  
   39.10  PROVIDE="lighttpd"
   39.11  CONFLICT="nginx"
   39.12 @@ -20,6 +20,13 @@
   39.13  
   39.14  CONFIG_FILES="/etc/nginx"
   39.15  
   39.16 +# What is the latest version available today?
   39.17 +current_version()
   39.18 +{
   39.19 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   39.20 +	sed "/latest/d;/nginx-/!d;/tar/!d;s|.*nginx-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   39.21 +}
   39.22 +
   39.23  # Rules to configure and make the package.
   39.24  compile_rules()
   39.25  {
    40.1 --- a/nginx/receipt	Sat Feb 12 11:04:56 2022 +0100
    40.2 +++ b/nginx/receipt	Sat Feb 12 11:42:56 2022 +0000
    40.3 @@ -18,6 +18,13 @@
    40.4  
    40.5  CONFIG_FILES="/etc/nginx"
    40.6  
    40.7 +# What is the latest version available today?
    40.8 +current_version()
    40.9 +{
   40.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   40.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   40.12 +}
   40.13 +
   40.14  # Rules to configure and make the package.
   40.15  compile_rules()
   40.16  {
    41.1 --- a/nim/receipt	Sat Feb 12 11:04:56 2022 +0100
    41.2 +++ b/nim/receipt	Sat Feb 12 11:42:56 2022 +0000
    41.3 @@ -14,6 +14,13 @@
    41.4  DEPENDS="gcc glibc-base readline"
    41.5  BUILD_DEPENDS="gcc glibc-dev readline-dev"
    41.6  
    41.7 +# What is the latest version available today?
    41.8 +current_version()
    41.9 +{
   41.10 +	wget -O - $WEB_SITE 2>/dev/null | \
   41.11 +	sed '/released/!d;s|.*Version ||;s| released.*||;q'
   41.12 +}
   41.13 +
   41.14  # Rules to configure and make the package.
   41.15  compile_rules()
   41.16  {
    42.1 --- a/physfs/receipt	Sat Feb 12 11:04:56 2022 +0100
    42.2 +++ b/physfs/receipt	Sat Feb 12 11:42:56 2022 +0000
    42.3 @@ -13,6 +13,13 @@
    42.4  
    42.5  BUILD_DEPENDS="cmake"
    42.6  
    42.7 +# What is the latest version available today?
    42.8 +current_version()
    42.9 +{
   42.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   42.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   42.12 +}
   42.13 +
   42.14  # Rules to configure and make the package.
   42.15  compile_rules()
   42.16  {
    43.1 --- a/pidgin-musictracker/receipt	Sat Feb 12 11:04:56 2022 +0100
    43.2 +++ b/pidgin-musictracker/receipt	Sat Feb 12 11:42:56 2022 +0000
    43.3 @@ -14,6 +14,13 @@
    43.4  BUILD_DEPENDS="pidgin-dev gettext libpurple-dev pcre-dev dbus-glib-dev \
    43.5  gtk+-dev glib-dev pkg-config libffi"
    43.6  
    43.7 +# What is the latest version available today?
    43.8 +current_version()
    43.9 +{
   43.10 +	wget -O - $WEB_SITE 2>/dev/null | \
   43.11 +	sed "/develop/d;/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   43.12 +}
   43.13 +
   43.14  # Rules to configure and make the package.
   43.15  compile_rules()
   43.16  {
    44.1 --- a/prosody/receipt	Sat Feb 12 11:04:56 2022 +0100
    44.2 +++ b/prosody/receipt	Sat Feb 12 11:42:56 2022 +0000
    44.3 @@ -21,6 +21,13 @@
    44.4  	arm*) luapath="/cross/$ARCH/sysroot" ;;
    44.5  esac
    44.6  
    44.7 +# What is the latest version available today?
    44.8 +current_version()
    44.9 +{
   44.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   44.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   44.12 +}
   44.13 +
   44.14  # Rules to configure and make the package.
   44.15  compile_rules()
   44.16  {
    45.1 --- a/qiv/receipt	Sat Feb 12 11:04:56 2022 +0100
    45.2 +++ b/qiv/receipt	Sat Feb 12 11:42:56 2022 +0000
    45.3 @@ -14,6 +14,13 @@
    45.4  DEPENDS="gtk+ imlib2 lcms2 libexif"
    45.5  BUILD_DEPENDS="gtk+-dev imlib2-dev lcms2-dev libexif-dev"
    45.6  
    45.7 +# What is the latest version available today?
    45.8 +current_version()
    45.9 +{
   45.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   45.11 +	sed "/x.y.z/d;/pre/d;/$PACKAGE-/!d;/tgz/!d;s|.*$PACKAGE-\\(.*\\).tgz.*\".*|\\1|" | sort -Vr | sed q
   45.12 +}
   45.13 +
   45.14  # Rules to configure and make the package.
   45.15  compile_rules()
   45.16  {
    46.1 --- a/remind/receipt	Sat Feb 12 11:04:56 2022 +0100
    46.2 +++ b/remind/receipt	Sat Feb 12 11:42:56 2022 +0000
    46.3 @@ -14,6 +14,13 @@
    46.4  
    46.5  DEPENDS="tcl tcllib tk xorg-libXss"
    46.6  
    46.7 +# What is the latest version available today?
    46.8 +current_version()
    46.9 +{
   46.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   46.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   46.12 +}
   46.13 +
   46.14  # Rules to configure and make the package.
   46.15  compile_rules()
   46.16  {
    47.1 --- a/rsnapshot/receipt	Sat Feb 12 11:04:56 2022 +0100
    47.2 +++ b/rsnapshot/receipt	Sat Feb 12 11:42:56 2022 +0000
    47.3 @@ -16,6 +16,13 @@
    47.4  
    47.5  CONFIG_FILES="/etc/rsnapshot.conf"
    47.6  
    47.7 +# What is the latest version available today?
    47.8 +current_version()
    47.9 +{
   47.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   47.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   47.12 +}
   47.13 +
   47.14  # Rules to configure and make the package.
   47.15  compile_rules()
   47.16  {
    48.1 --- a/scrollz/receipt	Sat Feb 12 11:04:56 2022 +0100
    48.2 +++ b/scrollz/receipt	Sat Feb 12 11:42:56 2022 +0000
    48.3 @@ -14,6 +14,13 @@
    48.4  DEPENDS=""
    48.5  BUILD_DEPENDS="ncursesw-dev"
    48.6  
    48.7 +# What is the latest version available today?
    48.8 +current_version()
    48.9 +{
   48.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   48.11 +	sed '/ScrollZ-/!d;/tar/!d;s|.*ScrollZ-\(.*\).tar.*|\1|' | sort -Vr | sed q
   48.12 +}
   48.13 +
   48.14  # Rules to configure and make the package.
   48.15  compile_rules()
   48.16  {
    49.1 --- a/snort/receipt	Sat Feb 12 11:04:56 2022 +0100
    49.2 +++ b/snort/receipt	Sat Feb 12 11:42:56 2022 +0000
    49.3 @@ -15,6 +15,13 @@
    49.4  BUILD_DEPENDS="flex libdaq-dev libdnet-dev libpcap-dev luajit-dev 
    49.5  	openssl-dev pcre-dev"
    49.6  
    49.7 +# What is the latest version available today?
    49.8 +current_version()
    49.9 +{
   49.10 +	wget -O - ${WGET_URL%/*/*} 2>/dev/null | \
   49.11 +	sed "/openappid/d;/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
   49.12 +}
   49.13 +
   49.14  # Rules to configure and make the package.
   49.15  compile_rules()
   49.16  {
    50.1 --- a/socat/receipt	Sat Feb 12 11:04:56 2022 +0100
    50.2 +++ b/socat/receipt	Sat Feb 12 11:42:56 2022 +0000
    50.3 @@ -16,6 +16,13 @@
    50.4  
    50.5  HOST_ARCH="i486"
    50.6  
    50.7 +# What is the latest version available today?
    50.8 +current_version()
    50.9 +{
   50.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   50.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   50.12 +}
   50.13 +
   50.14  # Rules to configure and make the package.
   50.15  compile_rules()
   50.16  {
    51.1 --- a/stunnel/receipt	Sat Feb 12 11:04:56 2022 +0100
    51.2 +++ b/stunnel/receipt	Sat Feb 12 11:42:56 2022 +0000
    51.3 @@ -16,6 +16,13 @@
    51.4  
    51.5  CONFIG_FILES="/etc/stunnel/stunnel.conf"
    51.6  
    51.7 +# What is the latest version available today?
    51.8 +current_version()
    51.9 +{
   51.10 +	wget -O - ${WGET_URL%/*}.html 2>/dev/null | \
   51.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   51.12 +}
   51.13 +
   51.14  # Rules to configure and make the package.
   51.15  compile_rules()
   51.16  {
    52.1 --- a/tahoe-lafs/receipt	Sat Feb 12 11:04:56 2022 +0100
    52.2 +++ b/tahoe-lafs/receipt	Sat Feb 12 11:42:56 2022 +0000
    52.3 @@ -17,6 +17,13 @@
    52.4  	twisted zopeinterface"
    52.5  BUILD_DEPENDS="gmp-dev openssl-dev python-dev python-setuptools"
    52.6  
    52.7 +# What is the latest version available today?
    52.8 +current_version()
    52.9 +{
   52.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   52.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   52.12 +}
   52.13 +
   52.14  # Rules to configure and make the package.
   52.15  compile_rules()
   52.16  {
    53.1 --- a/task/receipt	Sat Feb 12 11:04:56 2022 +0100
    53.2 +++ b/task/receipt	Sat Feb 12 11:42:56 2022 +0000
    53.3 @@ -17,6 +17,13 @@
    53.4  BUILD_DEPENDS="cmake gcc83 gnutls-dev libgnutls libunistring-dev 
    53.5  	ncurses-dev util-linux-uuid-dev"
    53.6  
    53.7 +# What is the latest version available today?
    53.8 +current_version()
    53.9 +{
   53.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   53.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|;q"
   53.12 +}
   53.13 +
   53.14  # Rules to configure and make the package.
   53.15  compile_rules()
   53.16  {
    54.1 --- a/ucl/receipt	Sat Feb 12 11:04:56 2022 +0100
    54.2 +++ b/ucl/receipt	Sat Feb 12 11:42:56 2022 +0000
    54.3 @@ -10,6 +10,13 @@
    54.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
    54.5  WGET_URL="$WEB_SITE/download/$TARBALL"
    54.6  
    54.7 +# What is the latest version available today?
    54.8 +current_version()
    54.9 +{
   54.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   54.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   54.12 +}
   54.13 +
   54.14  # Rules to configure and make the package.
   54.15  compile_rules()
   54.16  {
    55.1 --- a/urlgrabber/receipt	Sat Feb 12 11:04:56 2022 +0100
    55.2 +++ b/urlgrabber/receipt	Sat Feb 12 11:42:56 2022 +0000
    55.3 @@ -14,6 +14,13 @@
    55.4  DEPENDS="pycurl python"
    55.5  BUILD_DEPENDS="pycurl python-dev python-setuptools python-six"
    55.6  
    55.7 +# What is the latest version available today?
    55.8 +current_version()
    55.9 +{
   55.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   55.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   55.12 +}
   55.13 +
   55.14  # Rules to configure and make the package.
   55.15  compile_rules()
   55.16  {
    56.1 --- a/wimlib/receipt	Sat Feb 12 11:04:56 2022 +0100
    56.2 +++ b/wimlib/receipt	Sat Feb 12 11:42:56 2022 +0000
    56.3 @@ -16,6 +16,13 @@
    56.4  BUILD_DEPENDS="attr-dev cabextract cdrkit fuse-dev libxml2-dev mtools 
    56.5  	ntfs-3g-dev openssl-dev pkg-config syslinux"
    56.6  
    56.7 +# What is the latest version available today?
    56.8 +current_version()
    56.9 +{
   56.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   56.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   56.12 +}
   56.13 +
   56.14  # Rules to configure and make the package.
   56.15  compile_rules()
   56.16  {
    57.1 --- a/workerfm/receipt	Sat Feb 12 11:04:56 2022 +0100
    57.2 +++ b/workerfm/receipt	Sat Feb 12 11:42:56 2022 +0000
    57.3 @@ -19,6 +19,13 @@
    57.4  	hal-dev libmagic-dev liblzma-dev util-linux-uuid-dev 
    57.5  	xorg-libX11-dev xorg-libXft-dev xorg-libXinerama-dev"
    57.6  
    57.7 +# What is the latest version available today?
    57.8 +current_version()
    57.9 +{
   57.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   57.11 +	sed '/worker-[0-9]/!d;s|.*worker-||;s|.tar.*||' | sort -Vr | sed q
   57.12 +}
   57.13 +
   57.14  # Rules to configure and make the package.
   57.15  compile_rules()
   57.16  {
    58.1 --- a/xbill/receipt	Sat Feb 12 11:04:56 2022 +0100
    58.2 +++ b/xbill/receipt	Sat Feb 12 11:42:56 2022 +0000
    58.3 @@ -13,6 +13,13 @@
    58.4  DEPENDS="gtk+ xorg-libXaw lesstif"
    58.5  BUILD_DEPENDS="gtk+-dev xorg-libXaw-dev lesstif-dev"
    58.6  
    58.7 +# What is the latest version available today?
    58.8 +current_version()
    58.9 +{
   58.10 +	wget -O - ${WGET_URL%/*} 2>/dev/null | \
   58.11 +	sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
   58.12 +}
   58.13 +
   58.14  # Rules to configure and make the package.
   58.15  compile_rules()
   58.16  {