Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2019-11-06 13:58:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Wed Nov  6 13:58:16 2019 rev:240 rq:745251 version:20191104.75836fec

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2019-11-04 17:16:23.756901454 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.2990/openSUSE-release-tools.changes
  2019-11-06 13:58:23.216301257 +0100
@@ -1,0 +2,8 @@
+Mon Nov 04 18:12:57 UTC 2019 - [email protected]
+
+- Update to version 20191104.75836fec:
+  * Start searchd in api container
+  * Add a dummy user/password to the openSUSE:Factory section
+  * Make exceptions easier to debug in OBSLocal
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20191104.3d0d7312.obscpio

New:
----
  openSUSE-release-tools-20191104.75836fec.obscpio

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

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.PaDc1B/_old  2019-11-06 13:58:24.216302305 +0100
+++ /var/tmp/diff_new_pack.PaDc1B/_new  2019-11-06 13:58:24.220302308 +0100
@@ -20,7 +20,7 @@
 %define source_dir openSUSE-release-tools
 %define announcer_filename factory-package-news
 Name:           openSUSE-release-tools
-Version:        20191104.3d0d7312
+Version:        20191104.75836fec
 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.PaDc1B/_old  2019-11-06 13:58:24.260302350 +0100
+++ /var/tmp/diff_new_pack.PaDc1B/_new  2019-11-06 13:58:24.260302350 +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">d096e163a9966e1f9a57ac6ea54d1a79039608e8</param>
+    <param 
name="changesrevision">9b035e3e8c86b297e77854f4026ee92f7a4f45b6</param>
   </service>
 </servicedata>

++++++ openSUSE-release-tools-20191104.3d0d7312.obscpio -> 
openSUSE-release-tools-20191104.75836fec.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20191104.3d0d7312/dist/ci/docker-compose.yml 
new/openSUSE-release-tools-20191104.75836fec/dist/ci/docker-compose.yml
--- old/openSUSE-release-tools-20191104.3d0d7312/dist/ci/docker-compose.yml     
2019-11-04 09:53:43.000000000 +0100
+++ new/openSUSE-release-tools-20191104.75836fec/dist/ci/docker-compose.yml     
2019-11-04 19:10:51.000000000 +0100
@@ -17,7 +17,7 @@
     command: /usr/sbin/memcached -u memcached
   api:
     <<: *obs
-    command: chroot --userspec=wwwrun / /bin/bash -c "cd /srv/www/obs/api && 
/usr/bin/bundle exec rails s -e production"
+    command: chroot --userspec=wwwrun / /bin/bash -c "cd /srv/www/obs/api && 
RAILS_ENV=production rake ts:rebuild && /usr/bin/bundle exec rails s -e 
production"
     depends_on:
       - db
       - cache
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20191104.3d0d7312/tests/OBSLocal.py 
new/openSUSE-release-tools-20191104.75836fec/tests/OBSLocal.py
--- old/openSUSE-release-tools-20191104.3d0d7312/tests/OBSLocal.py      
2019-11-04 09:53:43.000000000 +0100
+++ new/openSUSE-release-tools-20191104.75836fec/tests/OBSLocal.py      
2019-11-04 19:10:51.000000000 +0100
@@ -142,7 +142,14 @@
         THIS_DIR = os.path.dirname(os.path.abspath(__file__))
         oscrc = os.path.join(THIS_DIR, 'test.oscrc')
 
+        # set to None so we return the destructor early in case of exceptions
+        self.api = None
         self.apiurl = APIURL
+        self.project = project
+        self.projects = {}
+        self.requests = []
+        self.groups = []
+        self.users = []
         logging.basicConfig()
 
         # clear cache from other tests - otherwise the VCR is replayed 
depending
@@ -154,11 +161,7 @@
                                  override_no_gnome_keyring=True)
         if os.environ.get('OSC_DEBUG'):
             osc.core.conf.config['debug'] = 1
-        self.project = project
-        self.projects = {}
-        self.requests = []
-        self.groups = []
-        self.users = []
+
         CacheManager.test = True
         # disable caching, the TTLs break any reproduciblity
         Cache.CACHE_DIR = None
@@ -291,6 +294,8 @@
         return staging
 
     def __del__(self):
+        if not self.api:
+            return
         try:
             self.remove()
         except:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20191104.3d0d7312/tests/fixtures/oscrc 
new/openSUSE-release-tools-20191104.75836fec/tests/fixtures/oscrc
--- old/openSUSE-release-tools-20191104.3d0d7312/tests/fixtures/oscrc   
2019-11-04 09:53:43.000000000 +0100
+++ new/openSUSE-release-tools-20191104.75836fec/tests/fixtures/oscrc   
2019-11-04 19:10:51.000000000 +0100
@@ -103,4 +103,6 @@
 #keyring = 1
 
 [openSUSE:Factory]
+user=dummy
+pass=dummy
 overridden-by-local = local
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20191104.3d0d7312/tests/test.oscrc 
new/openSUSE-release-tools-20191104.75836fec/tests/test.oscrc
--- old/openSUSE-release-tools-20191104.3d0d7312/tests/test.oscrc       
2019-11-04 09:53:43.000000000 +0100
+++ new/openSUSE-release-tools-20191104.75836fec/tests/test.oscrc       
2019-11-04 19:10:51.000000000 +0100
@@ -7,5 +7,8 @@
 pass=opensuse
 
 [openSUSE:Factory]
+# https://github.com/openSUSE/osc/issues/667
+user=dummy
+pass=dummy
 overridden-by-local = local
 

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.PaDc1B/_old  2019-11-06 13:58:24.824302941 +0100
+++ /var/tmp/diff_new_pack.PaDc1B/_new  2019-11-06 13:58:24.824302941 +0100
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20191104.3d0d7312
-mtime: 1572857623
-commit: 3d0d7312126cd53c03cbc1a08f08782c338e916f
+version: 20191104.75836fec
+mtime: 1572891051
+commit: 75836fec70c1a48fb8833179bb74e0310cd4abf7
 


Reply via email to