# HG changeset patch # User Hans-G?nter Theisgen # Date 1659545323 -3600 # Node ID 1ab5edec3cba1b0d84f321414405007d22b93ad7 # Parent f15be612c035109f331da95ed523d6ec5e718253 updated wget (1.20.3 -> 1.21.3) diff -r f15be612c035 -r 1ab5edec3cba wget-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wget-lang/receipt Wed Aug 03 17:48:43 2022 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="wget-lang" +VERSION="1.21.3" +CATEGORY="localization" +SHORT_DESC="An utility for retrieving files using HTTP, HTTPS or FTP - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL3" +WEB_SITE="https://www.gnu.org/software/wget/" + +WANTED="wget" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r f15be612c035 -r 1ab5edec3cba wget/description.txt --- a/wget/description.txt Wed Aug 03 16:34:53 2022 +0100 +++ b/wget/description.txt Wed Aug 03 17:48:43 2022 +0100 @@ -1,16 +1,18 @@ -Wget is a network utility to retrieve files from the web using HTTP(S) and FTP, -the two most widely used internet protocols. It works non-interactively, so it -will work in the background, after having logged off. The program supports -recursive retrieval of web-authoring pages as well as FTP sites -- you can use -Wget to make mirrors of archives and home pages or to travel the web like a WWW -robot. +Wget is a network utility to retrieve files from the web using HTTP(S) +and FTP, the two most widely used internet protocols. +It works non-interactively, so it will work in the background, after +having logged off. +The program supports recursive retrieval of web-authoring pages as well +as FTP sites -- you can use wget to make mirrors of archives and home +pages or to travel the web like a WWW robot. -Wget works particularly well with slow or unstable connections by continuing to -retrieve a document until the document is fully downloaded. Re-getting files -from where it left off works on servers (both HTTP and FTP) that support it. -Both HTTP and FTP retrievals can be time stamped, so Wget can see if the remote -file has changed since the last retrieval and automatically retrieve the new -version if it has. +Wget works particularly well with slow or unstable connections by +continuing to retrieve a document until the document is fully downloaded. +Re-getting files from where it left off works on servers (both HTTP and +FTP) that support it. +Both HTTP and FTP retrievals can be time stamped, so wget can see if the +remote file has changed since the last retrieval and automatically +retrieve the new version if it has. Wget supports proxy servers; this can lighten the network load, speed up retrieval, and provide access behind firewalls. diff -r f15be612c035 -r 1ab5edec3cba wget/receipt --- a/wget/receipt Wed Aug 03 16:34:53 2022 +0100 +++ b/wget/receipt Wed Aug 03 17:48:43 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="wget" -VERSION="1.20.3" +VERSION="1.21.3" CATEGORY="network" SHORT_DESC="An utility for retrieving files using HTTP, HTTPS or FTP." MAINTAINER="sygne@ombres.eu" @@ -11,6 +11,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" +SUGGESTED="wget-lang" DEPENDS="libidn libssl pcre util-linux-uuid zlib" BUILD_DEPENDS="flex libidn-dev openssl-dev util-linux-uuid-dev" @@ -39,7 +40,7 @@ --sysconfdir=/etc \ $CONFIGURE_ARGS \ $ARCH_ARGS && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR gzip -9 $install/usr/share/man/man1/wget.1 } @@ -47,13 +48,11 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs - - rm -r $fs/usr/share/info - rm -r $fs/usr/share/locale + cook_copy_folders etc + cook_copy_folders bin } post_remove() { - ln -s /bin/busybox "$1/usr/bin/wget" + ln -s /bin/busybox "$1/usr/bin/wget" }