commit 1f5e5f51f25461fb6b8a4026c64ff9ebab67a4d4 Author: Tim Biermann <tbier@posteo.de> Date: Sat Jun 3 21:53:43 2023 +0200 sccache: 0.5.1 -> 0.5.2 diff --git a/sccache/.footprint b/sccache/.footprint index 33a79ba1c..da10b6ab1 100644 --- a/sccache/.footprint +++ b/sccache/.footprint @@ -1,3 +1,4 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/sccache +-rwxr-xr-x root/root usr/bin/sccache-dist diff --git a/sccache/.signature b/sccache/.signature index c3cedd96f..4dcbeb78c 100644 --- a/sccache/.signature +++ b/sccache/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF37phJZJQb1ANOPX6kSoHY1ol/GDORwNzP5JlpXovaEXwUr0GL1cBKdTjSL1WpH4TkUeilrDai1npB4icqCgDqgk= -SHA256 (Pkgfile) = afdf455c2bbf6af03554b3d3eba41553e92ff382925accf5a2bfca53b983ee9d -SHA256 (.footprint) = faf777b374273121eaa06a3f627d66169ce6db1948d7cd60994b641e88e88f09 -SHA256 (sccache-v0.5.1.tar.gz) = cde142fb22575726de6d8348b609c1863e7c7afac1b7f09c186ee82cacc15191 +RWSagIOpLGJF35+KWWFzQYWsDEcxCaCtLh7jId+ekZv6Uk9z4Ga3BnLrtakc4YRaxTpvjR9Z+k0I1nkjml+fGJo5YazwlrpeKQo= +SHA256 (Pkgfile) = fc1a956d340fa259278cfdfd9e2853deaa326ffbf86f4194e2168d77338b8001 +SHA256 (.footprint) = 075cd929ecb85ad14a889ceb6a2ed24451c1c27cbe759868505d0b691d93b7cb +SHA256 (sccache-v0.5.2.tar.gz) = d70e17f7405c2c427ed2df7978797ca337668070d051087b466b460fa676c61e diff --git a/sccache/Pkgfile b/sccache/Pkgfile index aba7e79ad..f44d2b6b4 100644 --- a/sccache/Pkgfile +++ b/sccache/Pkgfile @@ -4,7 +4,7 @@ # Depends on: rust name=sccache -version=0.5.1 +version=0.5.2 release=1 source=(https://github.com/mozilla/sccache/archive/v$version/$name-v$version.tar.gz) @@ -13,8 +13,11 @@ build() { mkdir "$PKGMK_SOURCE_DIR/rust" || true export CARGO_HOME="$PKGMK_SOURCE_DIR/rust" + export CFLAGS+=' -ffat-lto-objects' + export LDFLAGS+=' -lzstd' + cargo build --manifest-path $name-$version/Cargo.toml --release \ - --features all --features native-zlib + --features all --features native-zlib,dist-server,all cargo install --path $name-$version --root $PKG/usr --no-track \ - --features all --features native-zlib + --frozen --offline --features native-zlib,dist-server,all }