Hello community,

here is the log from the commit of package osc for openSUSE:Factory
checked in at Thu Jul 7 14:33:27 CEST 2011.



--------
--- osc/osc.changes     2011-06-16 12:10:53.000000000 +0200
+++ /mounts/work_src_done/STABLE/osc/osc.changes        2011-07-07 
06:52:48.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul  7 04:51:09 UTC 2011 - adr...@suse.de
+
+- update to 0.132.5
+  * fix detection of project wide source service only
+  * crash fix on incident creation
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  osc-0.132.4.tar.gz

New:
----
  osc-0.132.5.tar.gz

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

Other differences:
------------------
++++++ osc.spec ++++++
--- /var/tmp/diff_new_pack.4JKHEr/_old  2011-07-07 14:32:28.000000000 +0200
+++ /var/tmp/diff_new_pack.4JKHEr/_new  2011-07-07 14:32:28.000000000 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           osc
-Version:        0.132.4
+Version:        0.132.5
 Release:        1
 License:        GPLv2+
 Summary:        openSUSE Build Service Commander

++++++ debian.changelog ++++++
--- /var/tmp/diff_new_pack.4JKHEr/_old  2011-07-07 14:32:28.000000000 +0200
+++ /var/tmp/diff_new_pack.4JKHEr/_new  2011-07-07 14:32:28.000000000 +0200
@@ -1,3 +1,8 @@
+osc (0.132.5-1) unstable; urgency=low
+  - Update to 0.132.5
+
+ -- Adrian Schroeter <adr...@suse.de>  Wed, 07 Jul 2011 10:00:00 +0200
+
 osc (0.132.4-1) unstable; urgency=low
   - Update to 0.132.4
 

++++++ osc-0.132.4.tar.gz -> osc-0.132.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-0.132.4/NEWS new/osc-0.132.5/NEWS
--- old/osc-0.132.4/NEWS        2011-06-15 14:19:07.000000000 +0200
+++ new/osc-0.132.5/NEWS        2011-07-07 06:48:38.000000000 +0200
@@ -1,4 +1,6 @@
-0.133
+
+0.132.1
+  - backward compatibility fix for OBS 2.1 and before
   - add --meta option also to "list", "cat" and "less" commands
 
 0.132
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-0.132.4/osc/commandline.py 
new/osc-0.132.5/osc/commandline.py
--- old/osc-0.132.4/osc/commandline.py  2011-06-15 14:19:07.000000000 +0200
+++ new/osc-0.132.5/osc/commandline.py  2011-07-07 06:48:29.000000000 +0200
@@ -2530,7 +2530,7 @@
             raise oscerr.WrongArgs('Too many arguments.')
 
         if len(args) == 1:
-            target_project = args[1]
+            target_project = args[0]
         else:
             xpath = 'attribute/@name = \'%s\'' % maintenance_attribute
             res = search(apiurl, project_id=xpath)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-0.132.4/osc/core.py new/osc-0.132.5/osc/core.py
--- old/osc-0.132.4/osc/core.py 2011-06-15 14:19:07.000000000 +0200
+++ new/osc-0.132.5/osc/core.py 2011-07-07 06:49:03.000000000 +0200
@@ -3,7 +3,7 @@
 # and distributed under the terms of the GNU General Public Licence,
 # either version 2, or version 3 (at your option).
 
-__version__ = '0.132git'
+__version__ = '0.132.5'
 
 # __store_version__ is to be incremented when the format of the working copy
 # "store" changes in an incompatible way. Please add any needed migration
@@ -1328,21 +1328,25 @@
 
         print_request_list(self.apiurl, self.prjname, self.name)
 
-        if self.findfilebyname("_service"):
-            print 'Waiting for server side source service run',
-            u = makeurl(self.apiurl, ['source', self.prjname, self.name])
-            while 1:
-                f = http_GET(u)
-                sfilelist = ET.parse(f).getroot()
-                s = sfilelist.find('serviceinfo')
-                if s != None and s.get('code') == "running":
-                   sys.stdout.write('.')
-                   sys.stdout.flush()
-                else:
-                   break
-            print ""
-            rev=self.latest_rev()
-            self.update(rev=rev)
+        u = makeurl(self.apiurl, ['source', self.prjname, self.name])
+        first_run = True
+        while 1:
+            f = http_GET(u)
+            sfilelist = ET.parse(f).getroot()
+            s = sfilelist.find('serviceinfo')
+            if s == None:
+               break
+            if first_run:
+               print 'Waiting for server side source service run',
+               first_run = False
+            if s.get('code') == "running":
+               sys.stdout.write('.')
+               sys.stdout.flush()
+            else:
+               break
+        print ""
+        rev=self.latest_rev()
+        self.update(rev=rev)
             
 
     def __write_storelist(self, name, data):

++++++ osc.dsc ++++++
--- /var/tmp/diff_new_pack.4JKHEr/_old  2011-07-07 14:32:28.000000000 +0200
+++ /var/tmp/diff_new_pack.4JKHEr/_new  2011-07-07 14:32:28.000000000 +0200
@@ -1,6 +1,6 @@
 Format: 1.0
 Source: osc
-Version: 0.132.4
+Version: 0.132.5
 Binary: osc
 Maintainer: Adrian Schroeter <adr...@suse.de>
 Architecture: any


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



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to