Skip to content
Snippets Groups Projects
Verified Commit add1b7c5 authored by alice's avatar alice
Browse files

main/ccache: upgrade to 4.6.3

parent 6086a5f9
No related branches found
No related tags found
2 merge requests!39304[3.16] main/expat: security upgrade to 2.4.9,!38352main/ccache: upgrade to 4.6.3
Pipeline #134301 passed
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> # Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org> # Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ccache pkgname=ccache
pkgver=4.6.2 pkgver=4.6.3
pkgrel=0 pkgrel=0
pkgdesc="fast C/C++ compiler cache" pkgdesc="fast C/C++ compiler cache"
url="https://ccache.dev/" url="https://ccache.dev/"
...@@ -20,7 +20,6 @@ checkdepends="bash util-linux-misc python3 redis" ...@@ -20,7 +20,6 @@ checkdepends="bash util-linux-misc python3 redis"
subpackages="$pkgname-doc" subpackages="$pkgname-doc"
source="https://github.com/ccache/ccache/releases/download/v$pkgver/ccache-$pkgver.tar.xz source="https://github.com/ccache/ccache/releases/download/v$pkgver/ccache-$pkgver.tar.xz
ioctl.patch ioctl.patch
gcc12.patch
" "
# XXX: https://github.com/ccache/ccache/issues/1014 # XXX: https://github.com/ccache/ccache/issues/1014
...@@ -38,8 +37,12 @@ build() { ...@@ -38,8 +37,12 @@ build() {
check() { check() {
case $CARCH in case $CARCH in
armhf) echo "SKIP make -C build test on $CARCH" ;; armhf)
*) ninja -C build test ;; echo "SKIP make -C build test on $CARCH"
;;
*)
ctest -j4 --output-on-failure --test-dir build
;;
esac esac
} }
...@@ -57,7 +60,6 @@ package() { ...@@ -57,7 +60,6 @@ package() {
} }
sha512sums=" sha512sums="
324c09c7cc76425552fd88e7483527c20ae977c817de1f0dff8a0102ae98f1c35d5e08c8a49c83ad76f6564ea912d9a500948051baa028139074913a6e07e452 ccache-4.6.2.tar.xz b8cee0a466e76d5551c9785836c66ac5a98b51624e9f919adf820265ec19c3429c99ed332aecdafcd03cf32c71074121c63ec56762259921c3762a011be24966 ccache-4.6.3.tar.xz
785ce34305a3bb6c24117341157356c2bd2272eca9d58fa20acd14a023abe6f784c88d9c55656d2f37320392bb73a61c52cd8b6bd9ac7c5316c8ed187dd6f5fb ioctl.patch 785ce34305a3bb6c24117341157356c2bd2272eca9d58fa20acd14a023abe6f784c88d9c55656d2f37320392bb73a61c52cd8b6bd9ac7c5316c8ed187dd6f5fb ioctl.patch
9e0a52224a2f23e711c39c825c2f10e834a7a3421734f7fef34a85f18714e58801e96110f42a6cebe60e0320f23422ee171ebf442a01186694f6c8f92082acdd gcc12.patch
" "
diff -upr ccache-4.6.2.orig/src/core/Statistics.hpp ccache-4.6.2/src/core/Statistics.hpp
--- ccache-4.6.2.orig/src/core/Statistics.hpp 2022-08-23 18:30:41.817756468 +0200
+++ ccache-4.6.2/src/core/Statistics.hpp 2022-08-23 18:31:06.924480717 +0200
@@ -20,6 +20,7 @@
#include <core/StatisticsCounters.hpp>
+#include <ctime>
#include <cstdint>
#include <string>
#include <unordered_map>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment