git-cliff: initial commit, version 0.3.0

This commit is contained in:
Tim Biermann 2021-09-20 00:18:53 +02:00
parent abd3004496
commit a2d46d9b3f
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 26 additions and 0 deletions

3
git-cliff/.footprint Normal file
View File

@ -0,0 +1,3 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/git-cliff

5
git-cliff/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3z170Dft11R9L9ql7pv1epMHc2p5Ep36N5Zvaf8quvNJf8cjCMK1tC3HeGvDmqMW4J5AYK2B98XjPRdXSVZ6KAQ=
SHA256 (Pkgfile) = b98b3fb23d944688907ca5be89d06736a51352edcb477d3048c769607fecee57
SHA256 (.footprint) = cebaa63230cf791010d5aba7f40ac5863caa7ae11294ad2a84745b0bbd53771d
SHA256 (git-cliff-0.3.0.tar.gz) = a2961e97837c40e3b3b00a31e3221585932ac65981bc31d0c20d061c003e9462

18
git-cliff/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: a highly customizable Changelog Generator that follows Conventional Commit specifications
# URL: https://github.com/orhun/git-cliff
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: rust
name=git-cliff
version=0.3.0
release=1
source=(https://github.com/orhun/git-cliff/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"
cargo update --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/$name
}