Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2019-05-27 08:40:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Mon May 27 08:40:08 2019 rev:182 rq:705487 version:20190524.65b73f1d

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2019-05-25 13:21:03.696318118 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.5148/openSUSE-release-tools.changes
  2019-05-27 08:40:15.539027151 +0200
@@ -1,0 +2,15 @@
+Fri May 24 19:59:27 UTC 2019 - [email protected]
+
+- Update to version 20190524.65b73f1d:
+  * userscript/staging*: only utilize the last two domain components.
+  * osclib/core: package_version(): drop lxml element and return string 
version.
+  * systemd: increase timeout to 24 hours for origin-manager report services.
+
+-------------------------------------------------------------------
+Fri May 24 19:52:42 UTC 2019 - [email protected]
+
+- Update to version 20190524.86919f96:
+  * README: Add explanation of developing against git osc.
+  * .gitignore: ignore osc symlink commonly used to develop against 
pre-release osc.
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20190524.fa2a17cf.obscpio

New:
----
  openSUSE-release-tools-20190524.65b73f1d.obscpio

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

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.ekRSSi/_old  2019-05-27 08:40:18.783025886 +0200
+++ /var/tmp/diff_new_pack.ekRSSi/_new  2019-05-27 08:40:18.807025877 +0200
@@ -20,7 +20,7 @@
 %define source_dir openSUSE-release-tools
 %define announcer_filename factory-package-news
 Name:           openSUSE-release-tools
-Version:        20190524.fa2a17cf
+Version:        20190524.65b73f1d
 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.ekRSSi/_old  2019-05-27 08:40:18.971025813 +0200
+++ /var/tmp/diff_new_pack.ekRSSi/_new  2019-05-27 08:40:18.975025811 +0200
@@ -1,6 +1,6 @@
 <servicedata>
   <service name="tar_scm">
     <param 
name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param>
-    <param 
name="changesrevision">5d13e07b5a71b808c3ed1668be5d92065a288380</param>
+    <param 
name="changesrevision">65b73f1d416e9a7cdc337902c7aec744f4d2d334</param>
   </service>
 </servicedata>

++++++ openSUSE-release-tools-20190524.fa2a17cf.obscpio -> 
openSUSE-release-tools-20190524.65b73f1d.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openSUSE-release-tools-20190524.fa2a17cf/README.md 
new/openSUSE-release-tools-20190524.65b73f1d/README.md
--- old/openSUSE-release-tools-20190524.fa2a17cf/README.md      2019-05-24 
12:24:49.000000000 +0200
+++ new/openSUSE-release-tools-20190524.65b73f1d/README.md      2019-05-24 
21:57:50.000000000 +0200
@@ -42,6 +42,18 @@
 
     ln -sr ./osc-staging.py ./osclib ~/.osc-plugins
 
+It can also be useful to work against a development copy of `osc` either to 
utilize new features or to debug/fix functionality. To do so one must place the 
development copy in the path to be loaded and utilize the wrapper script if 
working on `osc` plugins. One method to accomplish this is shown below.
+
+    # outside of openSUSE-release-tools checkout
+    git clone git clone https://github.com/openSUSE/osc.git
+
+    # inside openSUSE-release-tools checkout
+    # note the ending /osc which points to the osc directory within the 
checkout
+    ln -s /path/to/osc/osc ./
+
+    # to utilize the wrapper for working on osc plugins from osrt checkout
+    $(realpath ./osc)/../osc-wrapper.py --version
+
 A containerized OBS can be started via one command. The default credentials 
