Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package instsource-susedata for 
openSUSE:Factory checked in at 2021-05-07 16:44:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/instsource-susedata (Old)
 and      /work/SRC/openSUSE:Factory/.instsource-susedata.new.2988 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "instsource-susedata"

Fri May  7 16:44:53 2021 rev:11 rq:890354 version:0.3.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/instsource-susedata/instsource-susedata.changes  
2021-04-18 21:45:17.268739839 +0200
+++ 
/work/SRC/openSUSE:Factory/.instsource-susedata.new.2988/instsource-susedata.changes
        2021-05-07 16:44:58.584445245 +0200
@@ -1,0 +2,6 @@
+Tue May 04 14:35:48 CEST 2021 - r...@suse.de
+
+- update to version 0.3.7
+  * include fingerprint in the gpg keys (still bsc#1184326)
+
+-------------------------------------------------------------------

Old:
----
  instsource-susedata-0.3.6.obscpio

New:
----
  instsource-susedata-0.3.7.obscpio

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

Other differences:
------------------
++++++ instsource-susedata.spec ++++++
--- /var/tmp/diff_new_pack.Wr7qPz/_old  2021-05-07 16:44:58.968443476 +0200
+++ /var/tmp/diff_new_pack.Wr7qPz/_new  2021-05-07 16:44:58.972443458 +0200
@@ -20,7 +20,7 @@
 Summary:        Utility to add susedata to repomd metadata
 License:        GPL-2.0-only
 Group:          System/Management
-Version:        0.3.6
+Version:        0.3.7
 Release:        0
 Source:         %{name}-%{version}.tar.xz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ _service ++++++
--- /var/tmp/diff_new_pack.Wr7qPz/_old  2021-05-07 16:44:58.992443365 +0200
+++ /var/tmp/diff_new_pack.Wr7qPz/_new  2021-05-07 16:44:58.992443365 +0200
@@ -2,8 +2,8 @@
   <service name="obs_scm" mode="disabled">
     <param 
name="url">https://github.com/openSUSE/instsource-susedata.git</param>
     <param name="scm">git</param>
-    <param name="version">0.3.6</param>
-    <param name="revision">0.3.6</param>
+    <param name="version">0.3.7</param>
+    <param name="revision">0.3.7</param>
     <param name="extract">instsource-susedata.changes</param>
     <param name="extract">instsource-susedata.spec</param>
   </service>

++++++ instsource-susedata-0.3.6.obscpio -> instsource-susedata-0.3.7.obscpio 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/instsource-susedata-0.3.6/add_product_susedata 
new/instsource-susedata-0.3.7/add_product_susedata
--- old/instsource-susedata-0.3.6/add_product_susedata  2021-04-15 
16:18:57.000000000 +0200
+++ new/instsource-susedata-0.3.7/add_product_susedata  2021-05-04 
14:37:03.000000000 +0200
@@ -421,7 +421,18 @@
   opendir(DIR,"$repo_dir") || die "ERROR: could not open repo base 
directory\n";
   for (readdir(DIR)) {
     next unless /^gpg-pubkey-/;
-    push @new_repomd_tags_content, $_;
+    my $filename = $_;
+    my $fpr = "";
+    open(GPG,"gpg --no-keyring --no-default-keyring --with-colons 
--import-options show-only --import --fingerprint < $repo_dir/$_ |") || die 
"could not call gpg";
+    while(<GPG>) {
+           chomp();
+           next unless /^fpr:/;
+           my @gline = split(":",$_);
+           $fpr = "?fpr=$gline[9]";
+           last; # only the main sig, not subkey fingerprints
+    }
+    close (GPG);
+    push @new_repomd_tags_content, "$filename$fpr";
   }
   closedir(DIR);
   $repomd->{'tags'}->{'content'} = \@new_repomd_tags_content if 
@new_repomd_tags_content;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/instsource-susedata-0.3.6/instsource-susedata.changes 
new/instsource-susedata-0.3.7/instsource-susedata.changes
--- old/instsource-susedata-0.3.6/instsource-susedata.changes   2021-04-15 
16:18:57.000000000 +0200
+++ new/instsource-susedata-0.3.7/instsource-susedata.changes   2021-05-04 
14:37:03.000000000 +0200
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Tue May 04 14:35:48 CEST 2021 - r...@suse.de
+
+- update to version 0.3.7
+  * include fingerprint in the gpg keys (still bsc#1184326)
+
+-------------------------------------------------------------------
 Thu Apr 15 16:18:09 CEST 2021 - r...@suse.de
 
 - update to version 0.3.6
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/instsource-susedata-0.3.6/instsource-susedata.spec 
new/instsource-susedata-0.3.7/instsource-susedata.spec
--- old/instsource-susedata-0.3.6/instsource-susedata.spec      2021-04-15 
16:18:57.000000000 +0200
+++ new/instsource-susedata-0.3.7/instsource-susedata.spec      2021-05-04 
14:37:03.000000000 +0200
@@ -20,7 +20,7 @@
 Summary:        Utility to add susedata to repomd metadata
 License:        GPL-2.0-only
 Group:          System/Management
-Version:        0.3.4
+Version:        0.3.7
 Release:        0
 Source:         %{name}-%{version}.tar.xz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ instsource-susedata.obsinfo ++++++
--- /var/tmp/diff_new_pack.Wr7qPz/_old  2021-05-07 16:44:59.084442942 +0200
+++ /var/tmp/diff_new_pack.Wr7qPz/_new  2021-05-07 16:44:59.084442942 +0200
@@ -1,5 +1,5 @@
 name: instsource-susedata
-version: 0.3.6
-mtime: 1618496337
-commit: df5bc64e2482c1d2246392061b8b89a471a166e0
+version: 0.3.7
+mtime: 1620131823
+commit: d6d5a7bd701dfb665d04a141dc99a441895ea79d
 

Reply via email to