From ed94f5eef720beb812f06dea57eeeaf18db544cf Mon Sep 17 00:00:00 2001 From: Danny Rawlins Date: Sat, 14 Mar 2020 19:30:13 +1100 Subject: [PATCH] sccache: 0.2.12 -> 0.2.13 --- sccache/.signature | 6 +++--- sccache/Pkgfile | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sccache/.signature b/sccache/.signature index b19016593..2ec92fbb2 100644 --- a/sccache/.signature +++ b/sccache/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF3wkGNhRUVQTRjXRZ4m5xxvsU/Md0ooQ/DYfw4bGPDgbJmQWFD9s+5Eq1tecPySy48QghadhaZjLLPp/32yCgIwE= -SHA256 (Pkgfile) = 20d42fce1a31e68538c41312f89f77b630f8fb324b04f18cf811f1f0a6d72810 +RWSagIOpLGJF3xv7ez8aB/Tub5GqB2qzZGGNGtPnuN5PbbSZ/v58w1v9rtqq8MuSiL3AINlvSLuC4AoZKxvrXks/uqdRSVdrggo= +SHA256 (Pkgfile) = beb05abc1ffcb438263dfba5ff1ddc2b36e20233d60345507cd6f01cd7d195eb SHA256 (.footprint) = faf777b374273121eaa06a3f627d66169ce6db1948d7cd60994b641e88e88f09 -SHA256 (sccache-0.2.12.tar.gz) = 591a82ddbc2e970630a9426c78c25cbc52c3261b06d57cb4e1f11ab8008629fa +SHA256 (sccache-0.2.13.tar.gz) = 81c973cf9a89e77f02a6b5710298531ba2e50d2555e8a931e505fbf570522e2a diff --git a/sccache/Pkgfile b/sccache/Pkgfile index 077f1adc0..fa26e087b 100644 --- a/sccache/Pkgfile +++ b/sccache/Pkgfile @@ -4,19 +4,19 @@ # Depends on: rust name=sccache -version=0.2.12 +version=0.2.13 release=1 source=(https://github.com/mozilla/sccache/archive/$version/$name-$version.tar.gz) build() { cd $name-$version - prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache + prt-get isinst sccache && export RUSTC_WRAPPER='/usr/bin/sccache' mkdir "$PKGMK_SOURCE_DIR/rust" || true export CARGO_HOME="$PKGMK_SOURCE_DIR/rust" cargo fetch cargo build --release cargo install --path . --root $PKG/usr - rm $PKG/usr/.crates.toml + rm $PKG/usr/{.crates.toml,.crates2.json} }