Release 219-2mamba
This commit is contained in:
parent
193aab0ca3
commit
f3c9fe5c25
30
systemd.spec
30
systemd.spec
@ -24,8 +24,8 @@
|
||||
|
||||
Name: systemd
|
||||
Epoch: 2
|
||||
Version: 218
|
||||
Release: 1mamba
|
||||
Version: 219
|
||||
Release: 2mamba
|
||||
Summary: A system and service manager compatible with SysV and LSB init scripts
|
||||
Group: System/Configuration
|
||||
Vendor: openmamba
|
||||
@ -81,6 +81,7 @@ Conflicts: sysvinit
|
||||
Conflicts: initscripts-sysv5
|
||||
Requires: sysvinit-tools
|
||||
Requires: udev = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Requires: kbd
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
@ -201,7 +202,7 @@ This package include development files for building software using udev librarie
|
||||
#%patch6 -p1
|
||||
#%patch7 -p1
|
||||
%patch9 -p1
|
||||
%patch10 -p1
|
||||
#%patch10 -p1
|
||||
|
||||
%build
|
||||
%configure \
|
||||
@ -280,6 +281,8 @@ mv %{buildroot}%{_libdir}/libnss_myhostname.so.* %{buildroot}/%{_lib}/
|
||||
|
||||
%post core
|
||||
if [ "$1" -ge 1 ]; then
|
||||
# causes systemd not to boot since 219
|
||||
sed -i "/\/proc\/bus\/usb/d" /etc/fstab
|
||||
# SYSV5 -> Systemd migration
|
||||
[ -e /etc/machine-id ] || systemd-machine-id-setup >/dev/null 2>&1
|
||||
if [ ! -e %{_sysconfdir}/hostname ]; then
|
||||
@ -390,6 +393,11 @@ if [ $1 -ge 1 ]; then
|
||||
[ -e $INITRAMFS -a ${_sysconfdir}/systemd/system.conf -nt $INITRAMFS ] || continue
|
||||
[ -e $KERNEL -a -e /usr/bin/mkinitrd ] || continue
|
||||
mkinitrd $INITRAMFS $KVER -f -q
|
||||
# fix initial console fonts with lighter one and working FONT_MAP (219)
|
||||
grep -q "^FONT_MAP=8859-1_to_uni" /etc/vconsole.conf && {
|
||||
sed -i "s|^FONT_MAP=8859-1_to_uni|FONT_MAP=latin2u|" /etc/vconsole.conf
|
||||
sed -i "s|^FONT=lat9w-16|FONT=LatGrkCyr-8x16|" /etc/vconsole.conf
|
||||
}
|
||||
fi
|
||||
:
|
||||
|
||||
@ -429,6 +437,7 @@ fi
|
||||
%dir %{_sysconfdir}/systemd/system/multi-user.target.wants
|
||||
%{_sysconfdir}/systemd/system/multi-user.target.wants/remote-fs.target
|
||||
%{_sysconfdir}/systemd/system/multi-user.target.wants/systemd-networkd.service
|
||||
%{_sysconfdir}/systemd/system/sockets.target.wants/systemd-networkd.socket
|
||||
%{_sysconfdir}/systemd/system/multi-user.target.wants/systemd-resolved.service
|
||||
%{_sysconfdir}/systemd/system/sysinit.target.wants/systemd-timesyncd.service
|
||||
%{_sysconfdir}/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service
|
||||
@ -462,6 +471,7 @@ fi
|
||||
/bin/systemd-ask-password
|
||||
/bin/systemd-escape
|
||||
/bin/systemd-firstboot
|
||||
/bin/systemd-hwdb
|
||||
/bin/systemd-inhibit
|
||||
/bin/systemd-machine-id-setup
|
||||
/bin/systemd-notify
|
||||
@ -507,6 +517,7 @@ fi
|
||||
%{_datadir}/factory/etc/pam.d/system-auth
|
||||
%dir %{_datadir}/systemd
|
||||
%{_datadir}/systemd/kbd-model-map
|
||||
%{_datadir}/systemd/language-fallback-map
|
||||
%dir %{_datadir}/systemd/gatewayd
|
||||
%{_datadir}/systemd/gatewayd/browse.html
|
||||
%dir %{_datadir}/zsh
|
||||
@ -527,6 +538,7 @@ fi
|
||||
%{_mandir}/man1/localectl.1*
|
||||
%{_mandir}/man1/loginctl.1*
|
||||
%{_mandir}/man1/machinectl.1*
|
||||
%{_mandir}/man1/networkctl.1*
|
||||
%{_mandir}/man1/systemctl.1*
|
||||
%{_mandir}/man1/systemd-*
|
||||
%{_mandir}/man1/systemd.1*
|
||||
@ -534,7 +546,10 @@ fi
|
||||
%{_mandir}/man5/*.5*
|
||||
%{_mandir}/man7/*.7*
|
||||
%{_mandir}/man8/kernel-install.8*
|
||||
%{_mandir}/man8/libnss_myhostname.so.2.8*
|
||||
%{_mandir}/man8/libnss_mymachines.so.2.8*
|
||||
%{_mandir}/man8/nss-myhostname.8*
|
||||
%{_mandir}/man8/nss-mymachines.8*
|
||||
%{_mandir}/man8/pam_systemd.8*
|
||||
%{_mandir}/man8/systemd-*.8*
|
||||
%doc LICENSE.LGPL2.1 LICENSE.MIT
|
||||
@ -580,7 +595,7 @@ fi
|
||||
%{_libdir}/pkgconfig/libsystemd-journal.pc
|
||||
%{_libdir}/pkgconfig/libsystemd-login.pc
|
||||
%{_libdir}/pkgconfig/libsystemd.pc
|
||||
%{_datadir}/pkgconfig/systemd.pc
|
||||
%{_libdir}/pkgconfig/systemd.pc
|
||||
%dir %{_docdir}/systemd
|
||||
%{_docdir}/systemd/*
|
||||
%{_mandir}/man3/*.3*
|
||||
@ -633,6 +648,13 @@ fi
|
||||
%{_datadir}/pkgconfig/udev.pc
|
||||
|
||||
%changelog
|
||||
* Sat Mar 14 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 219-2mamba
|
||||
- remove obsolete /proc/bus/usb from fstab or this version won't boot cleanly
|
||||
- update initial console font with a lighter one and fix mapping
|
||||
|
||||
* Sun Feb 22 2015 Automatic Build System <autodist@mambasoft.it> 219-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Jan 02 2015 Automatic Build System <autodist@mambasoft.it> 218-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user