are `Admin` and `opensuse` on [0.0.0.0:3000](http://0.0.0.0:3000).
 
     ./dist/ci/docker-compose-obs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20190524.fa2a17cf/osclib/core.py 
new/openSUSE-release-tools-20190524.65b73f1d/osclib/core.py
--- old/openSUSE-release-tools-20190524.fa2a17cf/osclib/core.py 2019-05-24 
12:24:49.000000000 +0200
+++ new/openSUSE-release-tools-20190524.65b73f1d/osclib/core.py 2019-05-24 
21:57:50.000000000 +0200
@@ -642,7 +642,7 @@
 
         raise e
 
-    return root.xpath('(//version)[last()]/text()')[0]
+    return str(root.xpath('(//version)[last()]/text()')[0])
 
 def project_attribute_list(apiurl, attribute, value=None):
     xpath = 'attribute/@name="{}"'.format(attribute)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20190524.fa2a17cf/systemd/[email protected]
 
new/openSUSE-release-tools-20190524.65b73f1d/systemd/[email protected]
--- 
old/openSUSE-release-tools-20190524.fa2a17cf/systemd/[email protected]
       2019-05-24 12:24:49.000000000 +0200
+++ 
new/openSUSE-release-tools-20190524.65b73f1d/systemd/[email protected]
       2019-05-24 21:57:50.000000000 +0200
@@ -5,7 +5,7 @@
 User=osrt-obs-operator
 SyslogIdentifier=osrt-obs-operator-origin-manager
 ExecStart=/usr/bin/osc origin -p "%i" report --force-refresh
-RuntimeMaxSec=12 hour
+RuntimeMaxSec=24 hour
 
 [Install]
 WantedBy=multi-user.target
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20190524.fa2a17cf/systemd/[email protected]
 
new/openSUSE-release-tools-20190524.65b73f1d/systemd/[email protected]
--- 
old/openSUSE-release-tools-20190524.fa2a17cf/systemd/[email protected]
    2019-05-24 12:24:49.000000000 +0200
+++ 
new/openSUSE-release-tools-20190524.65b73f1d/systemd/[email protected]
    2019-05-24 21:57:50.000000000 +0200
@@ -5,7 +5,7 @@
 User=osrt-origin-manager
 SyslogIdentifier=osrt-origin-manager
 ExecStart=/usr/bin/osc origin -p "%i" report --diff --force-refresh --mail
-RuntimeMaxSec=12 hour
+RuntimeMaxSec=24 hour
 
 [Install]
 WantedBy=multi-user.target
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20190524.fa2a17cf/userscript/staging-move-drag-n-drop.user.js
 
new/openSUSE-release-tools-20190524.65b73f1d/userscript/staging-move-drag-n-drop.user.js
--- 
old/openSUSE-release-tools-20190524.fa2a17cf/userscript/staging-move-drag-n-drop.user.js
    2019-05-24 12:24:49.000000000 +0200
+++ 
new/openSUSE-release-tools-20190524.65b73f1d/userscript/staging-move-drag-n-drop.user.js
    2019-05-24 21:57:50.000000000 +0200
@@ -271,7 +271,7 @@
         var project = pathParts[pathParts.length - 1];
 
         var data = JSON.stringify({'user': user, 'project': project, 'move': 
true, 'selection': summary});
-        var domain_parent = 
window.location.hostname.split('.').splice(1).join('.');
+        var domain_parent = 
window.location.hostname.split('.').splice(-2).join('.');
         var subdomain = domain_parent.endsWith('suse.de') ? 'tortuga' : 
'operator';
         var url = 'https://' + subdomain + '.' + domain_parent + 
'/staging/select';
         $.post({url: url, data: data, crossDomain: true, xhrFields: 
{withCredentials: true},

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.ekRSSi/_old  2019-05-27 08:40:22.715024353 +0200
+++ /var/tmp/diff_new_pack.ekRSSi/_new  2019-05-27 08:40:22.715024353 +0200
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20190524.fa2a17cf
-mtime: 1558693489
-commit: fa2a17cfec75d7eb9b99f987feff0aae1bf1cfa0
+version: 20190524.65b73f1d
+mtime: 1558727870
+commit: 65b73f1d416e9a7cdc337902c7aec744f4d2d334
 


Reply via email to