regtail: 0.1.0 -> 0.1.1

This commit is contained in:
Tim Biermann 2021-05-20 15:04:55 +00:00
parent bc4b796079
commit bbedf93b44
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 7 additions and 10 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+RDmSc0eVg5EkYF/OBBWgUZU38XJ5Pwzi/r0FLNPvQ+APPaEt230Q1esBtbfrJikKSLJfxAcXual+GHnEqJdQg=
SHA256 (Pkgfile) = 2b68fe45e74b80af516a464cf42f018da1f6ecefff2b42ad93e2422b5c35669c
RWSagIOpLGJF39uYBh1Rzf15xgP1XUF9h/ZAfNV357sAAznaPY1q/4EXfDVfTDYVXDNuaUgKWTAF1i7uOz+A/X+225jfhVmkWg4=
SHA256 (Pkgfile) = a8fc59b6dff2e0c5300e228b3fddaf86474969f7a9df3a5420f37d8af2844f39
SHA256 (.footprint) = 644f633f68dc6d923e7475a2b01e0302c81906cf1bf3dfc97e40352cefe271fe
SHA256 (regtail-0.1.0.tar.gz) = ef5f15980427d9e730aa633ae6846099681d67331ec2062120aaf3e3263b4fc5
SHA256 (regtail-0.1.1.tar.gz) = 42d25cf5572492b1c4d6c024200de245b9899e6e9c590c73144967ad30627a6f

View File

@ -4,19 +4,16 @@
# Depends on: rust
name=regtail
version=0.1.0
version=0.1.1
release=1
source=(https://github.com/StoneDot/regtail/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
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
cargo fetch
cargo build --release --locked
install -Dt $PKG/usr/bin target/release/regtail
cargo update --manifest-path $SRC/$name-$version/Cargo.toml
cargo build --release --locked --manifest-path $SRC/$name-$version/Cargo.toml
install -Dt $PKG/usr/bin $name-$version/target/release/regtail
}