From 9f7c8a6f33107e86239856330c61f7bd65e094bf Mon Sep 17 00:00:00 2001 From: marty-oehme <2098447+marty-oehme@users.noreply.github.com> Date: Tue, 24 Jun 2025 21:20:58 +0200 Subject: [PATCH 1/3] Update dependency git-bug/git-bug to v0.10.1 (#10) * Update dependency git-bug/git-bug to v0.10.1 * Update git-bug checksum --------- Co-authored-by: Renovate Bot --- srcpkgs/git-bug/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/git-bug/template b/srcpkgs/git-bug/template index e7bb4b3..c7dcc84 100644 --- a/srcpkgs/git-bug/template +++ b/srcpkgs/git-bug/template @@ -1,6 +1,6 @@ # Template file for 'git-bug' pkgname=git-bug -version=0.10.0 # renovate: datasource=github-tags depName=git-bug/git-bug +version=0.10.1 # renovate: datasource=github-tags depName=git-bug/git-bug revision=1 build_style=go go_import_path="github.com/git-bug/git-bug" @@ -12,7 +12,7 @@ license="GPL-3.0-only" homepage="https://github.com/git-bug/git-bug" distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz" replaces="git-bug>=0" -checksum=84391695b94bd628236cf263e86996c249e390d1a97acc41af21bc7d44346aca +checksum=1b5cafa3d9918ce18c4674c93b83359e211def83e716d5841fa93c77b457e6c2 post_install() { vlicense LICENSE From 10062b194bcdd5689cff91cf546dd074ccb757fa Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 24 Jun 2025 21:37:33 +0200 Subject: [PATCH 2/3] Add vimiv-qt --- srcpkgs/vimiv-qt/template | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 srcpkgs/vimiv-qt/template diff --git a/srcpkgs/vimiv-qt/template b/srcpkgs/vimiv-qt/template new file mode 100644 index 0000000..89d418e --- /dev/null +++ b/srcpkgs/vimiv-qt/template @@ -0,0 +1,27 @@ +# Template file for 'vimiv-qt' +pkgname=vimiv-qt +version=0.9.0 # renovate: datasource=github-tags depName=marty-oehme/topen +revision=1 +build_style=python3-pep517 +depends="python3-PyQt5 qt5-svg qt5-imageformats python3-piexif" +hostmakedepends="python3-setuptools" +makedepends="python3-devel" +short_desc="An image viewer with vim-like keybindings" +maintainer="Marty Oehme " +license="GPL-3.0" +homepage="https://github.com/karlch/vimiv-qt" +distfiles="${homepage}/archive/v${version}.tar.gz" +checksum=1a70a0b6620bba527aad0ca23936f1aa2823ed7592ae909fd920ba250720e88a + +post_install() { + vlicense LICENSE + + vdoc README.md + vman misc/vimiv.1 + + vinstall misc/vimiv.desktop 644 usr/share/applications + for i in 16 32 64 128 256 512; do + vinstall "icons/vimiv_${i}x${i}.png" 644 "usr/share/icons/hicolor/${i}x${i}/apps/vimiv.png" + done + vinstall misc/org.karlch.vimiv.qt.metainfo.xml 644 usr/share/metainfo/org.karlch.vimiv.qt.metainfo.xml +} From f2bc16f752ffec57b3fb2f1152ae0f373ae008e9 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Wed, 17 Sep 2025 10:07:00 +0200 Subject: [PATCH 3/3] Add pass-coffin Unfortunately somewhat systemd-dependent but the basic opening and closing mechanisms work well. --- srcpkgs/pass-coffin/INSTALL.msg | 4 ++++ srcpkgs/pass-coffin/template | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 srcpkgs/pass-coffin/INSTALL.msg create mode 100644 srcpkgs/pass-coffin/template diff --git a/srcpkgs/pass-coffin/INSTALL.msg b/srcpkgs/pass-coffin/INSTALL.msg new file mode 100644 index 0000000..e0fbc82 --- /dev/null +++ b/srcpkgs/pass-coffin/INSTALL.msg @@ -0,0 +1,4 @@ +pass-coffin relies on systemd-run for its timer commands + +Any timer-related services (`pass coffin -t 1min`, `pass timer`, ...) will not work. + diff --git a/srcpkgs/pass-coffin/template b/srcpkgs/pass-coffin/template new file mode 100644 index 0000000..affa742 --- /dev/null +++ b/srcpkgs/pass-coffin/template @@ -0,0 +1,18 @@ +# Template file for 'pass-coffin' +pkgname=pass-coffin +version=1.2.1 # renovate: datasource=github-tags depName=ayushnix/pass-coffin +revision=1 +build_style=gnu-makefile +depends="pass tar" +_optdepends="systemd-run" +short_desc="A password store extension to hide data inside a signed and encrypted coffin" +maintainer="Marty Oehme " +license="GPL-3.0-or-later" +homepage="https://github.com/ayushnix/pass-coffin" +distfiles="https://github.com/ayushnix/pass-coffin/archive/v${version}.tar.gz" +checksum=bca41b9c9dc3525ddfccef31baef2c61366a968c43ee841c3b6c6934e3263fbe + +post_install() { + rm ${DESTDIR}/etc/bash_completion.d/* + vcompletion completion/pass-coffin.bash-completion bash +}