2014-07-16 02:33:04 +00:00
|
|
|
# Maintainer: Dave Reisner <dreisner@archlinux.org>
|
|
|
|
# Maintainer: Tom Gundersen <teg@jklm.no>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2015-10-10 14:58:52 +00:00
|
|
|
# - disable gold/LTO
|
2015-06-23 02:00:02 +00:00
|
|
|
# - removed makedepend on gnu-efi-libs, --enable-gnuefi configure option
|
2014-07-16 02:33:04 +00:00
|
|
|
|
|
|
|
pkgbase=systemd
|
|
|
|
pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
|
2016-07-31 05:13:21 +00:00
|
|
|
pkgver=231
|
2016-10-09 21:16:33 +00:00
|
|
|
pkgrel=4
|
2014-07-16 02:33:04 +00:00
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://www.freedesktop.org/wiki/Software/systemd"
|
2015-11-27 17:40:32 +00:00
|
|
|
makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
|
2015-06-23 02:00:02 +00:00
|
|
|
'intltool' 'iptables' 'kmod' 'libcap' 'libidn' 'libgcrypt'
|
|
|
|
'libmicrohttpd' 'libxslt' 'util-linux' 'linux-api-headers'
|
2015-07-30 12:05:41 +00:00
|
|
|
'python-lxml' 'quota-tools' 'shadow' 'git')
|
2014-07-18 01:02:26 +00:00
|
|
|
options=('strip' 'debug')
|
2015-06-23 02:00:02 +00:00
|
|
|
source=("git://github.com/systemd/systemd.git#tag=v$pkgver"
|
2014-07-16 02:33:04 +00:00
|
|
|
'initcpio-hook-udev'
|
|
|
|
'initcpio-install-systemd'
|
2015-02-17 04:46:29 +00:00
|
|
|
'initcpio-install-udev'
|
2015-06-23 02:00:02 +00:00
|
|
|
'arch.conf'
|
|
|
|
'loader.conf'
|
2016-06-03 23:51:30 +00:00
|
|
|
'splash-arch.bmp'
|
|
|
|
'udev-hwdb.hook')
|
2015-06-23 02:00:02 +00:00
|
|
|
md5sums=('SKIP'
|
2014-11-22 16:06:32 +00:00
|
|
|
'90ea67a7bb237502094914622a39e281'
|
2016-10-04 12:29:10 +00:00
|
|
|
'55ea7d81c02d090b65c42a88f1a5a21a'
|
2015-07-18 18:23:57 +00:00
|
|
|
'1b3aa3a0551b08af9305d33f85b5c2fc'
|
2015-06-23 02:00:02 +00:00
|
|
|
'20ead378f5d6df4b2a3e670301510a7d'
|
|
|
|
'ddaef54f68f6c86c6c07835fc668f62a'
|
2016-06-03 23:51:30 +00:00
|
|
|
'1e2f9a8b0fa32022bf0a8f39123e5f4e'
|
|
|
|
'a475a5ed8f03fb0f6b58b4684998d05c')
|
2015-02-17 04:46:29 +00:00
|
|
|
|
2016-06-03 23:51:30 +00:00
|
|
|
_backports=(
|
2016-10-04 12:29:10 +00:00
|
|
|
'531ac2b2349da02acc9c382849758e07eb92b020' # If the notification message length is 0, ignore the message
|
|
|
|
'8523bf7dd514a3a2c6114b7b8fb8f308b4f09fc4' # pid1: process zero-length notification messages again
|
|
|
|
'9987750e7a4c62e0eb8473603150596ba7c3a015' # pid1: don't return any error in manager_dispatch_notify_fd()
|
|
|
|
'bd64d82c1c0e3fe2a5f9b3dd9132d62834f50b2d' # Revert "pid1: reconnect to the console before being re-executed"
|
2016-10-09 21:16:33 +00:00
|
|
|
'bd5b9f0a12dd9c1947b11534e99c395ddf44caa9' # systemctl: suppress errors with "show" for nonexistent units and properties
|
2016-06-03 23:51:30 +00:00
|
|
|
)
|
2015-11-27 17:40:32 +00:00
|
|
|
|
2016-06-03 23:51:30 +00:00
|
|
|
prepare() {
|
|
|
|
cd "$pkgbase"
|
2016-02-05 16:06:22 +00:00
|
|
|
|
2016-06-03 23:51:30 +00:00
|
|
|
if (( ${#_backports[*]} > 0 )); then
|
|
|
|
git cherry-pick -n "${_backports[@]}"
|
|
|
|
fi
|
2016-02-22 14:31:02 +00:00
|
|
|
|
2015-06-23 02:00:02 +00:00
|
|
|
./autogen.sh
|
2015-02-17 04:46:29 +00:00
|
|
|
}
|
2014-07-16 02:33:04 +00:00
|
|
|
|
|
|
|
build() {
|
2015-09-20 15:32:52 +00:00
|
|
|
cd "$pkgbase"
|
2015-06-23 02:00:02 +00:00
|
|
|
|
|
|
|
local timeservers=({0..3}.arch.pool.ntp.org)
|
2014-07-16 02:33:04 +00:00
|
|
|
|
2015-10-10 14:58:52 +00:00
|
|
|
LDFLAGS+=" -Wl,-fuse-ld=bfd"
|
|
|
|
CFLAGS+=" -fno-lto"
|
|
|
|
CXXFLAGS+=" -fno-lto"
|
2014-07-18 01:02:26 +00:00
|
|
|
|
2016-06-03 23:51:30 +00:00
|
|
|
local configure_options=(
|
|
|
|
--libexecdir=/usr/lib
|
|
|
|
--localstatedir=/var
|
|
|
|
--sysconfdir=/etc
|
|
|
|
|
|
|
|
--enable-lz4
|
|
|
|
--disable-audit
|
|
|
|
--disable-ima
|
|
|
|
|
|
|
|
--with-sysvinit-path=
|
|
|
|
--with-sysvrcnd-path=
|
|
|
|
--with-ntp-servers="${timeservers[*]}"
|
|
|
|
--with-default-dnssec=no
|
2016-07-20 13:31:52 +00:00
|
|
|
--with-dbuspolicydir=/usr/share/dbus-1/system.d
|
2016-06-03 23:51:30 +00:00
|
|
|
--without-kill-user-processes
|
|
|
|
)
|
|
|
|
|
|
|
|
./configure "${configure_options[@]}"
|
2014-07-16 02:33:04 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package_systemd() {
|
|
|
|
pkgdesc="system and service manager"
|
2015-06-23 02:00:02 +00:00
|
|
|
license=('GPL2' 'LGPL2.1')
|
2016-06-03 23:51:30 +00:00
|
|
|
depends=('acl' 'bash' 'dbus' 'iptables' 'kbd' 'kmod' 'hwids' 'libcap'
|
2015-11-27 17:40:32 +00:00
|
|
|
'libgcrypt' 'libsystemd' 'libidn' 'lz4' 'pam' 'libelf' 'libseccomp'
|
2015-10-17 01:00:28 +00:00
|
|
|
'util-linux' 'xz')
|
2014-07-16 02:33:04 +00:00
|
|
|
provides=('nss-myhostname' "systemd-tools=$pkgver" "udev=$pkgver")
|
|
|
|
replaces=('nss-myhostname' 'systemd-tools' 'udev')
|
|
|
|
conflicts=('nss-myhostname' 'systemd-tools' 'udev')
|
2015-07-30 12:05:41 +00:00
|
|
|
optdepends=('cryptsetup: required for encrypted block devices'
|
2014-07-16 02:33:04 +00:00
|
|
|
'libmicrohttpd: remote journald capabilities'
|
|
|
|
'quota-tools: kernel-level quota management'
|
2014-08-27 06:22:24 +00:00
|
|
|
'systemd-sysvcompat: symlink package to provide sysvinit binaries'
|
|
|
|
'polkit: allow administration as unprivileged user')
|
2016-07-20 13:31:52 +00:00
|
|
|
backup=(etc/pam.d/systemd-user
|
2014-09-03 00:17:53 +00:00
|
|
|
etc/systemd/coredump.conf
|
2014-07-16 02:33:04 +00:00
|
|
|
etc/systemd/journald.conf
|
2015-04-19 14:43:25 +00:00
|
|
|
etc/systemd/journal-remote.conf
|
|
|
|
etc/systemd/journal-upload.conf
|
2014-07-16 02:33:04 +00:00
|
|
|
etc/systemd/logind.conf
|
|
|
|
etc/systemd/system.conf
|
|
|
|
etc/systemd/timesyncd.conf
|
|
|
|
etc/systemd/resolved.conf
|
|
|
|
etc/systemd/user.conf
|
|
|
|
etc/udev/udev.conf)
|
|
|
|
install="systemd.install"
|
|
|
|
|
2015-09-20 15:32:52 +00:00
|
|
|
make -C "$pkgbase" DESTDIR="$pkgdir" install
|
2014-07-16 02:33:04 +00:00
|
|
|
|
|
|
|
# don't write units to /etc by default. some of these will be re-enabled on
|
|
|
|
# post_install.
|
2015-04-19 14:43:25 +00:00
|
|
|
rm -r "$pkgdir/etc/systemd/system/"*.wants
|
2014-07-16 02:33:04 +00:00
|
|
|
|
|
|
|
# get rid of RPM macros
|
|
|
|
rm -r "$pkgdir/usr/lib/rpm"
|
|
|
|
|
|
|
|
# add back tmpfiles.d/legacy.conf
|
2015-09-20 15:32:52 +00:00
|
|
|
install -m644 "$pkgbase/tmpfiles.d/legacy.conf" "$pkgdir/usr/lib/tmpfiles.d"
|
2014-07-16 02:33:04 +00:00
|
|
|
|
|
|
|
# Replace dialout/tape/cdrom group in rules with uucp/storage/optical group
|
|
|
|
sed -i 's#GROUP="dialout"#GROUP="uucp"#g;
|
|
|
|
s#GROUP="tape"#GROUP="storage"#g;
|
|
|
|
s#GROUP="cdrom"#GROUP="optical"#g' "$pkgdir"/usr/lib/udev/rules.d/*.rules
|
|
|
|
sed -i 's/dialout/uucp/g;
|
|
|
|
s/tape/storage/g;
|
|
|
|
s/cdrom/optical/g' "$pkgdir"/usr/lib/sysusers.d/basic.conf
|
|
|
|
|
|
|
|
# add mkinitcpio hooks
|
|
|
|
install -Dm644 "$srcdir/initcpio-install-systemd" "$pkgdir/usr/lib/initcpio/install/systemd"
|
|
|
|
install -Dm644 "$srcdir/initcpio-install-udev" "$pkgdir/usr/lib/initcpio/install/udev"
|
|
|
|
install -Dm644 "$srcdir/initcpio-hook-udev" "$pkgdir/usr/lib/initcpio/hooks/udev"
|
|
|
|
|
2014-09-03 00:17:53 +00:00
|
|
|
# ensure proper permissions for /var/log/journal. This is only to placate
|
2014-07-16 02:33:04 +00:00
|
|
|
chown root:systemd-journal "$pkgdir/var/log/journal"
|
2015-04-19 14:43:25 +00:00
|
|
|
chmod 2755 "$pkgdir/var/log/journal"
|
|
|
|
|
|
|
|
# we'll create this on installation
|
|
|
|
rmdir "$pkgdir/var/log/journal/remote"
|
2014-07-16 02:33:04 +00:00
|
|
|
|
|
|
|
# fix pam file
|
|
|
|
sed 's|system-auth|system-login|g' -i "$pkgdir/etc/pam.d/systemd-user"
|
|
|
|
|
2014-09-03 00:17:53 +00:00
|
|
|
# ship default policy to leave services disabled
|
|
|
|
echo 'disable *' >"$pkgdir"/usr/lib/systemd/system-preset/99-default.preset
|
|
|
|
|
2015-09-29 00:27:17 +00:00
|
|
|
### manpages shipped with systemd-sysvcompat
|
|
|
|
rm "$pkgdir"/usr/share/man/man8/{telinit,halt,reboot,poweroff,runlevel,shutdown}.8
|
2014-07-16 02:33:04 +00:00
|
|
|
|
2015-09-29 00:27:17 +00:00
|
|
|
### runtime libraries shipped with libsystemd
|
|
|
|
rm "$pkgdir"/usr/lib/lib{nss,systemd,udev}*.so*
|
2014-07-16 02:33:04 +00:00
|
|
|
|
2015-06-23 02:00:02 +00:00
|
|
|
# add example bootctl configuration
|
|
|
|
install -Dm644 "$srcdir/arch.conf" "$pkgdir"/usr/share/systemd/bootctl/arch.conf
|
|
|
|
install -Dm644 "$srcdir/loader.conf" "$pkgdir"/usr/share/systemd/bootctl/loader.conf
|
|
|
|
install -Dm644 "$srcdir/splash-arch.bmp" "$pkgdir"/usr/share/systemd/bootctl/splash-arch.bmp
|
2016-06-03 23:51:30 +00:00
|
|
|
|
|
|
|
install -Dm644 "$srcdir/udev-hwdb.hook" "$pkgdir/usr/share/libalpm/hooks/udev-hwdb.hook"
|
2014-07-16 02:33:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_libsystemd() {
|
|
|
|
pkgdesc="systemd client libraries"
|
2016-02-18 15:22:48 +00:00
|
|
|
depends=('glibc' 'libcap' 'libgcrypt' 'lz4' 'xz')
|
2014-07-16 02:33:04 +00:00
|
|
|
license=('GPL2')
|
2016-02-18 15:22:48 +00:00
|
|
|
provides=('libsystemd.so' 'libudev.so')
|
2014-07-16 02:33:04 +00:00
|
|
|
|
2016-10-04 12:29:10 +00:00
|
|
|
# TODO(dreisner): for v232, this should be install-rootlibLTLIBRARIES.
|
2015-09-29 00:27:17 +00:00
|
|
|
make -C "$pkgbase" DESTDIR="$pkgdir" install-libLTLIBRARIES
|
2014-07-16 02:33:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package_systemd-sysvcompat() {
|
|
|
|
pkgdesc="sysvinit compat for systemd"
|
|
|
|
license=('GPL2')
|
|
|
|
groups=('base')
|
|
|
|
conflicts=('sysvinit')
|
|
|
|
depends=('systemd')
|
|
|
|
|
2015-09-29 00:27:17 +00:00
|
|
|
install -dm755 "$pkgdir"/usr/share/man/man8
|
|
|
|
cp -d --no-preserve=ownership,timestamp \
|
|
|
|
"$pkgbase"/man/{telinit,halt,reboot,poweroff,runlevel,shutdown}.8 \
|
|
|
|
"$pkgdir"/usr/share/man/man8
|
2014-07-16 02:33:04 +00:00
|
|
|
|
|
|
|
install -dm755 "$pkgdir/usr/bin"
|
|
|
|
for tool in runlevel reboot shutdown poweroff halt telinit; do
|
|
|
|
ln -s 'systemctl' "$pkgdir/usr/bin/$tool"
|
|
|
|
done
|
|
|
|
|
|
|
|
ln -s '../lib/systemd/systemd' "$pkgdir/usr/bin/init"
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim: ft=sh syn=sh et
|