Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2018-03-19 23:38:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Mon Mar 19 23:38:37 2018 rev:72 rq:588346 version:20180317.88a6e97

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2018-03-18 21:45:01.929308406 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new/openSUSE-release-tools.changes
       2018-03-19 23:38:42.852626105 +0100
@@ -1,0 +2,8 @@
+Sat Mar 17 06:14:43 UTC 2018 - opensuse-releaset...@opensuse.org
+
+- Update to version 20180317.88a6e97:
+  * check_source: delete: place maintainer review check behind ignore_devel.
+  * osclib/conf: SLE-15: set check-source-in-air-rename-allow to True.
+  * check_source: provide in-air-rename-allow config setting.
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20180315.d11501f.obscpio

New:
----
  openSUSE-release-tools-20180317.88a6e97.obscpio

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

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.Cqaerk/_old  2018-03-19 23:38:43.736594217 +0100
+++ /var/tmp/diff_new_pack.Cqaerk/_new  2018-03-19 23:38:43.740594073 +0100
@@ -20,7 +20,7 @@
 %define source_dir osc-plugin-factory
 %define announcer_filename factory-package-news
 Name:           openSUSE-release-tools
-Version:        20180315.d11501f
+Version:        20180317.88a6e97
 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.Cqaerk/_old  2018-03-19 23:38:43.788592341 +0100
+++ /var/tmp/diff_new_pack.Cqaerk/_new  2018-03-19 23:38:43.788592341 +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">d11501f8842e1ab602349c6098786a72f5a59b32</param>
+    <param 
name="changesrevision">42139de4d68490f8128cfae6451a21d8e9f2db5d</param>
   </service>
 </servicedata>

++++++ openSUSE-release-tools-20180315.d11501f.obscpio -> 
openSUSE-release-tools-20180317.88a6e97.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20180315.d11501f/check_source.py 
new/openSUSE-release-tools-20180317.88a6e97/check_source.py
--- old/openSUSE-release-tools-20180315.d11501f/check_source.py 2018-03-15 
17:38:48.000000000 +0100
+++ new/openSUSE-release-tools-20180317.88a6e97/check_source.py 2018-03-17 
07:10:11.000000000 +0100
@@ -39,6 +39,7 @@
         config = self.staging_config[project]
 
         self.ignore_devel = not str2bool(config.get('devel-project-enforce', 
'False'))
+        self.in_air_rename_allow = 
str2bool(config.get('check-source-in-air-rename-allow', 'False'))
         self.add_review_team = 
str2bool(config.get('check-source-add-review-team', 'True'))
         self.review_team = config.get('review-team')
         self.repo_checker = config.get('repo-checker')
@@ -101,7 +102,7 @@
             return False
 
         # We want to see the same package name in the devel project as in the 
distro; anything else calls for confusion
-        if source_package != target_package:
+        if not self.in_air_rename_allow and source_package != target_package:
             self.review_messages['declined'] = "No in-air renames: The package 
must be called the same in the devel project as in the target project"
             return False
 
@@ -261,8 +262,9 @@
         # Decline the delete request against linked package.
         links = root.findall('sourceinfo/linked')
         if links is None or len(links) == 0:
-            # Utilize maintbot to add devel project review if necessary.
-            self.maintbot.check_one_request(request)
+            if not self.ignore_devel:
+                # Utilize maintbot to add devel project review if necessary.
+                self.maintbot.check_one_request(request)
 
             if not self.skip_add_reviews and self.repo_checker is not None:
                 self.add_review(self.request, by_user=self.repo_checker, 
msg='Is this delete request safe?')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20180315.d11501f/osclib/conf.py 
new/openSUSE-release-tools-20180317.88a6e97/osclib/conf.py
--- old/openSUSE-release-tools-20180315.d11501f/osclib/conf.py  2018-03-15 
17:38:48.000000000 +0100
+++ new/openSUSE-release-tools-20180317.88a6e97/osclib/conf.py  2018-03-17 
07:10:11.000000000 +0100
@@ -111,6 +111,7 @@
         'delreq-review': None,
         'main-repo': 'standard',
         # check_source.py
+        'check-source-in-air-rename-allow': 'True',
         'repo-checker': 'repo-checker',
         'repo_checker-package-comment-devel': '',
         'pkglistgen-archs': 'x86_64',

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.Cqaerk/_old  2018-03-19 23:38:44.528565647 +0100
+++ /var/tmp/diff_new_pack.Cqaerk/_new  2018-03-19 23:38:44.528565647 +0100
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20180315.d11501f
-mtime: 1521131928
-commit: d11501f8842e1ab602349c6098786a72f5a59b32
+version: 20180317.88a6e97
+mtime: 1521267011
+commit: 88a6e975f549f0c9ad4093d063cf62f31f0308e9
 


Reply via email to