# HG changeset patch # User Hans-G?nter Theisgen # Date 1644919494 -3600 # Node ID c31dd9c348cb975479dd9d19e3768173cf2be833 # Parent 5b79596c5d14603902f536708b3f3cbbc4cf3090 updated curl, curl-dev and libcurl (7.72.0 -> 7.81.0) diff -r 5b79596c5d14 -r c31dd9c348cb curl-dev/receipt --- a/curl-dev/receipt Tue Feb 15 10:43:08 2022 +0100 +++ b/curl-dev/receipt Tue Feb 15 11:04:54 2022 +0100 @@ -1,14 +1,14 @@ # SliTaz package receipt. PACKAGE="curl-dev" -VERSION="7.72.0" +VERSION="7.81.0" CATEGORY="development" -SHORT_DESC="Tool and librariess for transferring files with URL syntax - development files." +SHORT_DESC="Tool and libraries for transfering files with URL syntax - development files." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" WEB_SITE="https://curl.haxx.se/" -DEPENDS="curl libidn-dev openssl-dev pkg-config" +DEPENDS="curl gnutls-dev libidn-dev openssl-dev pkg-config" WANTED="curl" HOST_ARCH="i486 arm" diff -r 5b79596c5d14 -r c31dd9c348cb curl/description.txt --- a/curl/description.txt Tue Feb 15 10:43:08 2022 +0100 +++ b/curl/description.txt Tue Feb 15 11:04:54 2022 +0100 @@ -1,7 +1,7 @@ -curl is a command line tool for transferring data with URL syntax, supporting +Curl is a command line tool for transfering data with URL syntax, supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, -POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. curl supports SSL -certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, -proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, -kerberos...), file transfer resume, proxy tunneling and a busload of other -useful tricks. +POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. +Curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, +HTTP form based upload, proxies, cookies, user+password authentication +(Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, +proxy tunneling and a busload of other useful tricks. diff -r 5b79596c5d14 -r c31dd9c348cb curl/receipt --- a/curl/receipt Tue Feb 15 10:43:08 2022 +0100 +++ b/curl/receipt Tue Feb 15 11:04:54 2022 +0100 @@ -1,9 +1,9 @@ # SliTaz package receipt. PACKAGE="curl" -VERSION="7.72.0" +VERSION="7.81.0" CATEGORY="network" -SHORT_DESC="Tool and librariess for transferring files with URL syntax." +SHORT_DESC="Tool and libraries for transfering files with URL syntax." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" WEB_SITE="https://curl.haxx.se/" @@ -11,11 +11,13 @@ TARBALL="$PACKAGE-$VERSION.tar.bz2" WGET_URL="https://curl.haxx.se/download/$TARBALL" -DEPENDS="libcurl libidn libssl zlib" -BUILD_DEPENDS="libidn-dev openssl-dev" +DEPENDS="libcurl libgnutls libidn libssl zlib" +BUILD_DEPENDS="gnutls-dev libidn-dev openssl-dev" HOST_ARCH="i486 arm" +# @maintainer: Please update also libcurl + current_version() { wget -O - $WEB_SITE 2>/dev/null | \ @@ -27,6 +29,7 @@ { ./configure \ --disable-ldap \ + --with-gnutls \ $CONFIGURE_ARGS && make && make install diff -r 5b79596c5d14 -r c31dd9c348cb libcurl/receipt --- a/libcurl/receipt Tue Feb 15 10:43:08 2022 +0100 +++ b/libcurl/receipt Tue Feb 15 11:04:54 2022 +0100 @@ -1,20 +1,20 @@ # SliTaz package receipt. PACKAGE="libcurl" -VERSION="7.72.0" +VERSION="7.81.0" CATEGORY="network" SHORT_DESC="Curl library files." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" +WEB_SITE="https://curl.haxx.se/" + +DEPENDS="libcrypto libidn libssl zlib" WANTED="curl" -WEB_SITE="https://curl.haxx.se/" + HOST_ARCH="i486 arm" -DEPENDS="libidn libssl zlib libcrypto" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }