Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package zypp-plugin for openSUSE:Factory checked in at 2024-07-16 22:02:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/zypp-plugin (Old) and /work/SRC/openSUSE:Factory/.zypp-plugin.new.17339 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zypp-plugin" Tue Jul 16 22:02:15 2024 rev:17 rq:1187589 version:0.6.4 Changes: -------- --- /work/SRC/openSUSE:Factory/zypp-plugin/zypp-plugin.changes 2020-11-02 09:40:10.393597249 +0100 +++ /work/SRC/openSUSE:Factory/.zypp-plugin.new.17339/zypp-plugin.changes 2024-07-16 22:02:17.409577274 +0200 @@ -1,0 +2,6 @@ +Mon Jul 15 15:51:49 CEST 2024 - m...@suse.com + +- Fix stomp header regex to include '-' (bsc#1227793) +- version 0.6.4 + +------------------------------------------------------------------- Old: ---- zypp-plugin-0.6.3.tar.bz2 New: ---- zypp-plugin-0.6.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zypp-plugin.spec ++++++ --- /var/tmp/diff_new_pack.nrFChk/_old 2024-07-16 22:02:17.945596823 +0200 +++ /var/tmp/diff_new_pack.nrFChk/_new 2024-07-16 22:02:17.949596968 +0200 @@ -1,7 +1,7 @@ # # spec file for package zypp-plugin # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,27 +12,27 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# Please submit bugfixes or comments via http://bugs.opensuse.org/ # %define singlespec_py3 ( 0%{?suse_version} > 1330 ) Name: zypp-plugin -Version: 0.6.3 +Version: 0.6.4 Release: 0 Summary: Helper that makes writing ZYpp plugins easier -License: GPL-2.0-only +License: GPL-2.0 Group: System/Packages -URL: https://github.com/openSUSE/zypp-plugin +Url: https://github.com/openSUSE/zypp-plugin Source0: %{name}-%{version}.tar.bz2 BuildArch: noarch %if %{singlespec_py3} %{?!python_module:%define python_module() python-%{**} python3-%{**}} BuildRequires: %{python_module devel} -BuildRequires: fdupes BuildRequires: python-rpm-macros +BuildRequires: fdupes Requires: python-base # provide old names for py2 package %if "%{python_flavor}" == "python2" ++++++ zypp-plugin-0.6.3.tar.bz2 -> zypp-plugin-0.6.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zypp-plugin/package/zypp-plugin.changes new/zypp-plugin/package/zypp-plugin.changes --- old/zypp-plugin/package/zypp-plugin.changes 2020-10-28 15:54:54.000000000 +0100 +++ new/zypp-plugin/package/zypp-plugin.changes 2024-07-15 17:11:25.000000000 +0200 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Mon Jul 15 15:51:49 CEST 2024 - m...@suse.com + +- Fix stomp header regex to include '-' (bsc#1227793) +- version 0.6.4 + +------------------------------------------------------------------- Fri Oct 23 21:31:23 UTC 2020 - Benjamin Greiner <c...@bnavigator.de> - singlespec in Tumbleweed must support multiple python3 flavors diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zypp-plugin/package/zypp-plugin.spec new/zypp-plugin/package/zypp-plugin.spec --- old/zypp-plugin/package/zypp-plugin.spec 2020-10-28 15:54:54.000000000 +0100 +++ new/zypp-plugin/package/zypp-plugin.spec 2024-07-15 17:11:25.000000000 +0200 @@ -19,7 +19,7 @@ %define singlespec_py3 ( 0%{?suse_version} > 1330 ) Name: zypp-plugin -Version: 0.6.3 +Version: 0.6.4 Release: 0 Summary: Helper that makes writing ZYpp plugins easier License: GPL-2.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zypp-plugin/python/zypp_plugin.py new/zypp-plugin/python/zypp_plugin.py --- old/zypp-plugin/python/zypp_plugin.py 2020-10-28 15:54:54.000000000 +0100 +++ new/zypp-plugin/python/zypp_plugin.py 2024-07-15 17:11:25.000000000 +0200 @@ -118,7 +118,7 @@ for line in iter(sys.stdin.readline, ''): line = line.rstrip() if self.state == "START": - if re.match("[\w]+", line): + if re.match("[\w-]+", line): frame = self.Frame(line) self.framestack.append(frame) self.state = "HEADERS" @@ -128,7 +128,7 @@ else: raise Exception("Expected command") if self.state == "HEADERS": - result = re.match("(\w+)\:\s*(.+)", line) + result = re.match("([\w-]+)\:\s*(.+)", line) if line == "": self.state = "BODY" #print( "wating for body" )