diff options
author | Britney Fransen <brfransen@gmail.com> | 2018-03-06 17:53:21 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2018-03-06 17:53:21 (GMT) |
commit | 3424ce9d159b994478800fd2c05cf3db2d1bd844 (patch) | |
tree | bfb2cafc9cdc1d44d00ca62e0745289cce260a45 /abs | |
parent | c57b3a01eca8dc44f169117c80293c31fbd963f8 (diff) | |
download | linhes_pkgbuild-3424ce9d159b994478800fd2c05cf3db2d1bd844.zip linhes_pkgbuild-3424ce9d159b994478800fd2c05cf3db2d1bd844.tar.gz linhes_pkgbuild-3424ce9d159b994478800fd2c05cf3db2d1bd844.tar.bz2 |
systemd: update to 238.0
Diffstat (limited to 'abs')
-rw-r--r-- | abs/core/systemd/PKGBUILD | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/abs/core/systemd/PKGBUILD b/abs/core/systemd/PKGBUILD index f2c335c..84cdab4 100644 --- a/abs/core/systemd/PKGBUILD +++ b/abs/core/systemd/PKGBUILD @@ -6,10 +6,10 @@ pkgbase=systemd pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat') # latest commit on stable branch -_commit='7909254c7a8ee09d91b8b21fd779320b3e2fe716' +_commit='738ab7502afb7663d9aacdd73e79025aa7cd0a9b' # Bump this to latest major release for signed tag verification, # the commit count is handled by pkgver() function. -pkgver=237.64 +pkgver=238.0 pkgrel=1 arch=('x86_64') url="https://www.github.com/systemd/systemd" @@ -19,7 +19,8 @@ makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf' 'python-lxml' 'quota-tools' 'shadow' 'gnu-efi-libs' 'git' 'meson' 'libseccomp' 'pcre2') options=('strip') -validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4') # Lennart Poettering <lennart@poettering.net> +validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4' # Lennart Poettering <lennart@poettering.net> + '5C251B5FC54EB2F80F407AAAC54CA336CFEB557E') # Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> source=('git://github.com/systemd/systemd-stable.git' 'git://github.com/systemd/systemd.git' # pull in for tags, backports & reverts 'initcpio-hook-udev' @@ -197,13 +198,16 @@ package_systemd() { chmod 0750 "$pkgdir"/usr/share/polkit-1/rules.d # we'll create this on installation - # rmdir "$pkgdir/var/log/journal/remote" + rmdir "$pkgdir/var/log/journal/remote" # ship default policy to leave services disabled echo 'disable *' >"$pkgdir"/usr/lib/systemd/system-preset/99-default.preset # manpages shipped with systemd-sysvcompat - rm "$pkgdir"/usr/share/man/man8/{telinit,halt,reboot,poweroff,runlevel,shutdown}.8 + rm "$pkgdir"/usr/share/man/man8/{halt,poweroff,reboot,runlevel,shutdown,telinit}.8 + + # executable (symlinks) shipped with systemd-sysvcompat + rm "$pkgdir"/usr/bin/{halt,init,poweroff,reboot,runlevel,shutdown,telinit} # runtime libraries shipped with libsystemd rm "$pkgdir"/usr/lib/lib{nss,systemd,udev}*.so* @@ -253,8 +257,7 @@ package_systemd-sysvcompat() { "$pkgdir"/usr/share/man/man8 install -dm755 "$pkgdir/usr/bin" - #for tool in runlevel reboot shutdown poweroff halt telinit; do - for tool in runlevel telinit; do + for tool in runlevel reboot shutdown poweroff halt telinit; do ln -s 'systemctl' "$pkgdir/usr/bin/$tool" done |