Compare commits

...

3 commits

Author SHA1 Message Date
f2bc16f752
Add pass-coffin
Some checks are pending
build / Check package changes (push) Waiting to run
build / Build packages (push) Blocked by required conditions
build / Deploy repository (push) Blocked by required conditions
Unfortunately somewhat systemd-dependent but the basic opening and
closing mechanisms work well.
2025-09-17 10:12:26 +02:00
10062b194b
Add vimiv-qt 2025-06-25 12:07:54 +02:00
marty-oehme
9f7c8a6f33
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 <renovate@whitesourcesoftware.com>
2025-06-24 21:20:58 +02:00
4 changed files with 51 additions and 2 deletions

View file

@ -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

View file

@ -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.

View file

@ -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 <contact@martyoeh.me>"
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
}

27
srcpkgs/vimiv-qt/template Normal file
View file

@ -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 <contact@martyoeh.me>"
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
}