This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 5518d3e bin/createsusetagsrepo: actually create metadata hashes in content file... new 4c3acb6 bin/createsusetagsrepo: convert hexadecimal strings to lowercase for RPM GPG keys, just in case. The 1 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: bin/createsusetagsrepo | 4 ++++ 1 file changed, 4 insertions(+) -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository buildscripts. commit 4c3acb6504e615120fb0a96e0cf329c166be10ef Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Dec 4 07:51:19 2016 +0100 bin/createsusetagsrepo: convert hexadecimal strings to lowercase for RPM GPG keys, just in case. --- bin/createsusetagsrepo | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/createsusetagsrepo b/bin/createsusetagsrepo index 92ce6dd..e0f5d32 100755 --- a/bin/createsusetagsrepo +++ b/bin/createsusetagsrepo @@ -127,6 +127,8 @@ sign_metadata () { exit "1" fi + key_id_short="$(tr '[:upper:]' '[:lower:]' <<< "${key_id_short}")" + typeset key_creation_date="" key_creation_date="$(gpg --list-packets --verbose < 'content.key' 2>/dev/null | grep -Em 1 'created [0-9][0-9]*,' | sed -e '/.*created \([0-9][0-9]*\), .*/!d;s//\1/')" @@ -142,6 +144,8 @@ sign_metadata () { exit "1" fi + key_creation_date="$(tr '[:upper:]' '[:lower:]' <<< "${key_creation_date}")" + rpm_key_file_name="${rpm_key_file_name}${key_id_short}-${key_creation_date}.asc" test -e "${rpm_key_file_name}" || cp -av 'content.key' "${rpm_key_file_name}" -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git