shotgun: 2.2.0 -> 2.2.1

This commit is contained in:
Tim Biermann 2021-10-14 14:33:42 +02:00
parent 1dde9c8c93
commit 7efcf7982a
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 12 additions and 9 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39qqOLicFP7P2GsjMsRDRkNwUo3VJgRVNXJiD9jICVF0qjjJq4cCXSoPHuMyDoZxeE0djtnCBcet7/7iLwVkcQU=
SHA256 (Pkgfile) = 52b64c3549f9389a83327ff928760df1709e5d5c115ff73c6838c872caa98d0e
RWSagIOpLGJF3wp9p3VVsc8I7JJyebasxffeGK9iz096s89pjsvHVOOzMUfJLRHmNhN4WWhMukHVViNxZ2Qn8qHjdfz0KpO+Egg=
SHA256 (Pkgfile) = eeb8f9ac92ec9a16c08905beae66f32aab0ec81e0b6a2b4f1a6f2c8c83cfcb25
SHA256 (.footprint) = ed7571fc04ecb0f3d8c8c2c833ad729d8bf238d2a21c93fb00f901b9bbaa8d65
SHA256 (shotgun-2.2.0.tar.gz) = c02df7284c8757f4592ce7dcbbd11330ea926379c5ff313f4932a7cbae00d24b
SHA256 (shotgun-2fc0d2ea8b522e47278fe02713cc546f62895c5c.tar.gz) = b2a977c2fc4b18cc56411d30986636ced495b92a7ca8019519252d72e9c145da

View File

@ -5,17 +5,20 @@
# Optional: hacksaw
name=shotgun
version=2.2.0
version=2.2.1
_commit=2fc0d2ea8b522e47278fe02713cc546f62895c5c
release=1
source=(https://github.com/neXromancers/shotgun/archive/v$version/$name-$version.tar.gz)
#source=(https://github.com/neXromancers/shotgun/archive/v$version/$name-$version.tar.gz)
source=(https://github.com/neXromancers/shotgun/archive/$_commit/$name-$_commit.tar.gz)
build() {
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
cargo update --manifest-path $name-$version/Cargo.toml
cargo fetch --manifest-path $name-$version/Cargo.toml
cargo build --release --locked --manifest-path $name-$version/Cargo.toml
install -Dt $PKG/usr/bin $name-$version/target/release/shotgun
#cargo update --manifest-path $name-$version/Cargo.toml
#cargo build --release --locked --manifest-path $name-$version/Cargo.toml
cargo update --manifest-path $name-$_commit/Cargo.toml
cargo build --release --locked --manifest-path $name-$_commit/Cargo.toml
install -Dt $PKG/usr/bin $name-$_commit/target/release/shotgun
}