From 24e81e56a2afd30f93a7563a6155370d362a0bd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 18 Mar 2022 13:35:22 +0100 Subject: [PATCH] Fix the wrong file assignment done in previous version --- split-files.py | 4 ++-- systemd.spec | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/split-files.py b/split-files.py index a660db8..e28ec10 100644 --- a/split-files.py +++ b/split-files.py @@ -58,9 +58,9 @@ for file in files(buildroot): o = o_rpm_macros elif '/usr/lib/systemd/tests' in n: o = o_tests - elif re.match(r'/libsystemd-shared-*.so$', n): + elif re.search(r'/libsystemd-shared-*.so$', n): o = o_main - elif re.match(r'/libcryptsetup-token-systemd-.*\.so$', n): + elif re.search(r'/libcryptsetup-token-systemd-.*\.so$', n): o = o_udev elif re.search(r'/lib.*\.pc|/man3/|/usr/include|\.so$', n): o = o_devel diff --git a/systemd.spec b/systemd.spec index b68ab4c..447a925 100644 --- a/systemd.spec +++ b/systemd.spec @@ -31,7 +31,7 @@ Name: systemd Url: https://www.freedesktop.org/wiki/Software/systemd %if %{without inplace} Version: 250.3 -Release: 7%{?dist} +Release: 8%{?dist} %else # determine the build information from local checkout Version: %(tools/meson-vcs-tag.sh . error | sed -r 's/-([0-9])/.^\1/; s/-g/_g/') @@ -1003,6 +1003,9 @@ fi %files standalone-sysusers -f .file-list-standalone-sysusers %changelog +* Fri Mar 18 2022 Zbigniew Jędrzejewski-Szmek - 250.3-8 +- Fix the wrong file assignment done in previous version + * Thu Mar 17 2022 Zbigniew Jędrzejewski-Szmek - 250.3-7 - Move libcryptsetup plugins to -udev (#2064804)