Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package openSUSE-build-key for 
openSUSE:Factory checked in at 2026-06-28 21:05:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-build-key (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-build-key.new.11887 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-build-key"

Sun Jun 28 21:05:59 2026 rev:58 rq:1362194 version:1.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/openSUSE-build-key/openSUSE-build-key.changes    
2026-05-29 18:06:31.536917217 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-build-key.new.11887/openSUSE-build-key.changes
 2026-06-28 21:06:37.470256868 +0200
@@ -1,0 +2,10 @@
+Tue Jun 23 14:34:49 UTC 2026 - Marcus Meissner <[email protected]>
+
+- do not include the projects _pubkey if we have it already.
+
+-------------------------------------------------------------------
+Mon Jun 22 09:52:22 UTC 2026 - Marcus Meissner <[email protected]>
+
+- use the modification time for key2rpname
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ openSUSE-build-key.spec ++++++
--- /var/tmp/diff_new_pack.p4BWLR/_old  2026-06-28 21:06:38.634296090 +0200
+++ /var/tmp/diff_new_pack.p4BWLR/_new  2026-06-28 21:06:38.634296090 +0200
@@ -166,9 +166,12 @@
 install -c -m 644 %{SOURCE14} 
%{buildroot}%{pemcontainerkeydir}/suse-container-key.pem
 install -c -m 644 %{SOURCE11} 
%{buildroot}%{pemcontainerkeydir}/suse-container-key-old.pem
 install -c -m 644 %{SOURCE12} 
%{buildroot}%{pemcontainerkeydir}/opensuse-container-key-2023.pem
+
+# Include pubkey only if we do not have it yet.
 if [ -e "%_sourcedir/_pubkey" ]; then
     name="$(sh %{SOURCE0} %_sourcedir/_pubkey).asc"
-    if [ ! -e "%_sourcedir/$name" ]; then
+    idname=`echo $name|sed -e 's/-[^-]*$//;'`
+    if [ ! -e %_sourcedir/$idname*.asc ]; then
        install -D -m 644 %_sourcedir/_pubkey %{buildroot}%keydir/"$name"
     fi
 fi












++++++ key2rpmname ++++++
--- /var/tmp/diff_new_pack.p4BWLR/_old  2026-06-28 21:06:38.838302964 +0200
+++ /var/tmp/diff_new_pack.p4BWLR/_new  2026-06-28 21:06:38.842303099 +0200
@@ -2,10 +2,14 @@
 function keyname() {
        for key in "$@"; do
                while read line; do
-                       [ "${line:0:4}" = "pub:" ] || continue
-                       IFS=: eval set -- "\$line"
-                       keyid="${5:8}"
-                       printf "gpg-pubkey-%s-%08x\n" "${keyid,,}" "$6"
+                       if [ "${line:0:4}" = "pub:" ]; then
+                               IFS=: eval set -- "\$line"
+                               keyid="${5:8}"
+                       fi
+                       if [ "${line:0:4}" = "uid:" ]; then
+                               IFS=: eval set -- "\$line"
+                               printf "gpg-pubkey-%s-%08x\n" "${keyid,,}" "$6"
+                       fi
                done < <(gpg --with-colons --import-options show-only --import 
2>/dev/null < "$key")
        done
 }

Reply via email to