sccache: 0.5.1 -> 0.5.2

This commit is contained in:
Tim Biermann 2023-06-03 21:53:43 +02:00
parent f20b0567a0
commit 1f5e5f51f2
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 11 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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
}