Accepting request 862853 from home:lnussel:usrmove

- prepare usrmerge (boo#1029961)
  * don't install legacy symlinks to /
  * use %_pamdir to install pam modules
  * leave nss files in /usr/lib*, glibc loads them from there just
    fine independent of usrmerge

OBS-URL: https://build.opensuse.org/request/show/862853
OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=1132
This commit is contained in:
Franck Bui 2021-01-14 15:32:12 +00:00 committed by Git OBS Bridge
parent 7118057a85
commit 14968cff9b
4 changed files with 36 additions and 16 deletions

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Jan 13 10:37:16 UTC 2021 - Ludwig Nussel <lnussel@suse.de>
- prepare usrmerge (boo#1029961)
* don't install legacy symlinks to /
* use %_pamdir to install pam modules
* leave nss files in /usr/lib*, glibc loads them from there just
fine independent of usrmerge
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 18 08:54:20 UTC 2020 - Franck Bui <fbui@suse.com> Fri Dec 18 08:54:20 UTC 2020 - Franck Bui <fbui@suse.com>

View File

@ -1,7 +1,7 @@
# #
# spec file for package systemd-mini # spec file for package systemd-mini
# #
# Copyright (c) 2020 SUSE LLC # Copyright (c) 2021 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -511,7 +511,7 @@ systemd-journal-remote, and systemd-journal-upload.
-Dsplit-bin=true \ -Dsplit-bin=true \
-Dsystem-uid-max=499 \ -Dsystem-uid-max=499 \
-Dsystem-gid-max=499 \ -Dsystem-gid-max=499 \
-Dpamlibdir=/%{_lib}/security \ -Dpamlibdir=%{_pamdir} \
-Drpmmacrosdir=no \ -Drpmmacrosdir=no \
-Dcertificate-root=%{_sysconfdir}/pki/systemd \ -Dcertificate-root=%{_sysconfdir}/pki/systemd \
-Ddefault-hierarchy=hybrid \ -Ddefault-hierarchy=hybrid \
@ -577,10 +577,7 @@ systemd-journal-remote, and systemd-journal-upload.
%install %install
%meson_install %meson_install
# move to %{_lib} %if 0%{?bootstrap}
%if ! 0%{?bootstrap}
mv %{buildroot}%{_libdir}/libnss_myhostname.so.2 %{buildroot}/%{_lib}
%else
rm %{buildroot}%{_libdir}/libnss_systemd.so* rm %{buildroot}%{_libdir}/libnss_systemd.so*
rm -r %{buildroot}%{_datadir}/locale rm -r %{buildroot}%{_datadir}/locale
%endif %endif
@ -611,6 +608,7 @@ for s in %{S:100} %{S:101} %{S:102}; do
install -m0755 -D $s %{buildroot}%{_prefix}/lib/systemd/scripts/${s#*/scripts-systemd-} install -m0755 -D $s %{buildroot}%{_prefix}/lib/systemd/scripts/${s#*/scripts-systemd-}
done done
%if !0%{?usrmerged}
# Legacy sysvinit tools # Legacy sysvinit tools
mkdir -p %{buildroot}/sbin mkdir -p %{buildroot}/sbin
ln -s ../usr/lib/systemd/systemd %{buildroot}/sbin/init ln -s ../usr/lib/systemd/systemd %{buildroot}/sbin/init
@ -622,6 +620,7 @@ ln -s ../usr/bin/systemctl %{buildroot}/sbin/poweroff
ln -s ../usr/bin/systemctl %{buildroot}/sbin/telinit ln -s ../usr/bin/systemctl %{buildroot}/sbin/telinit
ln -s ../usr/bin/systemctl %{buildroot}/sbin/runlevel ln -s ../usr/bin/systemctl %{buildroot}/sbin/runlevel
%endif %endif
%endif
# Make sure we don't ship static enablement symlinks in /etc during # Make sure we don't ship static enablement symlinks in /etc during
# installation, presets should be honoured instead. # installation, presets should be honoured instead.
@ -1171,7 +1170,7 @@ fi
%dir %{_prefix}/lib/systemd/system-shutdown/ %dir %{_prefix}/lib/systemd/system-shutdown/
%dir %{_prefix}/lib/systemd/system-sleep/ %dir %{_prefix}/lib/systemd/system-sleep/
/%{_lib}/security/pam_systemd.so %{_pamdir}/pam_systemd.so
%if %{with gnuefi} %if %{with gnuefi}
%dir %{_prefix}/lib/systemd/boot %dir %{_prefix}/lib/systemd/boot
@ -1350,6 +1349,7 @@ fi
%files sysvinit %files sysvinit
%defattr(-,root,root,-) %defattr(-,root,root,-)
%if !0%{?usrmerged}
/sbin/init /sbin/init
/sbin/reboot /sbin/reboot
/sbin/halt /sbin/halt
@ -1359,6 +1359,7 @@ fi
/sbin/telinit /sbin/telinit
/sbin/runlevel /sbin/runlevel
%endif %endif
%endif
%{_sbindir}/init %{_sbindir}/init
%{_sbindir}/reboot %{_sbindir}/reboot
%{_sbindir}/halt %{_sbindir}/halt
@ -1508,7 +1509,7 @@ fi
%files -n nss-myhostname %files -n nss-myhostname
%defattr(-, root, root) %defattr(-, root, root)
/%{_lib}/*nss_myhostname* %{_libdir}/*nss_myhostname*
%{_mandir}/man8/libnss_myhostname.* %{_mandir}/man8/libnss_myhostname.*
%{_mandir}/man8/nss-myhostname.* %{_mandir}/man8/nss-myhostname.*

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Jan 13 10:37:16 UTC 2021 - Ludwig Nussel <lnussel@suse.de>
- prepare usrmerge (boo#1029961)
* don't install legacy symlinks to /
* use %_pamdir to install pam modules
* leave nss files in /usr/lib*, glibc loads them from there just
fine independent of usrmerge
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Dec 18 08:54:20 UTC 2020 - Franck Bui <fbui@suse.com> Fri Dec 18 08:54:20 UTC 2020 - Franck Bui <fbui@suse.com>

View File

@ -1,7 +1,7 @@
# #
# spec file for package systemd # spec file for package systemd
# #
# Copyright (c) 2020 SUSE LLC # Copyright (c) 2021 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -509,7 +509,7 @@ systemd-journal-remote, and systemd-journal-upload.
-Dsplit-bin=true \ -Dsplit-bin=true \
-Dsystem-uid-max=499 \ -Dsystem-uid-max=499 \
-Dsystem-gid-max=499 \ -Dsystem-gid-max=499 \
-Dpamlibdir=/%{_lib}/security \ -Dpamlibdir=%{_pamdir} \
-Drpmmacrosdir=no \ -Drpmmacrosdir=no \
-Dcertificate-root=%{_sysconfdir}/pki/systemd \ -Dcertificate-root=%{_sysconfdir}/pki/systemd \
-Ddefault-hierarchy=hybrid \ -Ddefault-hierarchy=hybrid \
@ -575,10 +575,7 @@ systemd-journal-remote, and systemd-journal-upload.
%install %install
%meson_install %meson_install
# move to %{_lib} %if 0%{?bootstrap}
%if ! 0%{?bootstrap}
mv %{buildroot}%{_libdir}/libnss_myhostname.so.2 %{buildroot}/%{_lib}
%else
rm %{buildroot}%{_libdir}/libnss_systemd.so* rm %{buildroot}%{_libdir}/libnss_systemd.so*
rm -r %{buildroot}%{_datadir}/locale rm -r %{buildroot}%{_datadir}/locale
%endif %endif
@ -609,6 +606,7 @@ for s in %{S:100} %{S:101} %{S:102}; do
install -m0755 -D $s %{buildroot}%{_prefix}/lib/systemd/scripts/${s#*/scripts-systemd-} install -m0755 -D $s %{buildroot}%{_prefix}/lib/systemd/scripts/${s#*/scripts-systemd-}
done done
%if !0%{?usrmerged}
# Legacy sysvinit tools # Legacy sysvinit tools
mkdir -p %{buildroot}/sbin mkdir -p %{buildroot}/sbin
ln -s ../usr/lib/systemd/systemd %{buildroot}/sbin/init ln -s ../usr/lib/systemd/systemd %{buildroot}/sbin/init
@ -620,6 +618,7 @@ ln -s ../usr/bin/systemctl %{buildroot}/sbin/poweroff
ln -s ../usr/bin/systemctl %{buildroot}/sbin/telinit ln -s ../usr/bin/systemctl %{buildroot}/sbin/telinit
ln -s ../usr/bin/systemctl %{buildroot}/sbin/runlevel ln -s ../usr/bin/systemctl %{buildroot}/sbin/runlevel
%endif %endif
%endif
# Make sure we don't ship static enablement symlinks in /etc during # Make sure we don't ship static enablement symlinks in /etc during
# installation, presets should be honoured instead. # installation, presets should be honoured instead.
@ -1169,7 +1168,7 @@ fi
%dir %{_prefix}/lib/systemd/system-shutdown/ %dir %{_prefix}/lib/systemd/system-shutdown/
%dir %{_prefix}/lib/systemd/system-sleep/ %dir %{_prefix}/lib/systemd/system-sleep/
/%{_lib}/security/pam_systemd.so %{_pamdir}/pam_systemd.so
%if %{with gnuefi} %if %{with gnuefi}
%dir %{_prefix}/lib/systemd/boot %dir %{_prefix}/lib/systemd/boot
@ -1348,6 +1347,7 @@ fi
%files sysvinit %files sysvinit
%defattr(-,root,root,-) %defattr(-,root,root,-)
%if !0%{?usrmerged}
/sbin/init /sbin/init
/sbin/reboot /sbin/reboot
/sbin/halt /sbin/halt
@ -1357,6 +1357,7 @@ fi
/sbin/telinit /sbin/telinit
/sbin/runlevel /sbin/runlevel
%endif %endif
%endif
%{_sbindir}/init %{_sbindir}/init
%{_sbindir}/reboot %{_sbindir}/reboot
%{_sbindir}/halt %{_sbindir}/halt
@ -1506,7 +1507,7 @@ fi
%files -n nss-myhostname %files -n nss-myhostname
%defattr(-, root, root) %defattr(-, root, root)
/%{_lib}/*nss_myhostname* %{_libdir}/*nss_myhostname*
%{_mandir}/man8/libnss_myhostname.* %{_mandir}/man8/libnss_myhostname.*
%{_mandir}/man8/nss-myhostname.* %{_mandir}/man8/nss-myhostname.*