Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2022-01-25 17:36:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.1938 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Tue Jan 25 17:36:13 2022 rev:368 rq:948998 version:20220125.1bfd0ca2

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2022-01-22 08:19:26.474395492 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.1938/openSUSE-release-tools.changes
  2022-01-25 17:38:02.217520503 +0100
@@ -1,0 +2,6 @@
+Tue Jan 25 10:57:19 UTC 2022 - opensuse-releaset...@opensuse.org
+
+- Update to version 20220125.1bfd0ca2:
+  * skippkg-finder: add a supplement list for adding package to the skiplist
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20220121.38112333.obscpio

New:
----
  openSUSE-release-tools-20220125.1bfd0ca2.obscpio

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

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.h7KftR/_old  2022-01-25 17:38:03.129514085 +0100
+++ /var/tmp/diff_new_pack.h7KftR/_new  2022-01-25 17:38:03.137514029 +0100
@@ -20,7 +20,7 @@
 %define source_dir openSUSE-release-tools
 %define announcer_filename factory-package-news
 Name:           openSUSE-release-tools
-Version:        20220121.38112333
+Version:        20220125.1bfd0ca2
 Release:        0
 Summary:        Tools to aid in staging and release work for openSUSE/SUSE
 License:        GPL-2.0-or-later AND MIT

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.h7KftR/_old  2022-01-25 17:38:03.181513720 +0100
+++ /var/tmp/diff_new_pack.h7KftR/_new  2022-01-25 17:38:03.185513692 +0100
@@ -1,7 +1,7 @@
 <servicedata>
   <service name="tar_scm">
     <param 
name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param>
-    <param 
name="changesrevision">5a4355e32ddcfb4036a05b982239cd2fe1f9e223</param>
+    <param 
name="changesrevision">f79172bb7c908ceee49087eb99ffb626f19c011c</param>
   </service>
 </servicedata>
 

++++++ openSUSE-release-tools-20220121.38112333.obscpio -> 
openSUSE-release-tools-20220125.1bfd0ca2.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20220121.38112333/skippkg-finder.py 
new/openSUSE-release-tools-20220125.1bfd0ca2/skippkg-finder.py
--- old/openSUSE-release-tools-20220121.38112333/skippkg-finder.py      
2022-01-21 16:27:13.000000000 +0100
+++ new/openSUSE-release-tools-20220125.1bfd0ca2/skippkg-finder.py      
2022-01-25 11:56:42.000000000 +0100
@@ -42,6 +42,11 @@
         # SUSE:SLE-15:Update_libcdio.12032, PROJECT-NAME_PACKAGE-NAME
         self.skiplist_ignored = 
set(config.get('skippkg-finder-skiplist-ignores', '').split(' '))
 
+        # supplement RPMs for skipping from the ftp-tree
+        self.skiplist_supplement_regex = 
set(config.get('skippkg-finder-skiplist-supplement-regex', '').split(' '))
+        # drops off RPM from a list of the supplement RPMs due to regex
+        self.skiplist_supplement_ignores = 
set(config.get('skippkg-finder-skiplist-supplement-ignores', '').split(' '))
+
     def is_sle_specific(self, package):
         """
         Return True if package is provided for SLE only or a SLE forking.
@@ -311,6 +316,13 @@
                 if main_filename not in obsoleted:
                     obsoleted.remove(pkg)
 
+        for regex in self.skiplist_supplement_regex:
+            for binary in fullbinarylist:
+                result = re.match(regex, binary)
+                if result and binary not in obsoleted and\
+                        binary not in self.skiplist_supplement_ignores:
+                    obsoleted.append(binary)
+
         skip_list = ET.Element('group', {'name': 'NON_FTP_PACKAGES'})
         ET.SubElement(skip_list, 'conditional', {'name': 'drop_from_ftp'})
         packagelist = ET.SubElement(skip_list, 'packagelist', {'relationship': 
'requires'})

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.h7KftR/_old  2022-01-25 17:38:03.929508457 +0100
+++ /var/tmp/diff_new_pack.h7KftR/_new  2022-01-25 17:38:03.937508400 +0100
@@ -1,6 +1,6 @@
 name: openSUSE-release-tools
-version: 20220121.38112333
-mtime: 1642778833
-commit: 381123332ac3cdcf961909cbc45491022aa66de5
+version: 20220125.1bfd0ca2
+mtime: 1643108202
+commit: 1bfd0ca26ee0fdfff93576cd1fac6bf5757fe2ae
 
 

Reply via email to