commit osc-plugin-collab for openSUSE:Factory

2019-10-07 Thread root
Hello community,

here is the log from the commit of package osc-plugin-collab for 
openSUSE:Factory checked in at 2019-10-07 13:46:50

Comparing /work/SRC/openSUSE:Factory/osc-plugin-collab (Old)
 and  /work/SRC/openSUSE:Factory/.osc-plugin-collab.new.2352 (New)


Package is "osc-plugin-collab"

Mon Oct  7 13:46:50 2019 rev:14 rq:735539 version:0.103

Changes:

--- /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-plugin-collab.changes  
2019-09-20 14:51:41.842900515 +0200
+++ 
/work/SRC/openSUSE:Factory/.osc-plugin-collab.new.2352/osc-plugin-collab.changes
2019-10-07 14:14:07.170889245 +0200
@@ -1,0 +2,9 @@
+Sun Oct  6 17:35:09 UTC 2019 - vu...@opensuse.org
+
+- Update to version 0.103:
+  + Call time.tzset() after changing the timezone (#53)
+  + Fix python2 compatibility (#49)
+- Fix packaging for new versions of Fedora that don't include
+  .pyc/.pyo files
+
+---



Other differences:
--
++ osc-plugin-collab.spec ++
--- /var/tmp/diff_new_pack.PxiEFM/_old  2019-10-07 14:14:07.534888246 +0200
+++ /var/tmp/diff_new_pack.PxiEFM/_new  2019-10-07 14:14:07.534888246 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   osc-plugin-collab
-Version:0.102
+Version:0.103
 Release:0
 Summary:Plugin to make collaboration easier with osc
 License:BSD-3-Clause
@@ -64,10 +64,6 @@
 
 %files
 %defattr(-, root, root)
-%{oscplugindir}/osc-collab.py
-%if 0%{?fedora} || 0%{?rhel_version} || 0%{?centos_version}
-%{oscplugindir}/osc-collab.pyc
-%{oscplugindir}/osc-collab.pyo
-%endif
+%{oscplugindir}/osc-collab.py*
 
 %changelog

++ osc-collab.py ++
--- /var/tmp/diff_new_pack.PxiEFM/_old  2019-10-07 14:14:07.55180 +0200
+++ /var/tmp/diff_new_pack.PxiEFM/_new  2019-10-07 14:14:07.55180 +0200
@@ -34,6 +34,8 @@
 # Authors: Vincent Untz 
 #
 
+from __future__ import print_function
+
 import difflib
 import locale
 import re
@@ -69,7 +71,7 @@
 from osc import conf
 
 
-OSC_COLLAB_VERSION = '0.102'
+OSC_COLLAB_VERSION = '0.103'
 
 # This is a hack to have osc ignore the file we create in a package directory.
 _osc_collab_helper_prefixes = [ 'osc-collab.', 'osc-gnome.' ]
@@ -2501,6 +2503,7 @@
 old_tz = os.getenv('TZ')
 locale.setlocale(locale.LC_TIME, 'C')
 os.putenv('TZ', 'UTC')
+time.tzset()
 
 os.write(fdout, 
b'---\n')
 write_line = '%s - %s\n' % (time.strftime("%a %b %e %H:%M:%S %Z %Y"), 
email)
@@ -2516,6 +2519,7 @@
 os.putenv('TZ', old_tz)
 else:
 os.unsetenv('TZ')
+time.tzset()
 
 fin = open(changes_file, 'r')
 while True:




commit osc-plugin-collab for openSUSE:Factory

2019-09-20 Thread root
Hello community,

here is the log from the commit of package osc-plugin-collab for 
openSUSE:Factory checked in at 2019-09-20 14:51:40

Comparing /work/SRC/openSUSE:Factory/osc-plugin-collab (Old)
 and  /work/SRC/openSUSE:Factory/.osc-plugin-collab.new.7948 (New)


Package is "osc-plugin-collab"

Fri Sep 20 14:51:40 2019 rev:13 rq:731760 version:0.102

Changes:

--- /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-plugin-collab.changes  
2019-05-03 22:47:59.907985732 +0200
+++ 
/work/SRC/openSUSE:Factory/.osc-plugin-collab.new.7948/osc-plugin-collab.changes
2019-09-20 14:51:41.842900515 +0200
@@ -1,0 +2,7 @@
+Wed Sep 11 14:17:25 UTC 2019 - vu...@opensuse.org
+
+- Update to version 0.102:
+  + Fix configuring on python3
+  + Fix another str vs. bytes issue
+
+---



Other differences:
--
++ osc-plugin-collab.spec ++
--- /var/tmp/diff_new_pack.9yNsD1/_old  2019-09-20 14:51:42.386900407 +0200
+++ /var/tmp/diff_new_pack.9yNsD1/_new  2019-09-20 14:51:42.394900405 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   osc-plugin-collab
-Version:0.101
+Version:0.102
 Release:0
 Summary:Plugin to make collaboration easier with osc
 License:BSD-3-Clause

++ osc-collab.py ++
--- /var/tmp/diff_new_pack.9yNsD1/_old  2019-09-20 14:51:42.438900396 +0200
+++ /var/tmp/diff_new_pack.9yNsD1/_new  2019-09-20 14:51:42.442900396 +0200
@@ -69,7 +69,7 @@
 from osc import conf
 
 
-OSC_COLLAB_VERSION = '0.101'
+OSC_COLLAB_VERSION = '0.102'
 
 # This is a hack to have osc ignore the file we create in a package directory.
 _osc_collab_helper_prefixes = [ 'osc-collab.', 'osc-gnome.' ]
@@ -2502,14 +2502,14 @@
 locale.setlocale(locale.LC_TIME, 'C')
 os.putenv('TZ', 'UTC')
 
-os.write(fdout, 
'---\n'.encode('utf-8'))
+os.write(fdout, 
b'---\n')
 write_line = '%s - %s\n' % (time.strftime("%a %b %e %H:%M:%S %Z %Y"), 
email)
 os.write(fdout, write_line.encode('utf-8'))
-os.write(fdout, '\n'.encode('utf-8'))
+os.write(fdout, b'\n')
 write_line = '- Update to version %s:\n' % upstream_version
 os.write(fdout, write_line.encode('utf-8'))
-os.write(fdout, '  + \n'.encode('utf-8'))
-os.write(fdout, '\n'.encode('utf-8'))
+os.write(fdout, b'  + \n')
+os.write(fdout, b'\n')
 
 locale.setlocale(locale.LC_TIME, old_lc_time)
 if old_tz:
@@ -3619,8 +3619,9 @@
 # key was not in the section: let's add it
 elif line[0] == '[' and in_section and not added:
 if not empty_line:
-os.write(fdout, '\n')
-os.write(fdout, '%s = %s\n\n' % (key, value))
+os.write(fdout, b'\n')
+write_line = '%s = %s\n\n' % (key, value)
+os.write(fdout, write_line.encode('utf-8'))
 added = True
 in_section = False
 elif line[0] == '[' and in_section:
@@ -3633,16 +3634,18 @@
 line = '%s= %s\n' % (line[:index], value)
 added = True
 
-os.write(fdout, line)
+os.write(fdout, line.encode('utf-8'))
 
 empty_line = line.strip() == ''
 
 if not added:
 if not empty_line:
-os.write(fdout, '\n')
+os.write(fdout, b'\n')
 if not in_section:
-os.write(fdout, '[%s]\n' % (section,))
-os.write(fdout, '%s = %s\n' % (key, value))
+write_line = '[%s]\n' % (section,)
+os.write(fdout, write_line.encode('utf-8'))
+write_line = '%s = %s\n' % (key, value)
+os.write(fdout, write_line.encode('utf-8'))
 
 os.close(fdout)
 os.rename(tmp, conffile)




commit osc-plugin-collab for openSUSE:Factory

2019-05-03 Thread root
Hello community,

here is the log from the commit of package osc-plugin-collab for 
openSUSE:Factory checked in at 2019-05-03 22:47:58

Comparing /work/SRC/openSUSE:Factory/osc-plugin-collab (Old)
 and  /work/SRC/openSUSE:Factory/.osc-plugin-collab.new.5148 (New)


Package is "osc-plugin-collab"

Fri May  3 22:47:58 2019 rev:12 rq:700399 version:0.101

Changes:

--- /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-plugin-collab.changes  
2019-03-22 15:09:22.349390442 +0100
+++ 
/work/SRC/openSUSE:Factory/.osc-plugin-collab.new.5148/osc-plugin-collab.changes
2019-05-03 22:47:59.907985732 +0200
@@ -1,0 +2,7 @@
+Fri May  3 14:26:17 UTC 2019 - vu...@opensuse.org
+
+- Update to version 0.101:
+  + Port to python3
+  + Use https on the server
+
+---



Other differences:
--
++ osc-plugin-collab.spec ++
--- /var/tmp/diff_new_pack.SxSric/_old  2019-05-03 22:48:00.295986623 +0200
+++ /var/tmp/diff_new_pack.SxSric/_new  2019-05-03 22:48:00.299986632 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   osc-plugin-collab
-Version:0.100
+Version:0.101
 Release:0
 Summary:Plugin to make collaboration easier with osc
 License:BSD-3-Clause

++ osc-collab.py ++
 1559 lines (skipped)
 between /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-collab.py
 and /work/SRC/openSUSE:Factory/.osc-plugin-collab.new.5148/osc-collab.py




commit osc-plugin-collab for openSUSE:Factory

2019-03-22 Thread root
Hello community,

here is the log from the commit of package osc-plugin-collab for 
openSUSE:Factory checked in at 2019-03-22 15:09:16

Comparing /work/SRC/openSUSE:Factory/osc-plugin-collab (Old)
 and  /work/SRC/openSUSE:Factory/.osc-plugin-collab.new.25356 (New)


Package is "osc-plugin-collab"

Fri Mar 22 15:09:16 2019 rev:11 rq:687309 version:0.100

Changes:

--- /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-plugin-collab.changes  
2017-11-20 17:06:28.159453126 +0100
+++ 
/work/SRC/openSUSE:Factory/.osc-plugin-collab.new.25356/osc-plugin-collab.changes
   2019-03-22 15:09:22.349390442 +0100
@@ -1,0 +2,6 @@
+Thu Mar 21 12:20:27 UTC 2019 - vu...@opensuse.org
+
+- Update to version 0.100:
+  + Support new location for oscrc in ~/.config/osc/
+
+---



Other differences:
--
++ osc-plugin-collab.spec ++
--- /var/tmp/diff_new_pack.OKBXWz/_old  2019-03-22 15:09:22.885389978 +0100
+++ /var/tmp/diff_new_pack.OKBXWz/_new  2019-03-22 15:09:22.889389974 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package osc-plugin-collab
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2009 Vincent Untz 
 #
 # All modifications and additions to the file contributed by third parties
@@ -13,12 +13,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   osc-plugin-collab
-Version:0.99
+Version:0.100
 Release:0
 Summary:Plugin to make collaboration easier with osc
 License:BSD-3-Clause

++ osc-collab.py ++
--- /var/tmp/diff_new_pack.OKBXWz/_old  2019-03-22 15:09:22.909389957 +0100
+++ /var/tmp/diff_new_pack.OKBXWz/_new  2019-03-22 15:09:22.909389957 +0100
@@ -59,7 +59,7 @@
 from osc import conf
 
 
-OSC_COLLAB_VERSION = '0.99'
+OSC_COLLAB_VERSION = '0.100'
 
 # This is a hack to have osc ignore the file we create in a package directory.
 _osc_collab_helper_prefixes = [ 'osc-collab.', 'osc-gnome.' ]
@@ -3965,7 +3965,10 @@
 
 # See get_config() in osc/conf.py and postoptparse() in
 # osc/commandline.py
-conffile = self.options.conffile or os.environ.get('OSC_CONFIG', 
'~/.oscrc')
+if self.options.conffile:
+conffile = self.options.conffile
+else:
+conffile = conf.identify_conf()
 _osc_collab_osc_conffile = os.path.expanduser(conffile)
 
 _collab_migrate_gnome_config(apiurl)




commit osc-plugin-collab for openSUSE:Factory

2017-11-20 Thread root
Hello community,

here is the log from the commit of package osc-plugin-collab for 
openSUSE:Factory checked in at 2017-11-20 17:05:22

Comparing /work/SRC/openSUSE:Factory/osc-plugin-collab (Old)
 and  /work/SRC/openSUSE:Factory/.osc-plugin-collab.new (New)


Package is "osc-plugin-collab"

Mon Nov 20 17:05:22 2017 rev:10 rq:542924 version:0.99

Changes:

--- /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-plugin-collab.changes  
2013-07-21 16:34:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.osc-plugin-collab.new/osc-plugin-collab.changes 
2017-11-20 17:06:28.159453126 +0100
@@ -1,0 +2,6 @@
+Sat Nov 18 21:48:54 UTC 2017 - zai...@opensuse.org
+
+- Update to version 0.99:
+  + Support diff in meson buildsystem based packages.
+
+---



Other differences:
--
++ osc-plugin-collab.spec ++
--- /var/tmp/diff_new_pack.4DnK0A/_old  2017-11-20 17:06:29.179416199 +0100
+++ /var/tmp/diff_new_pack.4DnK0A/_new  2017-11-20 17:06:29.183416055 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package osc-plugin-collab
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2009 Vincent Untz 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   osc-plugin-collab
-Version:0.98
+Version:0.99
 Release:0
 Summary:Plugin to make collaboration easier with osc
 License:BSD-3-Clause

++ osc-collab.py ++
--- /var/tmp/diff_new_pack.4DnK0A/_old  2017-11-20 17:06:29.219414751 +0100
+++ /var/tmp/diff_new_pack.4DnK0A/_new  2017-11-20 17:06:29.219414751 +0100
@@ -59,12 +59,12 @@
 from osc import conf
 
 
-OSC_COLLAB_VERSION = '0.98'
+OSC_COLLAB_VERSION = '0.99'
 
 # This is a hack to have osc ignore the file we create in a package directory.
 _osc_collab_helper_prefixes = [ 'osc-collab.', 'osc-gnome.' ]
 _osc_collab_helpers = []
-for suffix in [ 'NEWS', 'ChangeLog', 'configure' ]:
+for suffix in [ 'NEWS', 'ChangeLog', 'configure', 'meson', 'meson_options' ]:
 for prefix in _osc_collab_helper_prefixes:
 _osc_collab_helpers.append(prefix + suffix)
 for helper in _osc_collab_helpers:
@@ -2223,10 +2223,10 @@
 try:
 if old:
 err_tarball = os.path.basename(old_tarball)
-_extract_files (old, old_dir, ['NEWS', 'ChangeLog', 
'configure.ac', 'configure.in'])
+_extract_files (old, old_dir, ['NEWS', 'ChangeLog', 
'configure.ac', 'configure.in', 'meson.build', 'meson_options.txt'])
 
 err_tarball = new_tarball_basename
-_extract_files (new, new_dir, ['NEWS', 'ChangeLog', 'configure.ac', 
'configure.in'])
+_extract_files (new, new_dir, ['NEWS', 'ChangeLog', 'configure.ac', 
'configure.in', 'meson.build', 'meson_options.txt'])
 except (tarfile.ReadError, EOFError):
 _cleanup(old, new, tmpdir)
 raise OscCollabDiffError('Cannot extract useful diff between tarballs: 
%s is not a valid tarball.' % err_tarball)
@@ -2264,8 +2264,14 @@
 new_configure = os.path.join(new_subdir, 'configure.in')
 if not os.path.exists(new_configure) or not 
os.path.isfile(new_configure):
 new_configure = None
+new_meson = os.path.join(new_subdir, 'meson.build')
+if not os.path.exists(new_meson) or not os.path.isfile(new_meson):
+new_meson = None
+new_mesonopt = os.path.join(new_subdir, 'meson_options.txt')
+if not os.path.exists(new_mesonopt) or not os.path.isfile(new_mesonopt):
+new_mesonopt = None
 
-if not new_news and not new_changelog and not new_configure:
+if not new_news and not new_changelog and not new_configure and not 
new_meson and not new_mesonopt:
 _cleanup(old, new, tmpdir)
 raise OscCollabDiffError('Cannot extract useful diff between tarballs: 
no relevant files found in %s.' % new_tarball_basename)
 
@@ -2274,6 +2280,8 @@
 old_news = None
 old_changelog = None
 old_configure = None
+old_meson = None
+old_mesonopt = None
 
 if os.path.exists(old_dir):
 old_dir_files = os.listdir(old_dir)
@@ -2294,7 +2302,12 @@
 old_configure = os.path.join(old_subdir, 'configure.in')
 if not os.path.exists(old_configure) or not 
os.path.isfile(old_configure):
 old_configure = None
-
+old_meson = os.path.join(old_subdir, 'meson.build')
+if not os.path.exists(old_meson) or not os.path.isfile(old_meson):
+old_meson = None
+old_mesonopt = os.path.join(old_subdir, 'meson_options.txt')
+if not os.path.exists(old_mesonopt) or not 
os.path.isfil

commit osc-plugin-collab for openSUSE:Factory

2013-07-21 Thread h_root
Hello community,

here is the log from the commit of package osc-plugin-collab for 
openSUSE:Factory checked in at 2013-07-21 16:34:34

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-07-01 15:58:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.osc-plugin-collab.new/osc-plugin-collab.changes 
2013-07-21 16:34:36.0 +0200
@@ -1,0 +2,9 @@
+Sun Jul 21 08:30:24 UTC 2013 - vu...@opensuse.org
+
+- Update to version 0.98:
+  + Really port plugin to osc >= 0.140.1
+  + Remove compatibility code with very old versions of osc
+- Update Requires on osc to be versioned, since this now really
+  only works with a recent version of osc.
+
+---



Other differences:
--
++ osc-plugin-collab.spec ++
--- /var/tmp/diff_new_pack.6psW7j/_old  2013-07-21 16:34:37.0 +0200
+++ /var/tmp/diff_new_pack.6psW7j/_new  2013-07-21 16:34:37.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   osc-plugin-collab
-Version:0.96
+Version:0.98
 Release:0
 Summary:Plugin to make collaboration easier with osc
 License:BSD-3-Clause
@@ -27,7 +27,7 @@
 Source0:osc-collab.py
 # Needed for directory ownership
 BuildRequires:  osc
-Requires:   osc
+Requires:   osc >= 0.140.1
 %if !(0%{?fedora} || 0%{?rhel_version} || 0%{?centos_version} || 
0%{?scientificlinux_version})
 Recommends: quilt
 Recommends: rpm-python

++ osc-collab.py ++
 2267 lines (skipped)
 between /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-collab.py
 and /work/SRC/openSUSE:Factory/.osc-plugin-collab.new/osc-collab.py

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



commit osc-plugin-collab for openSUSE:Factory

2013-07-01 Thread h_root
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.0 +0100
+++ /work/SRC/openSUSE:Factory/.osc-plugin-collab.new/osc-plugin-collab.changes 
2013-07-01 15:58:53.0 +0200
@@ -1,0 +2,6 @@
+Mon Jul  1 06:47:10 UTC 2013 - vu...@opensuse.org
+
+- 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.0 +0200
+++ /var/tmp/diff_new_pack.Qzxn4s/_new  2013-07-01 15:58:54.0 +0200
@@ -34,7 +34,9 @@
 # Authors: Vincent Untz 
 #
 
-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: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit osc-plugin-collab for openSUSE:Factory

2013-01-10 Thread h_root
Hello community,

here is the log from the commit of package osc-plugin-collab for 
openSUSE:Factory checked in at 2013-01-10 13:48:09

Comparing /work/SRC/openSUSE:Factory/osc-plugin-collab (Old)
 and  /work/SRC/openSUSE:Factory/.osc-plugin-collab.new (New)


Package is "osc-plugin-collab", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-plugin-collab.changes  
2013-01-08 14:40:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.osc-plugin-collab.new/osc-plugin-collab.changes 
2013-01-10 13:48:11.0 +0100
@@ -1,0 +2,10 @@
+Thu Jan 10 08:41:16 UTC 2013 - vu...@opensuse.org
+
+- Make build noarch.
+- Fix build on Fedora/RHEL/CentOS/ScientificLinux:
+  + Use Requires instead of Recommends since there are no
+Recommends there.
+  + Package .pyc/.pyo files following the Fedora packaging policy
+(except for ScientificLinux, which doesn't do that).
+
+---



Other differences:
--
++ osc-plugin-collab.spec ++
--- /var/tmp/diff_new_pack.Y3weBG/_old  2013-01-10 13:48:12.0 +0100
+++ /var/tmp/diff_new_pack.Y3weBG/_new  2013-01-10 13:48:12.0 +0100
@@ -28,12 +28,19 @@
 # Needed for directory ownership
 BuildRequires:  osc
 Requires:   osc
+%if !(0%{?fedora} || 0%{?rhel_version} || 0%{?centos_version} || 
0%{?scientificlinux_version})
 Recommends: quilt
 Recommends: rpm-python
 Recommends: xz
+%else
+Requires:   quilt
+Requires:   rpm-python
+Requires:   xz
+%endif
 # osc gnome was part of osc-plugins-gnome
 Conflicts:  osc-plugins-gnome <= 0.4.26
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildArch:  noarch
 %if %(if test -d %{_prefix}/lib/osc-plugins; then echo 1; else echo 0; fi)
 %define oscplugindir %{_prefix}/lib/osc-plugins
 %else
@@ -58,5 +65,9 @@
 %files
 %defattr(-, root, root)
 %{oscplugindir}/osc-collab.py
+%if 0%{?fedora} || 0%{?rhel_version} || 0%{?centos_version}
+%{oscplugindir}/osc-collab.pyc
+%{oscplugindir}/osc-collab.pyo
+%endif
 
 %changelog

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



commit osc-plugin-collab for openSUSE:Factory

2013-01-08 Thread h_root
Hello community,

here is the log from the commit of package osc-plugin-collab for 
openSUSE:Factory checked in at 2013-01-08 14:40:14

Comparing /work/SRC/openSUSE:Factory/osc-plugin-collab (Old)
 and  /work/SRC/openSUSE:Factory/.osc-plugin-collab.new (New)


Package is "osc-plugin-collab", Maintainer is ""

Changes:

--- /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-plugin-collab.changes  
2012-06-14 22:26:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.osc-plugin-collab.new/osc-plugin-collab.changes 
2013-01-08 14:40:15.0 +0100
@@ -1,0 +2,6 @@
+Mon Jan  7 14:01:54 UTC 2013 - vu...@opensuse.org
+
+- Update to version 0.96:
+  + Use new collab server.
+
+---



Other differences:
--
++ osc-plugin-collab.spec ++
--- /var/tmp/diff_new_pack.f41yjM/_old  2013-01-08 14:40:16.0 +0100
+++ /var/tmp/diff_new_pack.f41yjM/_new  2013-01-08 14:40:16.0 +0100
@@ -1,6 +1,7 @@
 #
 # spec file for package osc-plugin-collab
 #
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2009 Vincent Untz 
 #
 # All modifications and additions to the file contributed by third parties
@@ -15,14 +16,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   osc-plugin-collab
-Version:0.95
-Release:1
-License:BSD 3-Clause
+Version:0.96
+Release:0
 Summary:Plugin to make collaboration easier with osc
+License:BSD-3-Clause
+Group:  Development/Tools/Other
 Url:http://en.opensuse.org/openSUSE:Osc_Collab
 Source0:osc-collab.py
-Group:  Development/Tools/Other
 # Needed for directory ownership
 BuildRequires:  osc
 Requires:   osc

++ osc-collab.py ++
--- /var/tmp/diff_new_pack.f41yjM/_old  2013-01-08 14:40:16.0 +0100
+++ /var/tmp/diff_new_pack.f41yjM/_new  2013-01-08 14:40:16.0 +0100
@@ -749,7 +749,7 @@
 
 class OscCollabApi:
 
-_api_url = 'http://tmp.vuntz.net/opensuse-packages/api'
+_api_url = 'http://osc-collab.opensuse.org/api'
 _supported_api = '0.2'
 _supported_api_major = '0'
 

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