From 33343998f4247fa2835deddac0cb8a5d8735219d Mon Sep 17 00:00:00 2001 From: EWouters <6179932+EWouters@users.noreply.github.com> Date: Fri, 1 Apr 2022 02:01:15 +0200 Subject: [PATCH] Ports/ccache: Update ccache to version 4.6 --- Ports/AvailablePorts.md | 2 +- Ports/ccache/package.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 19cddebf7e..cf324de2f3 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -19,7 +19,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`bzip2`](bzip2/) | bzip2 | 1.0.8 | https://sourceware.org/bzip2/ | | [`ca-certificates`](ca-certificates/) | Mozilla CA certificate store | 2022-03-29 | https://curl.se/docs/caextract.html | | [`carl`](carl/) | Crypto Ancienne Resource Loader | 1.5 | https://github.com/classilla/cryanc | -| [`ccache`](ccache/) | ccache | 4.5.1 | https://ccache.dev/ | +| [`ccache`](ccache/) | ccache | 4.6 | https://ccache.dev/ | | [`c-ray`](c-ray/) | C-Ray | 8f30eb9 | https://github.com/vkoskiv/c-ray | | [`chester`](chester/) | Chester Gameboy Emulator | | https://github.com/veikkos/chester | | [`citron`](citron/) | Citron Programming Language | 0.0.9.3 | https://github.com/alimpfard/citron | diff --git a/Ports/ccache/package.sh b/Ports/ccache/package.sh index 2e8fb623e9..d033947dc3 100755 --- a/Ports/ccache/package.sh +++ b/Ports/ccache/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh port=ccache -version=4.5.1 +version=4.6 useconfigure=true -files="https://github.com/ccache/ccache/releases/download/v${version}/ccache-${version}.tar.gz ccache-$version.tar.gz f0d3cff5d555d6868f14a7d05696f0370074e475304fd5aa152b98f892364981" +files="https://github.com/ccache/ccache/releases/download/v${version}/ccache-${version}.tar.gz ccache-$version.tar.gz 73a1767ac6b7c0404a1a55f761a746d338e702883c7137fbf587023062258625" auth_type=sha256 depends=("zstd") configopts=("-DCMAKE_TOOLCHAIN_FILE=${SERENITY_BUILD_DIR}/CMakeToolchain.txt" "-DCMAKE_BUILD_TYPE=Release" "-DREDIS_STORAGE_BACKEND=OFF" "-GNinja")