This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2go-keyring. from 88ecbb0 Makefile: manually try to clean up keyrings via --export | --import if the filtering command that uses newer GnuPG 2 syntax fails. new 54888f8 Makefile: switch back to unversioned gpg binary. new 90041e5 debian/control: depend on gnupg package only. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: Makefile | 2 +- debian/changelog | 7 +++++++ debian/control | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2go-keyring.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2go-keyring. commit 90041e5cd81fa19c0c1c26de12f32ac399f273ce Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Aug 17 11:33:32 2019 +0200 debian/control: depend on gnupg package only. Making sure that gnupg2 is getting installed unless such a package doesn't exist is too complicated. A dependency such as "gnupg2 | gnupg" sadly doesn't work, because gnupg is a base package and hence always installed, which immediately fulfils the dependency. --- debian/changelog | 5 +++++ debian/control | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index ff4e935..cd6f0aa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -85,6 +85,11 @@ x2go-keyring (2019.08.04) UNRELEASED; urgency=medium - Add build-dependency on debhelper >= 7. - Bump up dh dependency to 9. - Make sure we pull in gnupg2 on older Debian versions. + - Depend on gnupg package only. Making sure that gnupg2 is getting + installed unless such a package doesn't exist is too complicated. A + dependency such as "gnupg2 | gnupg" sadly doesn't work, because gnupg is + a base package and hence always installed, which immediately fulfils the + dependency. * debian/rules: - Simplify file... a lot. - Don't use --no-parallel with dh commands in compat-9-mode. diff --git a/debian/control b/debian/control index 4a00854..66701f9 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Uploaders: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, Mihai Moldovan <ionic@ionic.de>, Build-Depends: - gnupg2 | gnupg, + gnupg, jetring, bash, coreutils, @@ -21,7 +21,7 @@ Architecture: all Multi-Arch: foreign Depends: ${misc:Depends} -Recommends: gnupg2 | gnupg +Recommends: gnupg Description: GnuPG keys of all X2Go developers and the X2Go archive The Debian project requires developers to digitally sign the announcements of their packages with GnuPG, to protect against -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2go-keyring.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2go-keyring. commit 54888f81fe6e4974b2a7f484464a99ac9616d064 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Aug 17 11:29:10 2019 +0200 Makefile: switch back to unversioned gpg binary. Even gnupg1 should be good enough on older system like Jessie. --- Makefile | 2 +- debian/changelog | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5bae230..c931a1e 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ TRUSTED-LIST := $(patsubst active-keys/add-%,trusted.gpg/x2go-archive-%.gpg,$(wi TMPRING := trusted.gpg/build-area GPG_OPTIONS := --no-options --no-default-keyring --no-auto-check-trustdb --trustdb-name ./trustdb.gpg -GPG := gpg2 +GPG := gpg build: verify-indices keyrings/x2go-archive-keyring.gpg keyrings/x2go-archive-removed-keys.gpg verify-results $(TRUSTED-LIST) diff --git a/debian/changelog b/debian/changelog index 7e89794..ff4e935 100644 --- a/debian/changelog +++ b/debian/changelog @@ -67,6 +67,8 @@ x2go-keyring (2019.08.04) UNRELEASED; urgency=medium "gpg2". * Makefile: manually try to clean up keyrings via --export | --import if the filtering command that uses newer GnuPG 2 syntax fails. + * Makefile: switch back to unversioned gpg binary. Even gnupg1 should be + good enough on older system like Jessie. * debian/control: - Change maintainer to the mailing list. - Add the old package maintainer to the Uploaders field and myself. -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2go-keyring.git