From 5bf53056fd69d067d481395036e74180d7ce0bf0 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 21 Feb 2026 13:14:43 -0300 Subject: Fix: Makefile: debian: setup a temporary .gitignore --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 157a6f9..47ebced 100644 --- a/Makefile +++ b/Makefile @@ -113,6 +113,11 @@ release: debian: git checkout debian + # Setup a temporary .gitignore to allow "gbp import-orig" to work without issues + # This .gitignore will be removed by "gbp import-orig" anyway, but it allow it to run without complaining of untracked files + git checkout develop .gitignore + git add .gitignore + git commit -m 'Chore: set a temporary .gitignore so "gbp import-origin" does not complain' gbp import-orig --upstream-vcs-tag=$(VERSION) $(ARCHIVE)/keyringer-$(VERSION).tar.bz2 # Fine tune debian/changelog prepared by git-dch dch -e -- cgit v1.2.3 From 88d9a40c5702e7ca368cdd1fc5783b32363ee58f Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 21 Feb 2026 13:16:08 -0300 Subject: Keyringer 0.7.2 --- ChangeLog | 4 ++++ keyringer | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7bb7c41..8b87629 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2026-02-21 - 0.7.2 - Silvio Rhatto + + Updated Debian workflow + 2026-02-21 - 0.7.1 - Silvio Rhatto GitLab CI now running on Debian sid. diff --git a/keyringer b/keyringer index 3685a63..4b25afd 100755 --- a/keyringer +++ b/keyringer @@ -142,7 +142,7 @@ function keyringer_dispatch { # Config NAME="keyringer" -KEYRINGER_VERSION="0.7.1" +KEYRINGER_VERSION="0.7.2" CONFIG_VERSION="0.1" CONFIG_BASE="$HOME/.$NAME" CONFIG="$CONFIG_BASE/config" -- cgit v1.2.3