wok rev 24449

updated curl, curl-dev and libcurl (7.72.0 -> 7.81.0)
author Hans-G?nter Theisgen
date Tue Feb 15 11:04:54 2022 +0100 (2022-02-15)
parents 5b79596c5d14
children 303da0a92933
files curl-dev/receipt curl/description.txt curl/receipt libcurl/receipt
line diff
     1.1 --- a/curl-dev/receipt	Tue Feb 15 10:43:08 2022 +0100
     1.2 +++ b/curl-dev/receipt	Tue Feb 15 11:04:54 2022 +0100
     1.3 @@ -1,14 +1,14 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="curl-dev"
     1.7 -VERSION="7.72.0"
     1.8 +VERSION="7.81.0"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Tool and librariess for transferring files with URL syntax - development files."
    1.11 +SHORT_DESC="Tool and libraries for transfering files with URL syntax - development files."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="MIT"
    1.14  WEB_SITE="https://curl.haxx.se/"
    1.15  
    1.16 -DEPENDS="curl libidn-dev openssl-dev pkg-config"
    1.17 +DEPENDS="curl gnutls-dev libidn-dev openssl-dev pkg-config"
    1.18  WANTED="curl"
    1.19  
    1.20  HOST_ARCH="i486 arm"
     2.1 --- a/curl/description.txt	Tue Feb 15 10:43:08 2022 +0100
     2.2 +++ b/curl/description.txt	Tue Feb 15 11:04:54 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4 -curl is a command line tool for transferring data with URL syntax, supporting 
     2.5 +Curl is a command line tool for transfering data with URL syntax, supporting 
     2.6  DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, 
     2.7 -POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. curl supports SSL 
     2.8 -certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, 
     2.9 -proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, 
    2.10 -kerberos...), file transfer resume, proxy tunneling and a busload of other 
    2.11 -useful tricks.
    2.12 +POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP.
    2.13 +Curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading,
    2.14 +HTTP form based upload, proxies, cookies, user+password authentication
    2.15 +(Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume,
    2.16 +proxy tunneling and a busload of other useful tricks.
     3.1 --- a/curl/receipt	Tue Feb 15 10:43:08 2022 +0100
     3.2 +++ b/curl/receipt	Tue Feb 15 11:04:54 2022 +0100
     3.3 @@ -1,9 +1,9 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="curl"
     3.7 -VERSION="7.72.0"
     3.8 +VERSION="7.81.0"
     3.9  CATEGORY="network"
    3.10 -SHORT_DESC="Tool and librariess for transferring files with URL syntax."
    3.11 +SHORT_DESC="Tool and libraries for transfering files with URL syntax."
    3.12  MAINTAINER="pankso@slitaz.org"
    3.13  LICENSE="MIT"
    3.14  WEB_SITE="https://curl.haxx.se/"
    3.15 @@ -11,11 +11,13 @@
    3.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.17  WGET_URL="https://curl.haxx.se/download/$TARBALL"
    3.18  
    3.19 -DEPENDS="libcurl libidn libssl zlib"
    3.20 -BUILD_DEPENDS="libidn-dev openssl-dev"
    3.21 +DEPENDS="libcurl libgnutls libidn libssl zlib"
    3.22 +BUILD_DEPENDS="gnutls-dev libidn-dev openssl-dev"
    3.23  
    3.24  HOST_ARCH="i486 arm"
    3.25  
    3.26 +# @maintainer:	Please update also libcurl
    3.27 +
    3.28  current_version()
    3.29  {
    3.30  	wget -O - $WEB_SITE 2>/dev/null | \
    3.31 @@ -27,6 +29,7 @@
    3.32  {
    3.33  	./configure		\
    3.34  		--disable-ldap	\
    3.35 +		--with-gnutls	\
    3.36  		$CONFIGURE_ARGS &&
    3.37  	make &&
    3.38  	make install
     4.1 --- a/libcurl/receipt	Tue Feb 15 10:43:08 2022 +0100
     4.2 +++ b/libcurl/receipt	Tue Feb 15 11:04:54 2022 +0100
     4.3 @@ -1,20 +1,20 @@
     4.4  # SliTaz package receipt.
     4.5  
     4.6  PACKAGE="libcurl"
     4.7 -VERSION="7.72.0"
     4.8 +VERSION="7.81.0"
     4.9  CATEGORY="network"
    4.10  SHORT_DESC="Curl library files."
    4.11  MAINTAINER="pankso@slitaz.org"
    4.12  LICENSE="MIT"
    4.13 +WEB_SITE="https://curl.haxx.se/"
    4.14 +
    4.15 +DEPENDS="libcrypto libidn libssl zlib"
    4.16  WANTED="curl"
    4.17 -WEB_SITE="https://curl.haxx.se/"
    4.18 +
    4.19  HOST_ARCH="i486 arm"
    4.20  
    4.21 -DEPENDS="libidn libssl zlib libcrypto"
    4.22 -
    4.23  # Rules to gen a SliTaz package suitable for Tazpkg.
    4.24  genpkg_rules()
    4.25  {
    4.26 -	mkdir -p $fs/usr/lib
    4.27 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    4.28 +	cook_copy_files	*.so*
    4.29  }