Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package osc-plugin-collab for 
openSUSE:Factory checked in at 2023-02-22 15:21:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/osc-plugin-collab (Old)
 and      /work/SRC/openSUSE:Factory/.osc-plugin-collab.new.1706 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "osc-plugin-collab"

Wed Feb 22 15:21:55 2023 rev:21 rq:1067139 version:0.104+26

Changes:
--------
--- /work/SRC/openSUSE:Factory/osc-plugin-collab/osc-plugin-collab.changes      
2022-01-11 21:24:37.285184685 +0100
+++ 
/work/SRC/openSUSE:Factory/.osc-plugin-collab.new.1706/osc-plugin-collab.changes
    2023-02-22 15:21:58.733994798 +0100
@@ -1,0 +2,13 @@
+Wed Feb 22 11:31:59 UTC 2023 - dims...@opensuse.org
+
+- Update to version 0.104+26:
+  * Re-implement filedir_to_pac as this was dropped in osc 1.0
+
+-------------------------------------------------------------------
+Tue Feb 21 22:54:48 UTC 2023 - mc...@suse.com
+
+- Update to version 0.104+24:
+  * No longer support being calles as 'osc gnome'
+  * Track GNOME 41 for Leap 15.4 and SLE15SP4
+
+-------------------------------------------------------------------

Old:
----
  osc-plugin-collab-0.104+20.obscpio

New:
----
  osc-plugin-collab-0.104+26.obscpio

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

Other differences:
------------------
++++++ osc-plugin-collab.spec ++++++
--- /var/tmp/diff_new_pack.O6MCEw/_old  2023-02-22 15:21:59.149997158 +0100
+++ /var/tmp/diff_new_pack.O6MCEw/_new  2023-02-22 15:21:59.149997158 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package osc-plugin-collab
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 # Copyright (c) 2009 Vincent Untz <vu...@opensuse.org>
 #
 # All modifications and additions to the file contributed by third parties
@@ -23,7 +23,7 @@
 %define oscplugindir %{_localstatedir}/lib/osc-plugins
 %endif
 Name:           osc-plugin-collab
-Version:        0.104+20
+Version:        0.104+26
 Release:        0
 Summary:        Plugin to make collaboration easier with osc
 License:        BSD-3-Clause

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.O6MCEw/_old  2023-02-22 15:21:59.193997407 +0100
+++ /var/tmp/diff_new_pack.O6MCEw/_new  2023-02-22 15:21:59.197997430 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/openSUSE/osc-plugin-collab.git</param>
-              <param 
name="changesrevision">47722dc77c9cca282e7abf1642b314aa76a3a4b2</param></service></servicedata>
+              <param 
name="changesrevision">04ff35f55b7d4358e04d2a6b0ce67144f9e5f426</param></service></servicedata>
 (No newline at EOF)
 

++++++ osc-plugin-collab-0.104+20.obscpio -> osc-plugin-collab-0.104+26.obscpio 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/osc-plugin-collab-0.104+20/osc-collab.py 
new/osc-plugin-collab-0.104+26/osc-collab.py
--- old/osc-plugin-collab-0.104+20/osc-collab.py        2022-01-11 
18:55:50.000000000 +0100
+++ new/osc-plugin-collab-0.104+26/osc-collab.py        2023-02-22 
08:55:32.000000000 +0100
@@ -88,6 +88,18 @@
 _osc_collab_config_parser = None
 _osc_collab_osc_conffile = None
 
+def filedir_to_pac(f, progress_obj=None):
+    """Takes a working copy path, or a path to a file inside a working copy,
+    and returns a Package object instance
+    If the argument was a filename, add it onto the "todo" list of the Package 
"""
+    if os.path.isdir(f):
+        wd = f
+        p = Package(wd, progress_obj=progress_obj)
+    else:
+        wd = os.path.dirname(f) or os.curdir
+        p = Package(wd, progress_obj=progress_obj)
+        p.todo = [ os.path.basename(f) ]
+    return p
 
 class OscCollabError(Exception):
     def __init__(self, value):
@@ -3955,7 +3967,7 @@
     global _osc_collab_alias
     global _osc_collab_osc_conffile
 
-    _osc_collab_alias = self.lastcmd[0]
+    _osc_collab_alias = 'collab'
 
     if opts.version:
         print(OSC_COLLAB_VERSION)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/osc-plugin-collab-0.104+20/server/obs-db/data/opensuse.conf 
new/osc-plugin-collab-0.104+26/server/obs-db/data/opensuse.conf
--- old/osc-plugin-collab-0.104+20/server/obs-db/data/opensuse.conf     
2022-01-11 18:55:50.000000000 +0100
+++ new/osc-plugin-collab-0.104+26/server/obs-db/data/opensuse.conf     
2023-02-22 08:55:32.000000000 +0100
@@ -24,6 +24,10 @@
 [Project GNOME:Next]
 branches = gnome-unstable, gnome-unstable-extras
 
+# For Leap 15.4 / SLE15SP4
+[Project GNOME:STABLE:41]
+branches = gnome-41, gnome-41-extras
+
 # For Leap 15.2 / SLE15SP2
 [Project GNOME:STABLE:3.34]
 branches = gnome-3.34, gnome-3.34-extras

++++++ osc-plugin-collab.obsinfo ++++++
--- /var/tmp/diff_new_pack.O6MCEw/_old  2023-02-22 15:21:59.361998360 +0100
+++ /var/tmp/diff_new_pack.O6MCEw/_new  2023-02-22 15:21:59.365998383 +0100
@@ -1,5 +1,5 @@
 name: osc-plugin-collab
-version: 0.104+20
-mtime: 1641923750
-commit: 47722dc77c9cca282e7abf1642b314aa76a3a4b2
+version: 0.104+26
+mtime: 1677052532
+commit: 04ff35f55b7d4358e04d2a6b0ce67144f9e5f426
 

Reply via email to