* [PATCH] systemd: Update to 221.
@ 2015-09-10 17:33 Stefan Schantl
0 siblings, 0 replies; only message in thread
From: Stefan Schantl @ 2015-09-10 17:33 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 4196 bytes --]
This is an update to the latest stable version of systemd. I also fixed
some problems with a non existing user group (systemd-journal) which have triggered
error messages to the journal in the past.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
systemd/systemd.nm | 58 +++++++++++++++++++++++++++++++++++++++++-------------
1 file changed, 44 insertions(+), 14 deletions(-)
diff --git a/systemd/systemd.nm b/systemd/systemd.nm
index 747983c..7112a3c 100644
--- a/systemd/systemd.nm
+++ b/systemd/systemd.nm
@@ -4,8 +4,8 @@
###############################################################################
name = systemd
-version = 215
-release = 2
+version = 221
+release = 1
maintainer = Stefan Schantl <stefan.schantl(a)ipfire.org>
groups = System/Base
@@ -18,7 +18,8 @@ description
SysV and LSB init scripts.
end
-source_dl = http://cgit.freedesktop.org/systemd/systemd/snapshot/
+source_dl = http://www.freedesktop.org/software/systemd/
+sources = %{thisapp}.tar.xz
build
unitdir = %{prefix}/lib/systemd/system
@@ -26,12 +27,11 @@ build
requires
attr-devel
audit-devel
- automake
- autoconf
cryptsetup-luks-devel >= 1.4.2
dbus-devel
docbook-utils
docbook-xsl
+ elfutils-devel
gettext-devel
glib2-devel
gobject-introspection-devel >= 1.31
@@ -43,28 +43,41 @@ build
libblkid-devel
libcap-devel
libgcrypt-devel
+ libmount-devel
libselinux-devel
- libtool
libuuid-devel
+ m4
pam-devel
pciutils-devel
usbutils
vala
xz-devel
+ zlib-devel
end
configure_options += \
--with-sysvinit-path= \
--with-sysvrcnd-path= \
- --enable-introspection=yes \
+ --enable-introspection \
+ --enable-zlib \
+ --disable-smack \
+ --disable-backlight \
+ --disable-firstboot \
+ --disable-hibernate \
+ --disable-importd \
+ --disable-libiptc \
+ --disable-machined \
--disable-networkd \
- --disable-resolvd \
+ --disable-resolved \
--disable-sysusers \
--disable-timesyncd \
+ --disable-timedated \
+ --disable-polkit \
+ --disable-kdbus \
--disable-static
prepare_cmds
- ./autogen.sh ac
+ %{create_groups}
end
install_cmds
@@ -119,6 +132,7 @@ build
# Remove unneeded stuff for rpm.
rm -rvf %{BUILDROOT}/etc/rpm
+ rm -rvf %{BUILDROOT}/usr/lib/rpm
# Use journald. Enable the import of kernel messages.
# Stop forwarding to a syslog daemon.
@@ -133,9 +147,27 @@ build
# Remove udev rules for "predictable" network device renaming.
# http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/
rm -vf %{BUILDROOT}/usr/lib/udev/rules.d/80-net-name-slot.rules
+
+ # Create journald related folders.
+ mkdir -pv %{BUILDROOT}/run/log/journal
+ chown root:systemd-journal %{BUILDROOT}/run/log/journal
+
+ mkdir -pv %{BUILDROOT}/var/log/journal
+ chown root:systemd-journal %{BUILDROOT}/var/log/journal
end
end
+create_groups
+ # Create groups for udev.
+ getent group cdrom >/dev/null || groupadd -g 11 cdrom || :
+ getent group tape >/dev/null || groupadd -g 33 tape || :
+ getent group dialout >/dev/null || groupadd -g 18 dialout || :
+ getent group floppy >/dev/null || groupadd -g 19 floppy || :
+
+ # Create group for journald.
+ getent group systemd-journal >/dev/null || /usr/sbin/groupadd -r systemd-journal
+end
+
packages
package %{name}
groups += Base
@@ -189,11 +221,7 @@ packages
end
script prein
- # Create groups for udev.
- getent group cdrom >/dev/null || groupadd -g 11 cdrom || :
- getent group tape >/dev/null || groupadd -g 33 tape || :
- getent group dialout >/dev/null || groupadd -g 18 dialout || :
- getent group floppy >/dev/null || groupadd -g 19 floppy || :
+ %{create_groups}
end
script postin
@@ -223,6 +251,8 @@ packages
# Be sure to stop the old udev before updating.
/usr/bin/systemctl stop udev.service udev-trigger.service \
udev-control.socket udev-kernel.socket >/dev/null 2>&1 || :
+
+ %{create_groups}
end
script postup
--
2.4.3
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2015-09-10 17:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-10 17:33 [PATCH] systemd: Update to 221 Stefan Schantl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox