From db989e92e4f2ffaea629fb5eceb092245dd9367e Mon Sep 17 00:00:00 2001 From: Marcos Mello Date: Sun, 30 Jun 2024 14:29:03 -0300 Subject: [PATCH] Fix RPM build on openSUSE Tumbleweed Required since RPM 4.19. Fedora disables this feature (for now): https://src.fedoraproject.org/rpms/rpm/blob/f40/f/rpm-4.18.90-weak-user-group.patch --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index 7186b15..c0d8204 100644 --- a/SConstruct +++ b/SConstruct @@ -197,6 +197,7 @@ if 'package' in COMMAND_LINE_TARGETS: rpm_conflicts = 'FAHClient, fahclient', rpm_obsoletes = 'FAHClient, fahclient', rpm_build_requires = 'systemd-rpm-macros', + rpm_provides = 'user(fah-client), group(fah-client)', rpm_requires = 'polkit', rpm_pre_requires = 'systemd, (shadow-utils or shadow)', rpm_post_requires = 'systemd, coreutils',