mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
Add http3 support to curl. — curl → 8.17.0-1 (#13464)
* Add http3 support to curl. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * curl_http3: Package File Update Run on linux/386 container. * curl_http3: Package File Update Run on linux/amd64 container. * curl_http3: Package File Update Run on linux/arm/v7 container. * Add new curl deps to install.sh BOOTSTRAP_PACKAGES. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
234499c953
commit
d294614c4b
@@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
CREW_INSTALLER_VERSION=2025111101
|
||||
CREW_INSTALLER_VERSION=2025111401
|
||||
# Exit on fail.
|
||||
set -eE
|
||||
|
||||
@@ -303,7 +303,7 @@ BOOTSTRAP_PACKAGES+=' pcre2 expat git'
|
||||
|
||||
# Add curl dependencies to BOOTSTRAP_PACKAGES since curl is a git
|
||||
# dependency, installing curl last so we don't break the system curl.
|
||||
BOOTSTRAP_PACKAGES+=' brotli c_ares libcyrussasl libidn2 libnghttp2 libpsl libssh libunistring openldap curl zstd ruby'
|
||||
BOOTSTRAP_PACKAGES+=' brotli c_ares libcyrussasl libidn2 libnghttp2 libnghttp3 libngtcp2 libpsl libssh libunistring openldap curl zstd ruby'
|
||||
|
||||
if [[ -n "${CHROMEOS_RELEASE_CHROME_MILESTONE}" ]] && [[ -n "${CREW_PRE_GLIBC_STANDALONE}" ]]; then
|
||||
# shellcheck disable=SC2231
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Total size: 10879248
|
||||
# Total size: 11260901
|
||||
/usr/local/bin/curl
|
||||
/usr/local/bin/curl-config
|
||||
/usr/local/bin/wcurl
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Total size: 11338070
|
||||
# Total size: 11743005
|
||||
/usr/local/bin/curl
|
||||
/usr/local/bin/curl-config
|
||||
/usr/local/bin/wcurl
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Total size: 11636184
|
||||
# Total size: 12040053
|
||||
/usr/local/bin/curl
|
||||
/usr/local/bin/curl-config
|
||||
/usr/local/bin/wcurl
|
||||
|
||||
@@ -3,7 +3,7 @@ require 'buildsystems/autotools'
|
||||
class Curl < Autotools
|
||||
description 'Command line tool and library for transferring data with URLs.'
|
||||
homepage 'https://curl.se/'
|
||||
version '8.17.0'
|
||||
version '8.17.0-1'
|
||||
license 'curl'
|
||||
compatibility 'all'
|
||||
source_url "https://curl.se/download/curl-#{version.split('-').first}.tar.xz"
|
||||
@@ -11,10 +11,10 @@ class Curl < Autotools
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: '59ca4a5f0a55d4b0854b94a9221b781c68bd39e762a6193459ddb392e37cfca7',
|
||||
armv7l: '59ca4a5f0a55d4b0854b94a9221b781c68bd39e762a6193459ddb392e37cfca7',
|
||||
i686: '48bcb46c76c33a7eec4b046e242ea4c0eda448ef8af2c94e3e3966cdc6fd3660',
|
||||
x86_64: 'e90d023bf210a57f7e7df6d4a2f6e1e7d7e8e9f12121426ea7f39c28b60caf53'
|
||||
aarch64: '287d58b7cf6e2554b95fe905364dcb787fd78bf233ec205c97dc8c3ed533dca0',
|
||||
armv7l: '287d58b7cf6e2554b95fe905364dcb787fd78bf233ec205c97dc8c3ed533dca0',
|
||||
i686: 'bb4a7e8d515a8da6c3ce13d970fbddc5eb565376c5e22e34302dc1b2b88a02a7',
|
||||
x86_64: '499d5af908ade27a2305632d09e4b91dc6ded47a6673784571afd5a3a8fc2484'
|
||||
})
|
||||
|
||||
depends_on 'brotli' # R
|
||||
@@ -23,6 +23,8 @@ class Curl < Autotools
|
||||
depends_on 'glibc' # R
|
||||
depends_on 'libidn2' # R
|
||||
depends_on 'libnghttp2' # R
|
||||
depends_on 'libnghttp3' # R
|
||||
depends_on 'libngtcp2' # R
|
||||
depends_on 'libpsl' # R
|
||||
depends_on 'libssh' # R
|
||||
depends_on 'openldap' # R
|
||||
@@ -41,6 +43,7 @@ class Curl < Autotools
|
||||
--with-ca-fallback \
|
||||
--with-ca-path=#{CREW_PREFIX}/etc/ssl/certs \
|
||||
--with-libssh \
|
||||
--with-ngtcp2 \
|
||||
--with-openssl \
|
||||
--without-gnutls \
|
||||
--without-librtmp"
|
||||
|
||||
Reference in New Issue
Block a user