Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mingw32-filesystem for openSUSE:Factory checked in at 2022-07-26 19:43:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mingw32-filesystem (Old) and /work/SRC/openSUSE:Factory/.mingw32-filesystem.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mingw32-filesystem" Tue Jul 26 19:43:47 2022 rev:16 rq:990821 version:20220801 Changes: -------- --- /work/SRC/openSUSE:Factory/mingw32-filesystem/mingw32-filesystem.changes 2022-07-18 18:34:54.493841401 +0200 +++ /work/SRC/openSUSE:Factory/.mingw32-filesystem.new.1533/mingw32-filesystem.changes 2022-07-26 19:44:13.037725329 +0200 @@ -1,0 +2,9 @@ +Wed Jul 20 07:11:15 UTC 2022 - Ralf Habacker <ralf.habac...@freenet.de> + +- Update to 20220801 +- Fetch real used shared library name from import libraries to avoid + file name generation errors, for example with mingw32-glib2 +- Scan all archives for shared library names as packages may not use + the default import library extension + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mingw32-filesystem.spec ++++++ --- /var/tmp/diff_new_pack.Nfjxbf/_old 2022-07-26 19:44:13.581641280 +0200 +++ /var/tmp/diff_new_pack.Nfjxbf/_new 2022-07-26 19:44:13.585640662 +0200 @@ -31,7 +31,7 @@ %define _rpmmacrodir %{_sysconfdir}/rpm %endif Name: mingw32-filesystem -Version: 20220620 +Version: 20220801 Release: 0 Summary: MinGW base filesystem and environment License: GPL-2.0-or-later ++++++ mingw32-find-requires.sh ++++++ --- /var/tmp/diff_new_pack.Nfjxbf/_old 2022-07-26 19:44:13.741616560 +0200 +++ /var/tmp/diff_new_pack.Nfjxbf/_new 2022-07-26 19:44:13.745615942 +0200 @@ -106,11 +106,14 @@ sed 's/\(.*\)/'"$target"'(\1)/' done | sort -u +# scan import libraries - all archive files are scanned, not only +# '.dll.a' as some packages do not use the standard extension +# for import libraries if [ -n "$scan_implibs" ]; then - implibs=$(echo "$filelist" | grep '\.dll.a$') + implibs=$(echo "$filelist" | grep '\.a$') for f in $implibs; do [ ! -f "$f" ] && continue - "$OBJDUMP" -r "$f" | grep '_iname' | sed 's,^.*lib,lib,g;s,_iname,,g;s,_dll,.dll,g;s,_,-,g' | + "$STRINGS" "$f" | grep '\.dll$' | tr "[:upper:]" "[:lower:]" | grep -Ev "$exclude_pattern" | sed 's/\(.*\)/'"$target"'(\1)/'