upgpkg: pacolog-2.2.1-3: new upstream release

This commit is contained in:
Christian Schendel 2025-09-23 03:51:56 +02:00
commit 3ff3d66006
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
8 changed files with 171 additions and 0 deletions

35
PKGBUILD Normal file
View file

@ -0,0 +1,35 @@
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
# Contributor: Rhinoceros <https://aur.archlinux.org/account/rhinoceros>
pkgname=pacolog
pkgver=2.2.1
pkgrel=3
pkgdesc='List recent commits for Arch Linux packages'
url='https://gitlab.com/protist/pacolog'
arch=('any')
license=(
GPL-3.0-only
)
depends=(
bash
w3m
)
makedepends=(
git
)
source=(
"$pkgname-$pkgver::git+$url.git#tag=v$pkgver"
)
b2sums=('1e69d9068a71d3182e01f5c892ce8e35b3447b9fa398603299411e5446aeda1bb7ea48d4ea9ebc40e285af941a727ffb759010079852a935f1425101bf3a4f37')
package() {
cd "$pkgname-$pkgver"
install -Dm0755 ${pkgname} "$pkgdir/usr/bin/${pkgname}"
install -Dm0644 completion/bash \
"${pkgdir}/usr/share/bash-completion/completions/pacolog"
install -Dm0644 completion/zsh \
"${pkgdir}/usr/share/zsh/site-functions/_pacolog"
}
# vim: set ft=sh ts=4 sw=4 et: