diff options
author | Luke Wilde <lukew@serenityos.org> | 2022-06-27 22:05:39 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-27 22:51:52 +0100 |
commit | 2916b3bebfb377cb285178705175b5b5c5b0b57f (patch) | |
tree | 7cff68e471b42f3a7fca59ae99abe43c06e3c4de | |
parent | f97e664d8ff064cd5258297305aff3b60943a2c4 (diff) | |
download | serenity-2916b3bebfb377cb285178705175b5b5c5b0b57f.zip |
Ports: Update curl to 7.84.0
-rw-r--r-- | Ports/AvailablePorts.md | 2 | ||||
-rwxr-xr-x | Ports/curl/package.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 84761ed49d..d5737820e3 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -32,7 +32,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n | [`composer`](composer/) | Composer | 2.3.5 | https://getcomposer.org/ | | [`coreutils`](coreutils/) | GNU core utilities | 9.1 | https://www.gnu.org/software/coreutils/ | | [`cpio`](cpio/) | GNU cpio archive utility | 2.13 | https://www.gnu.org/software/cpio/ | -| [`curl`](curl/) | curl | 7.83.1 | https://curl.se/ | +| [`curl`](curl/) | curl | 7.84.0 | https://curl.se/ | | [`dash`](dash/) | DASH | 0.5.10.2 | http://gondor.apana.org.au/~herbert/dash | | [`dialog`](dialog/) | Dialog | 1.3-20220526 | https://invisible-island.net/dialog/ | | [`diffutils`](diffutils/) | GNU Diffutils | 3.8 | https://www.gnu.org/software/diffutils/ | diff --git a/Ports/curl/package.sh b/Ports/curl/package.sh index 9d95187486..5f18349533 100755 --- a/Ports/curl/package.sh +++ b/Ports/curl/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh port=curl -version=7.83.1 +version=7.84.0 useconfigure=true -files="https://curl.se/download/curl-${version}.tar.bz2 curl-${version}.tar.bz2 f539a36fb44a8260ec5d977e4e0dbdd2eee29ed90fcedaa9bc3c9f78a113bff0" +files="https://curl.se/download/curl-${version}.tar.bz2 curl-${version}.tar.bz2 702fb26e73190a3bd77071aa146f507b9817cc4dfce218d2ab87f00cd3bc059d" auth_type=sha256 depends=("ca-certificates" "openssl" "zlib" "zstd") configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt") |