Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package openSUSE-release-tools for
openSUSE:Factory checked in at 2022-04-08 22:45:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
and /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.1900 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openSUSE-release-tools"
Fri Apr 8 22:45:35 2022 rev:423 rq:967681 version:20220408.1d368407
Changes:
--------
---
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
2022-04-08 00:28:25.189850157 +0200
+++
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.1900/openSUSE-release-tools.changes
2022-04-08 22:45:41.963152040 +0200
@@ -1,0 +2,6 @@
+Fri Apr 08 06:56:18 UTC 2022 - [email protected]
+
+- Update to version 20220408.1d368407:
+ * accept: Catch requests without description
+
+-------------------------------------------------------------------
Old:
----
openSUSE-release-tools-20220406.bd0bc306.obscpio
New:
----
openSUSE-release-tools-20220408.1d368407.obscpio
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.FVNCig/_old 2022-04-08 22:45:42.715143694 +0200
+++ /var/tmp/diff_new_pack.FVNCig/_new 2022-04-08 22:45:42.719143649 +0200
@@ -20,7 +20,7 @@
%define source_dir openSUSE-release-tools
%define announcer_filename factory-package-news
Name: openSUSE-release-tools
-Version: 20220406.bd0bc306
+Version: 20220408.1d368407
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.FVNCig/_old 2022-04-08 22:45:42.759143206 +0200
+++ /var/tmp/diff_new_pack.FVNCig/_new 2022-04-08 22:45:42.763143161 +0200
@@ -1,7 +1,7 @@
<servicedata>
<service name="tar_scm">
<param
name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param>
- <param
name="changesrevision">530a0e0b288223070fd4c211dd0e9709f56524a5</param>
+ <param
name="changesrevision">de6a64c464cedffcfb032613e7f87378f856561a</param>
</service>
</servicedata>
++++++ openSUSE-release-tools-20220406.bd0bc306.obscpio ->
openSUSE-release-tools-20220408.1d368407.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/openSUSE-release-tools-20220406.bd0bc306/osclib/accept_command.py
new/openSUSE-release-tools-20220408.1d368407/osclib/accept_command.py
--- old/openSUSE-release-tools-20220406.bd0bc306/osclib/accept_command.py
2022-04-06 09:17:25.000000000 +0200
+++ new/openSUSE-release-tools-20220408.1d368407/osclib/accept_command.py
2022-04-08 08:54:29.000000000 +0200
@@ -68,9 +68,10 @@
f = http_GET(url)
root = ET.parse(f).getroot()
- description = root.find('description').text
- if not description:
+ description = root.find('description')
+ if description is None or description.text is None:
return
+ description = description.text
for line in description.splitlines():
# this relies on the format relied upon in check_bugowner
m = re.search(r'^bugowner:\s*(\S*)', line)
++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.FVNCig/_old 2022-04-08 22:45:43.455135480 +0200
+++ /var/tmp/diff_new_pack.FVNCig/_new 2022-04-08 22:45:43.459135436 +0200
@@ -1,5 +1,5 @@
name: openSUSE-release-tools
-version: 20220406.bd0bc306
-mtime: 1649229445
-commit: bd0bc3062e41cd682c2f1d7f372a7c8e81fae55f
+version: 20220408.1d368407
+mtime: 1649400869
+commit: 1d36840733e12fc8c9eef0c089b152e61551c270