This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2go-keyring. from 579189a .gitignore: rework. new 77885ec runtests: fix tempdir -> tmpdir typo. new 012d2ea t/keyids-complete.t: fix stupid while -r ... read typo. new e5e6e21 t/keyids-complete.t: avoid using a subshell via pipes. new e1bc4d4 t/keyids-complete.t: fix key name checking. The 4 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: debian/changelog | 4 ++++ runtests | 2 +- t/keyids-complete.t | 7 ++++--- 3 files changed, 9 insertions(+), 4 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 77885ec6580e7658f321a25db4d35b686d7bc23a Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Aug 4 16:31:08 2019 +0200 runtests: fix tempdir -> tmpdir typo. --- debian/changelog | 1 + runtests | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index e89b840..ee6779a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -57,6 +57,7 @@ x2go-keyring (2019.08.04) UNRELEASED; urgency=medium * keyrings: add signatures. * Makefile: accept empty indices. * .gitignore: rework. + * runtests: fix tempdir -> tmpdir typo. * debian/control: - Change maintainer to the mailing list. - Add the old package maintainer to the Uploaders field and myself. diff --git a/runtests b/runtests index 88dca12..61ab0ab 100755 --- a/runtests +++ b/runtests @@ -12,7 +12,7 @@ for keyring in 'x2go-maintainers-keyring.gpg' 'x2go-maintainers-removed-keys.gpg done export GNUPGHOME='' -GNUPGHOME="$(mktemp -d --tempdir="${PWD}" 'gpghomedir.XXXXXXXXXXXXXXXX')" +GNUPGHOME="$(mktemp -d --tmpdir="${PWD}" 'gpghomedir.XXXXXXXXXXXXXXXX')" trap 'rm -rf -- "${GNUPGHOME}"' ERR EXIT SIGTERM SIGINT SIGHUP SIGPIPE SIGALRM SIGUSR1 SIGUSR2 chmod 700 "${GNUPGHOME}" -- 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 012d2ea8db1457b40b8d40f6789783eae8675fed Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Aug 4 16:32:24 2019 +0200 t/keyids-complete.t: fix stupid while -r ... read typo. --- debian/changelog | 1 + t/keyids-complete.t | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index ee6779a..75563aa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -58,6 +58,7 @@ x2go-keyring (2019.08.04) UNRELEASED; urgency=medium * Makefile: accept empty indices. * .gitignore: rework. * runtests: fix tempdir -> tmpdir typo. + * t/keyids-complete.t: fix stupid while -r ... read typo. * debian/control: - Change maintainer to the mailing list. - Add the old package maintainer to the Uploaders field and myself. diff --git a/t/keyids-complete.t b/t/keyids-complete.t index a38d8c3..123d49c 100755 --- a/t/keyids-complete.t +++ b/t/keyids-complete.t @@ -7,7 +7,7 @@ typeset -i fail='0' for keyring in 'x2go-maintainers' 'x2go-maintainers-removed-keys' 'active-keys' 'removed-keys'; do pushd "${keyring}" >'/dev/null' - find . -iname 'add-*' -print0 | while -r -d '' read key; do + find . -iname 'add-*' -print0 | while read -r -d '' key; do if ! grep -q "^${key} " 'index'; then echo "${keyring}: ${key} is not in index file." fail='1' -- 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 e5e6e2195f9e09e1929bc1722b71ff4b74dd8551 Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Aug 4 16:41:57 2019 +0200 t/keyids-complete.t: avoid using a subshell via pipes. --- debian/changelog | 1 + t/keyids-complete.t | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 75563aa..2be039b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -59,6 +59,7 @@ x2go-keyring (2019.08.04) UNRELEASED; urgency=medium * .gitignore: rework. * runtests: fix tempdir -> tmpdir typo. * t/keyids-complete.t: fix stupid while -r ... read typo. + * t/keyids-complete.t: avoid using a subshell via pipes. * debian/control: - Change maintainer to the mailing list. - Add the old package maintainer to the Uploaders field and myself. diff --git a/t/keyids-complete.t b/t/keyids-complete.t index 123d49c..47db68d 100755 --- a/t/keyids-complete.t +++ b/t/keyids-complete.t @@ -7,12 +7,12 @@ typeset -i fail='0' for keyring in 'x2go-maintainers' 'x2go-maintainers-removed-keys' 'active-keys' 'removed-keys'; do pushd "${keyring}" >'/dev/null' - find . -iname 'add-*' -print0 | while read -r -d '' key; do + while read -r -d '' key; do if ! grep -q "^${key} " 'index'; then echo "${keyring}: ${key} is not in index file." fail='1' fi - done + done < <(find . -iname 'add-*' -print0) popd >'/dev/null' done -- 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 e1bc4d45f71938ebe30019528bb8b2066fbe9603 Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Aug 4 16:48:27 2019 +0200 t/keyids-complete.t: fix key name checking. --- debian/changelog | 1 + t/keyids-complete.t | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 2be039b..0632450 100644 --- a/debian/changelog +++ b/debian/changelog @@ -60,6 +60,7 @@ x2go-keyring (2019.08.04) UNRELEASED; urgency=medium * runtests: fix tempdir -> tmpdir typo. * t/keyids-complete.t: fix stupid while -r ... read typo. * t/keyids-complete.t: avoid using a subshell via pipes. + * t/keyids-complete.t: fix key name checking. * debian/control: - Change maintainer to the mailing list. - Add the old package maintainer to the Uploaders field and myself. diff --git a/t/keyids-complete.t b/t/keyids-complete.t index 47db68d..c4e62b9 100755 --- a/t/keyids-complete.t +++ b/t/keyids-complete.t @@ -8,7 +8,8 @@ typeset -i fail='0' for keyring in 'x2go-maintainers' 'x2go-maintainers-removed-keys' 'active-keys' 'removed-keys'; do pushd "${keyring}" >'/dev/null' while read -r -d '' key; do - if ! grep -q "^${key} " 'index'; then + key="${key#./}" + if ! grep -Eq " ${key}\$" 'index'; then echo "${keyring}: ${key} is not in index file." fail='1' fi -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2go-keyring.git