wok rev 24759

pkg-config: use autoconf
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 18 08:01:47 2022 +0000 (2022-03-18)
parents 325f04e24eff
children cf986fd913b1
files aircrack-ng-oui/receipt android-build-tools/receipt aurorials-theme/receipt autoblog/receipt automoc4/receipt azdrawing/receipt c-client/receipt clamav/receipt clearlooks-compact/receipt cloudvpn/receipt croscore-fonts/receipt dosbox-mb/receipt droid-font/receipt dzen2/receipt ecore/receipt edbus/receipt edje/receipt eet/receipt eeze/receipt efreet/receipt eina/receipt eio/receipt electricsheep/receipt embryo/receipt esterel/receipt ethumb/receipt evas/receipt expedite/receipt extended-actions/receipt flag-icons/receipt gadmin-antivirus/receipt gadmin-sshd/receipt gens-gs/receipt pkg-config/receipt
line diff
     1.1 --- a/aircrack-ng-oui/receipt	Fri Mar 18 07:44:06 2022 +0100
     1.2 +++ b/aircrack-ng-oui/receipt	Fri Mar 18 08:01:47 2022 +0000
     1.3 @@ -11,6 +11,13 @@
     1.4  WGET_URL="http://standards-oui.ieee.org/oui.txt"
     1.5  HOST_ARCH="any"
     1.6  
     1.7 +# What is the latest version available today?
     1.8 +current_version()
     1.9 +{
    1.10 +	wget -O - https://github.com/royhills/arp-scan/commits/master/ieee-oui.txt 2>/dev/null | \
    1.11 +	sed '/Commits on/!d;s|.*on |"|;s|<.*|"|;q' | xargs date +%Y%m%d -d
    1.12 +}
    1.13 +
    1.14  # Rules to configure and make the package.
    1.15  compile_rules()
    1.16  {
     2.1 --- a/android-build-tools/receipt	Fri Mar 18 07:44:06 2022 +0100
     2.2 +++ b/android-build-tools/receipt	Fri Mar 18 08:01:47 2022 +0000
     2.3 @@ -14,6 +14,13 @@
     2.4  
     2.5  DEPENDS="android-sdk"
     2.6  
     2.7 +# What is the latest version available today?
     2.8 +current_version()
     2.9 +{
    2.10 +	wget -O - https://developer.android.com/studio/releases/build-tools 2>/dev/null | \
    2.11 +	sed '/Build Tools,/!d;/ rc/d;s|.*evision ||;s| .*||;q'
    2.12 +}
    2.13 +
    2.14  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.15  genpkg_rules()
    2.16  {
     3.1 --- a/aurorials-theme/receipt	Fri Mar 18 07:44:06 2022 +0100
     3.2 +++ b/aurorials-theme/receipt	Fri Mar 18 08:01:47 2022 +0000
     3.3 @@ -15,6 +15,13 @@
     3.4  DEPENDS="gtk2-engine-murrine openbox slim"
     3.5  BUILD_DEPENDS="wget imagemagick"
     3.6  
     3.7 +# What is the latest version available today?
     3.8 +current_version()
     3.9 +{
    3.10 +	wget -O - $WEB_SITE 2>/dev/null | \
    3.11 +	sed 's|}|}\n|g;s|</|</\n|g' | sed '/dateTime=/!d;s|.*dateTime=.||;s|T.*||;s|-||g;q'
    3.12 +}
    3.13 +
    3.14  # Rules to configure and make the package.
    3.15  compile_rules()
    3.16  {
     4.1 --- a/autoblog/receipt	Fri Mar 18 07:44:06 2022 +0100
     4.2 +++ b/autoblog/receipt	Fri Mar 18 08:01:47 2022 +0000
     4.3 @@ -17,6 +17,13 @@
     4.4  
     4.5  DEPENDS="php"
     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 '/[0-9]/!d;s| *[^ ]* ||;q'
    4.12 +}
    4.13 +
    4.14  # Rules to configure and make the package.
    4.15  compile_rules()
    4.16  {
     5.1 --- a/automoc4/receipt	Fri Mar 18 07:44:06 2022 +0100
     5.2 +++ b/automoc4/receipt	Fri Mar 18 08:01:47 2022 +0000
     5.3 @@ -13,6 +13,13 @@
     5.4  DEPENDS="cmake libQtCore gcc-lib-base"
     5.5  BUILD_DEPENDS="cmake qmake Qt4-dev"
     5.6  
     5.7 +# What is the latest version available today?
     5.8 +current_version()
     5.9 +{
    5.10 +	wget -O - https://github.com/KDE/automoc/tags 2>/dev/null | \
    5.11 +	sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
    5.12 +}
    5.13 +
    5.14  # Rules to configure and make the package.
    5.15  compile_rules()
    5.16  {
     6.1 --- a/azdrawing/receipt	Fri Mar 18 07:44:06 2022 +0100
     6.2 +++ b/azdrawing/receipt	Fri Mar 18 08:01:47 2022 +0000
     6.3 @@ -14,6 +14,13 @@
     6.4  libjpeg-turbo"
     6.5  BUILD_DEPENDS="xorg-dev freetype-dev fontconfig-dev libjpeg-turbo-dev zlib-dev"
     6.6  
     6.7 +# What is the latest version available today?
     6.8 +current_version()
     6.9 +{
    6.10 +	wget -O - https://github.com/andeon/azdrawing/releases 2>/dev/null | \
    6.11 +	sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
    6.12 +}
    6.13 +
    6.14  # Rules to configure and make the package.
    6.15  compile_rules()
    6.16  {
     7.1 --- a/c-client/receipt	Fri Mar 18 07:44:06 2022 +0100
     7.2 +++ b/c-client/receipt	Fri Mar 18 08:01:47 2022 +0000
     7.3 @@ -14,6 +14,13 @@
     7.4  
     7.5  BUILD_DEPENDS="openssl-dev"
     7.6  
     7.7 +# What is the latest version available today?
     7.8 +current_version()
     7.9 +{
    7.10 +	wget -O - $WEB_SITE 2>/dev/null | \
    7.11 +	sed '/Latest Release/!d;s|.*ersion ||;s|<.*||;q'
    7.12 +}
    7.13 +
    7.14  # Rules to configure and make the package.
    7.15  compile_rules()
    7.16  {
     8.1 --- a/clamav/receipt	Fri Mar 18 07:44:06 2022 +0100
     8.2 +++ b/clamav/receipt	Fri Mar 18 08:01:47 2022 +0000
     8.3 @@ -17,6 +17,14 @@
     8.4  BUILD_DEPENDS="bzip2-dev check-dev cmake curl-dev gmp-dev libjson-c-dev
     8.5  	libxml2-dev ncurses-dev openssl-dev pcre2-dev py3k zlib-dev"
     8.6  
     8.7 +# What is the latest version available today?
     8.8 +current_version()
     8.9 +{
    8.10 +	wget -O - https://blog.clamav.net/ 2>/dev/null | \
    8.11 +	sed '/^ClamAV/!d;/ release/!d;/candidate/d;s|and|\n&|' | \
    8.12 +	sed 's|[^ ]* ||;s| .*||' | sort -Vr | sed q
    8.13 +}
    8.14 +
    8.15  # Rules to configure and make the package.
    8.16  compile_rules()
    8.17  {
     9.1 --- a/clearlooks-compact/receipt	Fri Mar 18 07:44:06 2022 +0100
     9.2 +++ b/clearlooks-compact/receipt	Fri Mar 18 08:01:47 2022 +0000
     9.3 @@ -13,6 +13,13 @@
     9.4  
     9.5  DEPENDS="gtk-clearlooks"
     9.6  
     9.7 +# What is the latest version available today?
     9.8 +current_version()
     9.9 +{
    9.10 +	wget -O - $WEB_SITE 2>/dev/null | \
    9.11 +	sed '/ Version [0-9]/!d;s|.*sion ||;s|<.*||;q'
    9.12 +}
    9.13 +
    9.14  # Rules to gen a SliTaz package suitable for Tazpkg.
    9.15  genpkg_rules()
    9.16  {
    10.1 --- a/cloudvpn/receipt	Fri Mar 18 07:44:06 2022 +0100
    10.2 +++ b/cloudvpn/receipt	Fri Mar 18 08:01:47 2022 +0000
    10.3 @@ -14,6 +14,13 @@
    10.4  BUILD_DEPENDS="gnutls-dev libgnutls zlib-dev automake"
    10.5  DEPENDS="gcc-lib-base gnutls zlib libtasn1"
    10.6  
    10.7 +# What is the latest version available today?
    10.8 +current_version()
    10.9 +{
   10.10 +	wget -O - $WEB_SITE 2>/dev/null | \
   10.11 +	sed '/class="release"/!d;s|.*[0-9]">||;s|<.*||;q'
   10.12 +}
   10.13 +
   10.14  # Rules to configure and make the package.
   10.15  compile_rules()
   10.16  {
    11.1 --- a/croscore-fonts/receipt	Fri Mar 18 07:44:06 2022 +0100
    11.2 +++ b/croscore-fonts/receipt	Fri Mar 18 08:01:47 2022 +0000
    11.3 @@ -12,6 +12,13 @@
    11.4  TARBALL="croscorefonts-$VERSION.tar.bz2"
    11.5  WGET_URL="http://gsdview.appspot.com/chromeos-localmirror/distfiles/$TARBALL"
    11.6  
    11.7 +# What is the latest version available today?
    11.8 +current_version()
    11.9 +{
   11.10 +	wget -O - "http://gsdview.appspot.com/chromeos-localmirror/distfiles/?marker=distfiles%2Fcroscorefonts-0.0.1.tar.gz" 2>/dev/null | \
   11.11 +	sed '/croscorefonts-[0-9]/!d;s|.*croscorefonts-||;s|.t.*||' | sort -Vr | sed q
   11.12 +}
   11.13 +
   11.14  # Rules to gen a SliTaz package suitable for Tazpkg.
   11.15  genpkg_rules()
   11.16  {
    12.1 --- a/dosbox-mb/receipt	Fri Mar 18 07:44:06 2022 +0100
    12.2 +++ b/dosbox-mb/receipt	Fri Mar 18 08:01:47 2022 +0000
    12.3 @@ -16,6 +16,13 @@
    12.4  BUILD_DEPENDS="xorg-libX11-dev libsdl-dev libsdl-net-dev freetype-dev \
    12.5  libpng libpng-dev libpcap libpcap-dev automake autoconf libtool"
    12.6  
    12.7 +# What is the latest version available today?
    12.8 +current_version()
    12.9 +{
   12.10 +	wget -O - https://github.com/joncampbell123/dosbox-x/releases 2>/dev/null | \
   12.11 +	sed '/archive.*tar/!d;s|.*/[a-z-]*\(.*\).tar.*|\1|;q'
   12.12 +}
   12.13 +
   12.14  # Rules to configure and make the package.
   12.15  compile_rules()
   12.16  {
    13.1 --- a/droid-font/receipt	Fri Mar 18 07:44:06 2022 +0100
    13.2 +++ b/droid-font/receipt	Fri Mar 18 08:01:47 2022 +0000
    13.3 @@ -14,6 +14,13 @@
    13.4  
    13.5  BUILD_DEPENDS="wget"
    13.6  
    13.7 +# What is the latest version available today?
    13.8 +current_version()
    13.9 +{
   13.10 +	wget -O - https://github.com/aosp-mirror/platform_frameworks_base/commits/master 2>/dev/null | \
   13.11 +	sed '/Commits on/!d;s|.*on |"|;s|<.*|"|;q' | xargs date +%Y-%m-%d -d
   13.12 +}
   13.13 +
   13.14  # Rules to configure and make the package.
   13.15  # Keep an empty compile_rules to make tazwok install build depends.
   13.16  compile_rules()
    14.1 --- a/dzen2/receipt	Fri Mar 18 07:44:06 2022 +0100
    14.2 +++ b/dzen2/receipt	Fri Mar 18 08:01:47 2022 +0000
    14.3 @@ -13,6 +13,13 @@
    14.4  
    14.5  DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp"
    14.6  
    14.7 +# What is the latest version available today?
    14.8 +current_version()
    14.9 +{
   14.10 +	wget -O - https://github.com/robm/dzen/commits/master 2>/dev/null | \
   14.11 +	sed '/Commits on/!d;s|.*on |"|;s|<.*|"|;q' | xargs date +%Y%m%d -d
   14.12 +}
   14.13 +
   14.14  # Rules to configure and make the package.
   14.15  compile_rules()
   14.16  {
    15.1 --- a/ecore/receipt	Fri Mar 18 07:44:06 2022 +0100
    15.2 +++ b/ecore/receipt	Fri Mar 18 08:01:47 2022 +0000
    15.3 @@ -15,6 +15,13 @@
    15.4  DEPENDS="eina evas libcurl libidn"
    15.5  BUILD_DEPENDS="eina-dev evas-dev curl-dev libidn-dev"
    15.6  
    15.7 +# What is the latest version available today?
    15.8 +current_version()
    15.9 +{
   15.10 +	wget -O - https://git.enlightenment.org/legacy/ecore.git/ 2>/dev/null | \
   15.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   15.12 +}
   15.13 +
   15.14  # Rules to configure and make the package.
   15.15  compile_rules()
   15.16  {
    16.1 --- a/edbus/receipt	Fri Mar 18 07:44:06 2022 +0100
    16.2 +++ b/edbus/receipt	Fri Mar 18 08:01:47 2022 +0000
    16.3 @@ -16,6 +16,13 @@
    16.4  DEPENDS="ecore dbus"
    16.5  BUILD_DEPENDS="ecore-dev dbus-dev"
    16.6  
    16.7 +# What is the latest version available today?
    16.8 +current_version()
    16.9 +{
   16.10 +	wget -O - https://git.enlightenment.org/legacy/e_dbus.git/ 2>/dev/null | \
   16.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   16.12 +}
   16.13 +
   16.14  # Rules to configure and make the package.
   16.15  compile_rules()
   16.16  {
    17.1 --- a/edje/receipt	Fri Mar 18 07:44:06 2022 +0100
    17.2 +++ b/edje/receipt	Fri Mar 18 08:01:47 2022 +0000
    17.3 @@ -15,6 +15,13 @@
    17.4  DEPENDS="eet evas embryo ecore lua"
    17.5  BUILD_DEPENDS="eet-dev evas-dev embryo-dev ecore-dev lua-dev"
    17.6  
    17.7 +# What is the latest version available today?
    17.8 +current_version()
    17.9 +{
   17.10 +	wget -O - https://git.enlightenment.org/legacy/edje.git/ 2>/dev/null | \
   17.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   17.12 +}
   17.13 +
   17.14  # Rules to configure and make the package.
   17.15  compile_rules()
   17.16  {
    18.1 --- a/eet/receipt	Fri Mar 18 07:44:06 2022 +0100
    18.2 +++ b/eet/receipt	Fri Mar 18 08:01:47 2022 +0000
    18.3 @@ -20,6 +20,13 @@
    18.4  	arm) LDFLAGS="$LDFLAGS -L/cross/$ARCH/sysroot/usr/lib" ;;
    18.5  esac
    18.6  
    18.7 +# What is the latest version available today?
    18.8 +current_version()
    18.9 +{
   18.10 +	wget -O - https://git.enlightenment.org/legacy/eet.git/ 2>/dev/null | \
   18.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   18.12 +}
   18.13 +
   18.14  # Rules to configure and make the package.
   18.15  compile_rules()
   18.16  {
    19.1 --- a/eeze/receipt	Fri Mar 18 07:44:06 2022 +0100
    19.2 +++ b/eeze/receipt	Fri Mar 18 08:01:47 2022 +0000
    19.3 @@ -15,6 +15,13 @@
    19.4  DEPENDS="ecore udev"
    19.5  BUILD_DEPENDS="ecore-dev udev-dev"
    19.6  
    19.7 +# What is the latest version available today?
    19.8 +current_version()
    19.9 +{
   19.10 +	wget -O - https://git.enlightenment.org/legacy/eeze.git/ 2>/dev/null | \
   19.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   19.12 +}
   19.13 +
   19.14  # Rules to configure and make the package.
   19.15  compile_rules()
   19.16  {
    20.1 --- a/efreet/receipt	Fri Mar 18 07:44:06 2022 +0100
    20.2 +++ b/efreet/receipt	Fri Mar 18 08:01:47 2022 +0000
    20.3 @@ -15,6 +15,13 @@
    20.4  DEPENDS="ecore"
    20.5  BUILD_DEPENDS="ecore-dev"
    20.6  
    20.7 +# What is the latest version available today?
    20.8 +current_version()
    20.9 +{
   20.10 +	wget -O - https://git.enlightenment.org/legacy/efreet.git/ 2>/dev/null | \
   20.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   20.12 +}
   20.13 +
   20.14  # Rules to configure and make the package.
   20.15  compile_rules()
   20.16  {
    21.1 --- a/eina/receipt	Fri Mar 18 07:44:06 2022 +0100
    21.2 +++ b/eina/receipt	Fri Mar 18 08:01:47 2022 +0000
    21.3 @@ -15,6 +15,13 @@
    21.4  DEPENDS=""
    21.5  BUILD_DEPENDS=""
    21.6  
    21.7 +# What is the latest version available today?
    21.8 +current_version()
    21.9 +{
   21.10 +	wget -O - https://git.enlightenment.org/legacy/eina.git/ 2>/dev/null | \
   21.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   21.12 +}
   21.13 +
   21.14  # Rules to configure and make the package.
   21.15  compile_rules()
   21.16  {
    22.1 --- a/eio/receipt	Fri Mar 18 07:44:06 2022 +0100
    22.2 +++ b/eio/receipt	Fri Mar 18 08:01:47 2022 +0000
    22.3 @@ -15,6 +15,13 @@
    22.4  DEPENDS="ecore"
    22.5  BUILD_DEPENDS="ecore-dev"
    22.6  
    22.7 +# What is the latest version available today?
    22.8 +current_version()
    22.9 +{
   22.10 +	wget -O - https://git.enlightenment.org/legacy/eio.git/ 2>/dev/null | \
   22.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   22.12 +}
   22.13 +
   22.14  # Rules to configure and make the package.
   22.15  compile_rules()
   22.16  {
    23.1 --- a/electricsheep/receipt	Fri Mar 18 07:44:06 2022 +0100
    23.2 +++ b/electricsheep/receipt	Fri Mar 18 08:01:47 2022 +0000
    23.3 @@ -14,6 +14,13 @@
    23.4  BUILD_DEPENDS="curl-dev expat-dev ffmpeg-dev libglade-dev gtk+-dev flam3-dev \
    23.5  libgnutls"
    23.6  
    23.7 +# What is the latest version available today?
    23.8 +current_version()
    23.9 +{
   23.10 +	wget -O - https://github.com/scottdraves/electricsheep/commits/master 2>/dev/null | \
   23.11 +	sed '/version to [0-9]/!d;s|.* to ||;s|<.*||;q'
   23.12 +}
   23.13 +
   23.14  # Rules to configure and make the package.
   23.15  compile_rules()
   23.16  {
    24.1 --- a/embryo/receipt	Fri Mar 18 07:44:06 2022 +0100
    24.2 +++ b/embryo/receipt	Fri Mar 18 08:01:47 2022 +0000
    24.3 @@ -15,6 +15,13 @@
    24.4  DEPENDS="eina"
    24.5  BUILD_DEPENDS="eina-dev"
    24.6  
    24.7 +# What is the latest version available today?
    24.8 +current_version()
    24.9 +{
   24.10 +	wget -O - https://git.enlightenment.org/legacy/embryo.git/ 2>/dev/null | \
   24.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   24.12 +}
   24.13 +
   24.14  # Rules to configure and make the package.
   24.15  compile_rules()
   24.16  {
    25.1 --- a/esterel/receipt	Fri Mar 18 07:44:06 2022 +0100
    25.2 +++ b/esterel/receipt	Fri Mar 18 08:01:47 2022 +0000
    25.3 @@ -13,6 +13,13 @@
    25.4  DEPENDS="glibc-base"
    25.5  BUILD_DEPENDS=""
    25.6  
    25.7 +# What is the latest version available today?
    25.8 +current_version()
    25.9 +{
   25.10 +	wget -O - https://www-sop.inria.fr/meije/esterel/releasenotes.html 2>/dev/null | \
   25.11 +	sed '/RELEASE NOTES/!d;s|.* V||;s| SYSTEM.*||;s|_|.|g;q'
   25.12 +}
   25.13 +
   25.14  # Rules to configure and make the package.
   25.15  compile_rules()
   25.16  {
    26.1 --- a/ethumb/receipt	Fri Mar 18 07:44:06 2022 +0100
    26.2 +++ b/ethumb/receipt	Fri Mar 18 08:01:47 2022 +0000
    26.3 @@ -16,6 +16,13 @@
    26.4  BUILD_DEPENDS="eet-dev ecore-dev eio-dev evas-dev edje-dev embryo-dev \
    26.5  eeze-dev emotion-dev edbus-dev libexif-dev lua-dev"
    26.6  
    26.7 +# What is the latest version available today?
    26.8 +current_version()
    26.9 +{
   26.10 +	wget -O - https://git.enlightenment.org/legacy/ethumb.git/ 2>/dev/null | \
   26.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   26.12 +}
   26.13 +
   26.14  # Rules to configure and make the package.
   26.15  compile_rules()
   26.16  {
    27.1 --- a/evas/receipt	Fri Mar 18 07:44:06 2022 +0100
    27.2 +++ b/evas/receipt	Fri Mar 18 08:01:47 2022 +0000
    27.3 @@ -19,6 +19,13 @@
    27.4  xorg-libXss-dev xorg-libXp-dev eina-dev"
    27.5  OPTIONAL_DEPENDS="mesa-dev libglu-mesa-dev"
    27.6  
    27.7 +# What is the latest version available today?
    27.8 +current_version()
    27.9 +{
   27.10 +	wget -O - https://git.enlightenment.org/legacy/evas.git/ 2>/dev/null | \
   27.11 +	sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
   27.12 +}
   27.13 +
   27.14  # Rules to configure and make the package.
   27.15  compile_rules()
   27.16  {
    28.1 --- a/expedite/receipt	Fri Mar 18 07:44:06 2022 +0100
    28.2 +++ b/expedite/receipt	Fri Mar 18 08:01:47 2022 +0000
    28.3 @@ -15,6 +15,13 @@
    28.4  DEPENDS="evas python"
    28.5  BUILD_DEPENDS="automake evas-dev libtool"
    28.6  
    28.7 +# What is the latest version available today?
    28.8 +current_version()
    28.9 +{
   28.10 +	wget -O - https://git.enlightenment.org/tools/expedite.git/refs/ 2>/dev/null | \
   28.11 +	sed '/expedite-/!d;/Release/!d;s| Release.*||;s|.*>||' | 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/extended-actions/receipt	Fri Mar 18 07:44:06 2022 +0100
    29.2 +++ b/extended-actions/receipt	Fri Mar 18 08:01:47 2022 +0000
    29.3 @@ -16,6 +16,13 @@
    29.4  
    29.5  TODO="Setup extended-actions specific to SliTaz"
    29.6  
    29.7 +# What is the latest version available today?
    29.8 +current_version()
    29.9 +{
   29.10 +	wget -O - https://bazaar.launchpad.net/~marlin-devs/extended-actions/trunk/files 2>/dev/null | \
   29.11 +	sed '/start_revid/!d;s|.*revid=||;s|".*||;q'
   29.12 +}
   29.13 +
   29.14  # Rules to configure and make the package.
   29.15  compile_rules()
   29.16  {
    30.1 --- a/flag-icons/receipt	Fri Mar 18 07:44:06 2022 +0100
    30.2 +++ b/flag-icons/receipt	Fri Mar 18 08:01:47 2022 +0000
    30.3 @@ -12,6 +12,13 @@
    30.4  
    30.5  BUILD_DEPENDS="wget"
    30.6  
    30.7 +# What is the latest version available today?
    30.8 +current_version()
    30.9 +{
   30.10 +	wget -O - https://github.com/gosquared/flags/commits/master 2>/dev/null | \
   30.11 +	sed '/Commits on/!d;s|.*on |"|;s|<.*|"|;q' | xargs date +%Y%m%d -d
   30.12 +}
   30.13 +
   30.14  # Rules to gen a SliTaz package suitable for Tazpkg.
   30.15  genpkg_rules()
   30.16  {
    31.1 --- a/gadmin-antivirus/receipt	Fri Mar 18 07:44:06 2022 +0100
    31.2 +++ b/gadmin-antivirus/receipt	Fri Mar 18 08:01:47 2022 +0000
    31.3 @@ -13,6 +13,12 @@
    31.4  DEPENDS="gtk+ clamav"
    31.5  BUILD_DEPENDS="gtk+-dev"
    31.6  
    31.7 +# What is the latest version available today?
    31.8 +current_version()
    31.9 +{
   31.10 +	wget -O - https://github.com/sedwards/gadmintools_src_pkgs 2>/dev/null | \
   31.11 +	sed "/$PACKAGE/!d;s|.*$PACKAGE-||;s|.t.*||;q"
   31.12 +}
   31.13  
   31.14  # Rules to configure and make the package.
   31.15  compile_rules()
    32.1 --- a/gadmin-sshd/receipt	Fri Mar 18 07:44:06 2022 +0100
    32.2 +++ b/gadmin-sshd/receipt	Fri Mar 18 08:01:47 2022 +0000
    32.3 @@ -14,6 +14,12 @@
    32.4  DEPENDS="gtk+ openssh"
    32.5  BUILD_DEPENDS="gtk+-dev"
    32.6  
    32.7 +# What is the latest version available today?
    32.8 +current_version()
    32.9 +{
   32.10 +	wget -O - https://github.com/sedwards/gadmintools_src_pkgs 2>/dev/null | \
   32.11 +	sed "/$PACKAGE/!d;s|.*$PACKAGE-||;s|.t.*||;q"
   32.12 +}
   32.13  
   32.14  # Rules to configure and make the package.
   32.15  compile_rules()
    33.1 --- a/gens-gs/receipt	Fri Mar 18 07:44:06 2022 +0100
    33.2 +++ b/gens-gs/receipt	Fri Mar 18 08:01:47 2022 +0000
    33.3 @@ -15,6 +15,13 @@
    33.4  DEPENDS="gtk+ libsdl libglu-mesa"
    33.5  BUILD_DEPENDS="gtk+-dev libsdl libsdl-dev nasm autoconf automake"
    33.6  
    33.7 +# What is the latest version available today?
    33.8 +current_version()
    33.9 +{
   33.10 +	wget -O - https://raw.githubusercontent.com/lutris/gens/master/ChangeLog.txt 2>/dev/null | \
   33.11 +	sed '/new in Gens/!d;s|.*v||;s|/.*|_gs_r7|;q'
   33.12 +}
   33.13 +
   33.14  # Rules to configure and make the package.
   33.15  compile_rules()
   33.16  {
    34.1 --- a/pkg-config/receipt	Fri Mar 18 07:44:06 2022 +0100
    34.2 +++ b/pkg-config/receipt	Fri Mar 18 08:01:47 2022 +0000
    34.3 @@ -29,7 +29,7 @@
    34.4  # Rules to configure and make the package.
    34.5  compile_rules()
    34.6  {
    34.7 -	ln -s /usr/bin/automake	/usr/bin/automake-1.15
    34.8 +	autoconf
    34.9  	sed -i 's/\$(LN).*pkg-config\$(EXEEXT) \$(host_tool)/echo \1/' Makefile*
   34.10  	case "$ARCH" in
   34.11  		arm)