wok-current rev 25063
nfs-utils: update web_site
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 07 20:10:22 2022 +0000 (2022-06-07) |
parents | 196372051572 |
children | 33ed869afff2 |
files | giblib/receipt libgtkimageview/receipt nfs-utils/receipt |
line diff
1.1 --- a/giblib/receipt Tue Jun 07 10:29:31 2022 +0000 1.2 +++ b/giblib/receipt Tue Jun 07 20:10:22 2022 +0000 1.3 @@ -16,6 +16,13 @@ 1.4 1.5 HOST_ARCH="i486 arm" 1.6 1.7 +# What is the latest version available today? 1.8 +current_version() 1.9 +{ 1.10 + wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ 1.11 + sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q' 1.12 +} 1.13 + 1.14 # Handle cross compilation 1.15 case "$ARCH" in 1.16 arm*) export CFLAGS="$CFLAGS -L/cross/$ARCH/sysroot/usr/lib" ;;
2.1 --- a/libgtkimageview/receipt Tue Jun 07 10:29:31 2022 +0000 2.2 +++ b/libgtkimageview/receipt Tue Jun 07 20:10:22 2022 +0000 2.3 @@ -14,6 +14,13 @@ 2.4 DEPENDS="gtk+" 2.5 BUILD_DEPENDS="gtk+-dev expat-dev" 2.6 2.7 +# What is the latest version available today? 2.8 +current_version() 2.9 +{ 2.10 + wget -O - ${WGET_URL%/*} 2>/dev/null | \ 2.11 + sed '/gtkimageview/!d;/tar/!d;s|.*gtkimageview-||;s|.t.*||' | sort -Vr | sed q 2.12 +} 2.13 + 2.14 # Rules to configure and make the package. 2.15 compile_rules() 2.16 {
3.1 --- a/nfs-utils/receipt Tue Jun 07 10:29:31 2022 +0000 3.2 +++ b/nfs-utils/receipt Tue Jun 07 20:10:22 2022 +0000 3.3 @@ -7,7 +7,8 @@ 3.4 SHORT_DESC="Network FileSystem tools." 3.5 MAINTAINER="pascal.bellard@slitaz.org" 3.6 LICENSE="GPL2" 3.7 -WEB_SITE="https://sourceforge.net/projects/nfs/" 3.8 +#WEB_SITE="https://sourceforge.net/projects/nfs/" 3.9 +WEB_SITE="http://linux-nfs.org/wiki/index.php/Main_Page" 3.10 3.11 TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.12 WGET_URL="$SF_MIRROR/nfs/$PACKAGE/$VERSION/$TARBALL"