Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rpm-config-SUSE for openSUSE:Factory
checked in at 2021-10-25 15:16:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rpm-config-SUSE (Old)
and /work/SRC/openSUSE:Factory/.rpm-config-SUSE.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rpm-config-SUSE"
Mon Oct 25 15:16:40 2021 rev:20 rq:926731 version:0.g89
Changes:
--------
--- /work/SRC/openSUSE:Factory/rpm-config-SUSE/rpm-config-SUSE.changes
2021-07-07 18:29:27.455472183 +0200
+++
/work/SRC/openSUSE:Factory/.rpm-config-SUSE.new.1890/rpm-config-SUSE.changes
2021-10-25 15:16:41.797647992 +0200
@@ -1,0 +2,8 @@
+Thu Oct 21 10:33:43 UTC 2021 - [email protected]
+
+- Update to version 0.g89:
+ * find-provides.ksyms: Do not set IFS - it is not needed for anything.
+ * find-provides.ksyms: Fix compressed modules.
+ * Allow locale directory to be named "locales" too
+
+-------------------------------------------------------------------
Old:
----
rpm-config-SUSE-0.g83.tar.xz
New:
----
rpm-config-SUSE-0.g89.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rpm-config-SUSE.spec ++++++
--- /var/tmp/diff_new_pack.kHLKaN/_old 2021-10-25 15:16:42.593648489 +0200
+++ /var/tmp/diff_new_pack.kHLKaN/_new 2021-10-25 15:16:42.597648493 +0200
@@ -18,7 +18,7 @@
Name: rpm-config-SUSE
-Version: 0.g83
+Version: 0.g89
Release: 0
Summary: SUSE specific RPM configuration files
License: GPL-2.0-or-later
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.kHLKaN/_old 2021-10-25 15:16:42.665648535 +0200
+++ /var/tmp/diff_new_pack.kHLKaN/_new 2021-10-25 15:16:42.665648535 +0200
@@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/openSUSE/rpm-config-SUSE</param>
- <param
name="changesrevision">f474c6cbce8c7f34d20586c332fad3d1dfe3d708</param>
+ <param
name="changesrevision">5910035fe8beac2cef37300db3cc707b53b58006</param>
</service>
</servicedata>
\ No newline at end of file
++++++ rpm-config-SUSE-0.g83.tar.xz -> rpm-config-SUSE-0.g89.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/rpm-config-SUSE-0.g83/fileattrs/locale.attr
new/rpm-config-SUSE-0.g89/fileattrs/locale.attr
--- old/rpm-config-SUSE-0.g83/fileattrs/locale.attr 2021-06-25
15:44:08.000000000 +0200
+++ new/rpm-config-SUSE-0.g89/fileattrs/locale.attr 2021-10-21
12:32:43.000000000 +0200
@@ -1,4 +1,4 @@
%__locale_provides %{_rpmconfigdir}/locale.prov
-%__locale_path /locale/[^/]*/LC_MESSAGES/.*\\.mo$
+%__locale_path /locales\?/[^/]*/LC_MESSAGES/.*\\.mo$
%__locale_provides_opts %{name}
%__locale_namespace locale
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/rpm-config-SUSE-0.g83/scripts/find-provides.ksyms
new/rpm-config-SUSE-0.g89/scripts/find-provides.ksyms
--- old/rpm-config-SUSE-0.g83/scripts/find-provides.ksyms 2021-06-25
15:44:08.000000000 +0200
+++ new/rpm-config-SUSE-0.g89/scripts/find-provides.ksyms 2021-10-21
12:32:43.000000000 +0200
@@ -1,7 +1,5 @@
#! /bin/bash
-IFS=$'\n'
-
is_tumbleweed=false
if test "$1" = "--tumbleweed"; then
@@ -56,13 +54,13 @@
unzip=""
case "$f" in
*.gz | */boot/vmlinuz*)
- unzip="gzip -cd";;
+ unzip="gzip";;
*.xz)
- unzip="xz -cd";;
+ unzip="xz";;
*.zst)
- unzip="zstd -cd";;
+ unzip="zstd";;
esac
- if test -n "$unzip" && $unzip "$f" >"$tmp"; then
+ if test -n "$unzip" && $unzip -cd "$f" >"$tmp"; then
f=$tmp
fi
if test -z "$flavor" -a -n "$is_module" ; then