Hello community, here is the log from the commit of package osc-plugin-collab for openSUSE:Factory checked in at 2013-07-01 15:58:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/osc-plugin-collab (Old) and /work/SRC/openSUSE:Factory/.osc-plugin-collab.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "osc-plugin-collab" Changes: -------- --- /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-plugin-collab.changes 2013-01-10 13:48:11.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.osc-plugin-collab.new/osc-plugin-collab.changes 2013-07-01 15:58:53.000000000 +0200 @@ -1,0 +2,6 @@ +Mon Jul 1 06:47:10 UTC 2013 - [email protected] + +- Update to version 0.97: + + Adapt code to osc's new plugin mechanism + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ osc-collab.py ++++++ --- /var/tmp/diff_new_pack.Qzxn4s/_old 2013-07-01 15:58:54.000000000 +0200 +++ /var/tmp/diff_new_pack.Qzxn4s/_new 2013-07-01 15:58:54.000000000 +0200 @@ -34,7 +34,9 @@ # Authors: Vincent Untz <[email protected]> # -OSC_COLLAB_VERSION = '0.96' +from osc import cmdln + +OSC_COLLAB_VERSION = '0.98' # This is a hack to have osc ignore the file we create in a package directory. _osc_collab_helper_prefixes = [ 'osc-collab.', 'osc-gnome.' ] @@ -43,14 +45,14 @@ for prefix in _osc_collab_helper_prefixes: _osc_collab_helpers.append(prefix + suffix) -try: - import conf - for helper in _osc_collab_helpers: - conf.DEFAULTS['exclude_glob'] += ' %s' % helper -except: - # compatibility with osc <= 0.121 - for helper in _osc_collab_helpers: - exclude_stuff.append(helper) +def init(): + try: + for helper in _osc_collab_helpers: + conf.DEFAULTS['exclude_glob'] += ' %s' % helper + except: + # compatibility with osc <= 0.121 + for helper in _osc_collab_helpers: + exclude_stuff.append(helper) class OscCollabError(Exception): @@ -3999,6 +4001,8 @@ #self.gref = self.gtime.time() #print "%.3f - %s" % (self.gtime.time()-self.gref, 'start') + init() + self._osc_collab_alias = self.lastcmd[0] if opts.version: -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
