Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2018-11-22 13:25:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.19453 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Thu Nov 22 13:25:55 2018 rev:149 rq:650611 version:20181121.5a43f6f

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2018-11-20 22:44:13.722242539 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.19453/openSUSE-release-tools.changes
 2018-11-22 13:26:28.725940245 +0100
@@ -1,0 +2,18 @@
+Wed Nov 21 11:29:56 UTC 2018 - [email protected]
+
+- Update to version 20181121.5a43f6f:
+  * Disable caching project _meta
+
+-------------------------------------------------------------------
+Wed Nov 21 09:07:22 UTC 2018 - [email protected]
+
+- Update to version 20181121.c2d8065:
+  * Disable publishing for the product_repo in the test_project directly
+
+-------------------------------------------------------------------
+Tue Nov 20 14:20:03 UTC 2018 - [email protected]
+
+- Update to version 20181120.1f0e92c:
+  * pkglistgen: nonefree repo handling should update to tool's repos rather 
than commandline's repos
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20181120.4be5ff3.obscpio

New:
----
  openSUSE-release-tools-20181121.5a43f6f.obscpio

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

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.mMZDMk/_old  2018-11-22 13:26:29.861939059 +0100
+++ /var/tmp/diff_new_pack.mMZDMk/_new  2018-11-22 13:26:29.861939059 +0100
@@ -20,7 +20,7 @@
 %define source_dir openSUSE-release-tools
 %define announcer_filename factory-package-news
 Name:           openSUSE-release-tools
-Version:        20181120.4be5ff3
+Version:        20181121.5a43f6f
 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.mMZDMk/_old  2018-11-22 13:26:29.905939012 +0100
+++ /var/tmp/diff_new_pack.mMZDMk/_new  2018-11-22 13:26:29.909939008 +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">4be5ff3e3af980c5be711447a72831a39c54ae62</param>
+    <param 
name="changesrevision">97e0dec9fb5573406c60ec872474867cddc9dbea</param>
   </service>
 </servicedata>

++++++ openSUSE-release-tools-20181120.4be5ff3.obscpio -> 
openSUSE-release-tools-20181121.5a43f6f.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20181120.4be5ff3/osclib/cache.py 
new/openSUSE-release-tools-20181121.5a43f6f/osclib/cache.py
--- old/openSUSE-release-tools-20181120.4be5ff3/osclib/cache.py 2018-11-20 
07:39:11.000000000 +0100
+++ new/openSUSE-release-tools-20181121.5a43f6f/osclib/cache.py 2018-11-21 
12:25:25.000000000 +0100
@@ -99,16 +99,17 @@
         r'/source$': TTL_LONG,
         # Sources will be expired with project, could be done on package level.
         r'/source/([^/?]+)(?:\?.*)?$': TTL_LONG,
-        # Project will be marked changed when packages are added/removed.
-        r'/source/([^/]+)/_meta$': TTL_LONG,
         r'/source/([^/]+)/(?:[^/]+)/(?:_meta|_link)$': TTL_LONG,
         r'/source/([^/]+)/dashboard/[^/]+': TTL_LONG,
         r'/source/([^/]+)/_attribute/[^/]+': TTL_DUPLICATE,
-        # Handles clearing local cache on package deletes. Lots of queries like
-        # updating project info, comment, and package additions.
-        r'/source/([^/]+)/(?:[^/?]+)(?:\?[^/]+)?$': TTL_LONG,
         # Presumably users are not interweaving in short windows.
         r'/statistics/latest_updated': TTL_SHORT,
+        # Use TTL_DUPLICATE for project _meta as only description changes are 
listed in latest_updated:
+        # https://github.com/openSUSE/open-build-service/issues/6323
+        r'/source/([^/]+)/_meta$': TTL_DUPLICATE,
+        ## Handles clearing local cache on package deletes. Lots of queries 
like
+        ## updating project info, comment, and package additions.
+        r'/source/([^/]+)/(?:[^/?]+)(?:\?[^/]+)?$': TTL_DUPLICATE,
     }
 
     last_updated = {}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20181120.4be5ff3/pkglistgen.py 
new/openSUSE-release-tools-20181121.5a43f6f/pkglistgen.py
--- old/openSUSE-release-tools-20181120.4be5ff3/pkglistgen.py   2018-11-20 
07:39:11.000000000 +0100
+++ new/openSUSE-release-tools-20181121.5a43f6f/pkglistgen.py   2018-11-21 
12:25:25.000000000 +0100
@@ -1328,11 +1328,11 @@
             repos_ = self.repos
             opts_nonfree = copy.deepcopy(opts)
             opts_nonfree.project = nonfree
-            self.repos = self.tool.expand_repos(nonfree, main_repo)
+            self.tool.repos = self.tool.expand_repos(nonfree, main_repo)
             self.tool.update_repos(opts_nonfree)
 
             # Switch repo back to main target project.
-            self.repos = repos_
+            self.tool.repos = repos_
 
             print('-> update_merge')
             self.update_merge(nonfree if drop_list else False)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20181120.4be5ff3/totest-manager.py 
new/openSUSE-release-tools-20181121.5a43f6f/totest-manager.py
--- old/openSUSE-release-tools-20181120.4be5ff3/totest-manager.py       
2018-11-20 07:39:11.000000000 +0100
+++ new/openSUSE-release-tools-20181121.5a43f6f/totest-manager.py       
2018-11-21 12:25:25.000000000 +0100
@@ -533,7 +533,8 @@
         release = 'Snapshot%s' % snapshot if snapshot else None
         logger.info('Updating snapshot %s' % snapshot)
         if not (self.dryrun or self.norelease):
-            self.api.switch_flag_in_prj(self.test_project, flag='publish', 
state='disable')
+            self.api.switch_flag_in_prj(self.test_project, flag='publish', 
state='disable',
+                                        repository=self.product_repo)
 
         self._release(set_release=release)
 

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.mMZDMk/_old  2018-11-22 13:26:30.613938273 +0100
+++ /var/tmp/diff_new_pack.mMZDMk/_new  2018-11-22 13:26:30.621938264 +0100
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20181120.4be5ff3
-mtime: 1542695951
-commit: 4be5ff3e3af980c5be711447a72831a39c54ae62
+version: 20181121.5a43f6f
+mtime: 1542799525
+commit: 5a43f6fa5e3ab71c7d29b09c1ea0e5d4f5bf8446
 


Reply via email to