[notify] curl: update to 7.76.0

includes security fixes, see
- https://curl.se/changes.html
- https://curl.se/docs/CVE-2021-22876.html
- https://curl.se/docs/CVE-2021-22890.html
This commit is contained in:
Juergen Daubert 2021-03-31 11:23:32 +02:00
parent 6440e78463
commit 8eed77c4b4
3 changed files with 23 additions and 18 deletions

View File

@ -72,6 +72,7 @@ drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REDIRECT_TIME.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REDIRECT_TIME_T.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REDIRECT_URL.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REFERER.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_REQUEST_SIZE.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_RESPONSE_CODE.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLINFO_RETRY_AFTER.3.gz
@ -159,6 +160,9 @@ drwxr-xr-x root/root usr/share/man/man3/
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DNS_SERVERS.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DNS_SHUFFLE_ADDRESSES.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DNS_USE_GLOBAL_CACHE.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DOH_SSL_VERIFYHOST.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DOH_SSL_VERIFYPEER.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DOH_SSL_VERIFYSTATUS.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_DOH_URL.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_EGDSOCKET.3.gz
-rw-r--r-- root/root usr/share/man/man3/CURLOPT_ERRORBUFFER.3.gz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqhOSC5p5sXgnUYzLqccW5yPlhL73LahxS1r4+4ojxS1H5l14wURU/ruH7E3vRG9iDGv0i4cVnz5UTGw9xxi9GA0=
SHA256 (Pkgfile) = 860f234a116becddcd89df164f3ef26fd27a510551456373230a53e184dff15f
SHA256 (.footprint) = 0d9873ac35ffce9400f1508db8df8f9545c61dadb20e98c483c729a2a233e69d
SHA256 (curl-7.75.0.tar.xz) = fe0c49d8468249000bda75bcfdf9e30ff7e9a86d35f1a21f428d79c389d55675
RWRJc1FUaeVeqnJXCzv1ywphFTEczig5+6Bdq85BWWklXp11WouQFJMIeGn9SAWy+3A0tpbZ0NcBa7rmZLFN3lzljg8W8iwjMwc=
SHA256 (Pkgfile) = cd7c47dab36e64b2e77f66ded191cb2127e1f04dbe2f8d0d5c851b406f3d54f2
SHA256 (.footprint) = 20fc31a0adf91c3c740d1b795cf2bd6de001ea99213a94a1019ceca010df0561
SHA256 (curl-7.76.0.tar.xz) = 6302e2d75c59cdc6b35ce3fbe716481dd4301841bbb5fd71854653652a014fc8

View File

@ -1,22 +1,23 @@
# Description: A tool for transfering files with URL syntax
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://curl.haxx.se
# Depends on: openssl zlib zstd
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://curl.haxx.se
# Depends on: openssl zlib zstd
name=curl
version=7.75.0
version=7.76.0
release=1
source=(https://curl.haxx.se/download/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-ipv6 \
--without-libidn2 \
--without-cyassl \
--enable-threaded-resolver \
--with-ca-bundle=/etc/ssl/cert.pem
make
make DESTDIR=$PKG install
make -C docs/libcurl DESTDIR=$PKG install
cd $name-$version
./configure \
--prefix=/usr \
--enable-ipv6 \
--without-libidn2 \
--without-cyassl \
--enable-threaded-resolver \
--with-ca-bundle=/etc/ssl/cert.pem
make
make DESTDIR=$PKG install
make -C docs/libcurl DESTDIR=$PKG install
}