Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2020-02-21 16:42:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Fri Feb 21 16:42:36 2020 rev:280 rq:777866 version:20200220.3b5f8650

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2020-02-20 14:55:35.890313705 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.26092/openSUSE-release-tools.changes
 2020-02-21 16:42:46.186082410 +0100
@@ -1,0 +2,6 @@
+Thu Feb 20 10:07:59 UTC 2020 - [email protected]
+
+- Update to version 20200220.3b5f8650:
+  * fcc_submitter: update to 15.2
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20200219.c0ab2c6b.obscpio

New:
----
  openSUSE-release-tools-20200220.3b5f8650.obscpio

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

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.hBwuf3/_old  2020-02-21 16:42:48.562087157 +0100
+++ /var/tmp/diff_new_pack.hBwuf3/_new  2020-02-21 16:42:48.574087181 +0100
@@ -20,7 +20,7 @@
 %define source_dir openSUSE-release-tools
 %define announcer_filename factory-package-news
 Name:           openSUSE-release-tools
-Version:        20200219.c0ab2c6b
+Version:        20200220.3b5f8650
 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.hBwuf3/_old  2020-02-21 16:42:48.974087980 +0100
+++ /var/tmp/diff_new_pack.hBwuf3/_new  2020-02-21 16:42:48.986088005 +0100
@@ -1,6 +1,6 @@
 <servicedata>
   <service name="tar_scm">
     <param 
name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param>
-    <param 
name="changesrevision">c0ab2c6b6ce0c0c6a663795e651e12aff3de353e</param>
+    <param 
name="changesrevision">3b5f865031fbc9526d80734469d4223b1a48975a</param>
   </service>
 </servicedata>

++++++ openSUSE-release-tools-20200219.c0ab2c6b.obscpio -> 
openSUSE-release-tools-20200220.3b5f8650.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20200219.c0ab2c6b/fcc_submitter.py 
new/openSUSE-release-tools-20200220.3b5f8650/fcc_submitter.py
--- old/openSUSE-release-tools-20200219.c0ab2c6b/fcc_submitter.py       
2020-02-19 13:40:39.000000000 +0100
+++ new/openSUSE-release-tools-20200220.3b5f8650/fcc_submitter.py       
2020-02-20 11:02:49.000000000 +0100
@@ -1,8 +1,9 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 
 import argparse
 import logging
 import sys
+import time
 
 try:
     from urllib.error import HTTPError, URLError
@@ -22,9 +23,10 @@
 from osc import oscerr
 from osclib.memoize import memoize
 
-OPENSUSE = 'openSUSE:Leap:15.1'
-OPENSUSE_PREVERSION = 'openSUSE:Leap:15.0'
-FCC = '{}:Staging:FactoryCandidates'.format(OPENSUSE)
+OPENSUSE = 'openSUSE:Leap:15.2'
+OPENSUSE_PREVERSION = 'openSUSE:Leap:15.1'
+OPENSUSE_RELEASED_VERSION = ['openSUSE:Leap:15.0', 'openSUSE:Leap:15.1']
+FCC = '{}:FactoryCandidates'.format(OPENSUSE)
 
 makeurl = osc.core.makeurl
 http_GET = osc.core.http_GET
@@ -133,7 +135,10 @@
         self.apiurl = osc.conf.config['apiurl']
         self.debug = osc.conf.config['debug']
         self.sle_base_prjs = [
+                'SUSE:SLE-15-SP2:GA',
+                'SUSE:SLE-15-SP1:Update',
                 'SUSE:SLE-15-SP1:GA',
+                'SUSE:SLE-15:Update',
                 'SUSE:SLE-15:GA',
                 'SUSE:SLE-12-SP4:Update',
                 'SUSE:SLE-12-SP4:GA',
@@ -309,7 +314,8 @@
         target_packages = self.get_source_packages(self.to_prj)
         deleted_packages = self.get_deleted_packages(self.to_prj)
         if self.to_prj.startswith("openSUSE:"):
-            deleted_packages = deleted_packages + 
self.get_deleted_packages(OPENSUSE_PREVERSION)
+            for prd in OPENSUSE_RELEASED_VERSION:
+                deleted_packages = deleted_packages + 
self.get_deleted_packages(prd)
 
         pseudometa_project, pseudometa_package = 
project_pseudometa_package(self.apiurl, 'openSUSE:Factory')
         skip_pkgs_list = self.load_skip_pkgs_list(pseudometa_project, 
pseudometa_package).splitlines()
@@ -381,7 +387,7 @@
                     # check package does not in the skip list
                     match = None
                     for elem in skip_pkgs_list:
-                        m = re.search(elem, package)
+                        m = re.search(str(elem), package)
                         if m is not None:
                             match = True
 
@@ -398,6 +404,7 @@
                         logging.error('Error occurred when creating submit 
request')
             else:
                 logging.debug('%s is exist in %s, skip!' % (package, 
self.to_prj))
+            time.sleep(5)
 
         # dump multi specs packages
         print("Multi-specfile packages:")

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.hBwuf3/_old  2020-02-21 16:42:52.626095277 +0100
+++ /var/tmp/diff_new_pack.hBwuf3/_new  2020-02-21 16:42:52.626095277 +0100
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20200219.c0ab2c6b
-mtime: 1582116039
-commit: c0ab2c6b6ce0c0c6a663795e651e12aff3de353e
+version: 20200220.3b5f8650
+mtime: 1582192969
+commit: 3b5f865031fbc9526d80734469d4223b1a48975a
 


Reply via email to