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 2021-09-30 23:43:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.2443 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Thu Sep 30 23:43:29 2021 rev:334 rq:922263 version:20210930.155a1eb6

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2021-09-25 22:51:34.291358807 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.2443/openSUSE-release-tools.changes
  2021-09-30 23:44:44.468561832 +0200
@@ -1,0 +2,6 @@
+Thu Sep 30 05:42:06 UTC 2021 - opensuse-releaset...@opensuse.org
+
+- Update to version 20210930.155a1eb6:
+  * Fix the only offense of E731
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20210925.391bef87.obscpio

New:
----
  openSUSE-release-tools-20210930.155a1eb6.obscpio

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

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.Xpmynu/_old  2021-09-30 23:44:45.084562537 +0200
+++ /var/tmp/diff_new_pack.Xpmynu/_new  2021-09-30 23:44:45.088562542 +0200
@@ -20,7 +20,7 @@
 %define source_dir openSUSE-release-tools
 %define announcer_filename factory-package-news
 Name:           openSUSE-release-tools
-Version:        20210925.391bef87
+Version:        20210930.155a1eb6
 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.Xpmynu/_old  2021-09-30 23:44:45.120562579 +0200
+++ /var/tmp/diff_new_pack.Xpmynu/_new  2021-09-30 23:44:45.124562583 +0200
@@ -1,6 +1,6 @@
 <servicedata>
   <service name="tar_scm">
     <param 
name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param>
-    <param 
name="changesrevision">0397656ec6dd3abb12329d92fc275e57eee625fb</param>
+    <param 
name="changesrevision">155a1eb6e971549c648a44d7e8a245b51bd7523d</param>
   </service>
 </servicedata>

++++++ openSUSE-release-tools-20210925.391bef87.obscpio -> 
openSUSE-release-tools-20210930.155a1eb6.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openSUSE-release-tools-20210925.391bef87/.flake8 
new/openSUSE-release-tools-20210930.155a1eb6/.flake8
--- old/openSUSE-release-tools-20210925.391bef87/.flake8        2021-09-24 
20:34:59.000000000 +0200
+++ new/openSUSE-release-tools-20210930.155a1eb6/.flake8        2021-09-30 
07:40:48.000000000 +0200
@@ -1,4 +1,4 @@
 [flake8]
 exclude = abichecker
 max-line-length = 100
-ignore = 
E501,F401,E128,E251,E201,E202,E302,E305,F841,E261,E712,E126,E711,E125,E123,E101,E124,E127,E701,E714,W504,E129,E741,E722,E731
+ignore = 
E501,F401,E128,E251,E201,E202,E302,E305,F841,E261,E712,E126,E711,E125,E123,E101,E124,E127,E701,E714,W504,E129,E741,E722
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20210925.391bef87/osclib/util.py 
new/openSUSE-release-tools-20210930.155a1eb6/osclib/util.py
--- old/openSUSE-release-tools-20210925.391bef87/osclib/util.py 2021-09-24 
20:34:59.000000000 +0200
+++ new/openSUSE-release-tools-20210930.155a1eb6/osclib/util.py 2021-09-30 
07:40:48.000000000 +0200
@@ -28,13 +28,19 @@
         return [project + project_suffix]
 
     count_original = project.count(':')
+
+    def filter_sle_updates(p):
+        return p.count(':') == count_original and (p.endswith(':GA') or 
(include_update and p.endswith(':Update')))
+
+    def filter_opensuse_updates(p):
+        return p.count(':') == count_original or (include_update and 
p.count(':') == count_original + 1 and p.endswith(':Update'))
+
     if project.startswith('SUSE:SLE'):
         project = ':'.join(project.split(':')[:2])
-        family_filter = lambda p: p.count(':') == count_original and (
-            p.endswith(':GA') or (include_update and p.endswith(':Update')))
+
+        family_filter = filter_sle_updates
     else:
-        family_filter = lambda p: p.count(':') == count_original or (
-            include_update and p.count(':') == count_original + 1 and 
p.endswith(':Update'))
+        family_filter = filter_opensuse_updates
 
     prefix = ':'.join(project.split(':')[:-1])
     projects = project_list_prefix(apiurl, prefix)

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.Xpmynu/_old  2021-09-30 23:44:45.704563247 +0200
+++ /var/tmp/diff_new_pack.Xpmynu/_new  2021-09-30 23:44:45.704563247 +0200
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20210925.391bef87
-mtime: 1632508499
-commit: 391bef87800718ade845731f4dbc85e4ecc2b819
+version: 20210930.155a1eb6
+mtime: 1632980448
+commit: 155a1eb6e971549c648a44d7e8a245b51bd7523d
 

Reply via email to