From 8cd24e873d3ae00a68f6888c69a91955fda0e877 Mon Sep 17 00:00:00 2001 From: Reinout Meliesie Date: Fri, 15 May 2026 14:07:37 +0200 Subject: [PATCH 1/2] Add PKGBUILD entries to gitignore --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..38e5a7d --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Arch Linux PKGBUILD artifacts. + +.SRCINFO +*.log +*.pkg.tar +*.pkg.tar.zst +pkg/ +src/ From 2a372676cc14097053919585fb8b3a2b42cc3f90 Mon Sep 17 00:00:00 2001 From: Reinout Meliesie Date: Fri, 15 May 2026 14:08:19 +0200 Subject: [PATCH 2/2] Add PKGBUILD for journalctl-last-invocation --- journalctl-last-invocation/PKGBUILD | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 journalctl-last-invocation/PKGBUILD diff --git a/journalctl-last-invocation/PKGBUILD b/journalctl-last-invocation/PKGBUILD new file mode 100644 index 0000000..d65a391 --- /dev/null +++ b/journalctl-last-invocation/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: Reinout Meliesie + +pkgname=journalctl-last-invocation +pkgver=20260515 +pkgrel=1 +pkgdesc='Small utility to show systemd journal entries only for the last invocation of a unit.' +arch=(any) +url='https://kernelmaft.com/forgejo/zedfrigg/linux-utils' +license=(GPL-3.0-only) +depends=(systemd zsh) +source=(journalctl-last-invocation) +sha256sums=(SKIP) + +package() { + mkdir -p "$pkgdir/usr/bin/" + install journalctl-last-invocation "$pkgdir/usr/bin/" +}