atuin: 12.0.0 -> 13.0.0

This commit is contained in:
Tim Biermann 2023-02-27 19:22:57 +01:00
parent 8a19bcd975
commit 4407a728e4
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 6 additions and 8 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37imOUs2AihgArLFTR8AYgKbX47JcIUtNHsN7oW7YrWqERuVjjWR10dJElpcHDXo0I2utS2edMbk+abGliVy4gY=
SHA256 (Pkgfile) = 39bffd29a1c6429b7fad5ed53a37fe1347b460de790ff590270c8ba9997a8e29
RWSagIOpLGJF38aaCSSgDp6GtIDv/cO3dnovHPRAmVlEEMQLUCyFY83VnrcOfb/6q6BIFx4UsGdnB3Yx5lyS0QQL6QwvtQrmRg8=
SHA256 (Pkgfile) = 3bf15a4bd2fca808168b7732ebb24d0a775d1bd502093d105a70b06a008a0bc6
SHA256 (.footprint) = e00a72cbae6f94bccf7b886a7ca68f035fb8c3afbbf35acb770cf3ecd413e7ce
SHA256 (atuin-12.0.0.tar.gz) = bfeeb14c3fd94862e2cb7c57ac2b77db78686b0afe49b5597ead9cca02dcc403
SHA256 (atuin-13.0.0.tar.gz) = 885cfe080cbc421b42b7a8b86d854f7e4abcb5c124f009f0871c9c72a3bc122e

View File

@ -4,17 +4,15 @@
# Depends on: rust
name=atuin
version=12.0.0
version=13.0.0
release=1
source=(https://github.com/ellie/atuin/archive/v$version/$name-$version.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"
[[ ! -e $PKGMK_SOURCE_DIR/rust ]] && mkdir $PKGMK_SOURCE_DIR/rust
cargo update --manifest-path $name-$version/Cargo.toml
cargo build --release --locked --manifest-path $name-$version/Cargo.toml
cargo build --release --manifest-path $name-$version/Cargo.toml
install -Dt $PKG/usr/bin $name-$version/target/release/$name
}