diff options
author | Britney Fransen <brfransen@gmail.com> | 2018-03-06 18:54:37 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2018-03-06 18:54:37 (GMT) |
commit | ba5d5d43dba486e597025e313ffa67a67446322b (patch) | |
tree | 9e928eb82c66a8c0485984f2ea3682ab25c3564a /abs/core/systemd/PKGBUILD | |
parent | 718198c448788ad6653151675312e4d68010d870 (diff) | |
download | linhes_pkgbuild-ba5d5d43dba486e597025e313ffa67a67446322b.zip linhes_pkgbuild-ba5d5d43dba486e597025e313ffa67a67446322b.tar.gz linhes_pkgbuild-ba5d5d43dba486e597025e313ffa67a67446322b.tar.bz2 |
Revert "systemd: update to 238.0"
This reverts commit 3424ce9d159b994478800fd2c05cf3db2d1bd844.
Diffstat (limited to 'abs/core/systemd/PKGBUILD')
-rw-r--r-- | abs/core/systemd/PKGBUILD | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/abs/core/systemd/PKGBUILD b/abs/core/systemd/PKGBUILD index 84cdab4..f2c335c 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='738ab7502afb7663d9aacdd73e79025aa7cd0a9b' +_commit='7909254c7a8ee09d91b8b21fd779320b3e2fe716' # Bump this to latest major release for signed tag verification, # the commit count is handled by pkgver() function. -pkgver=238.0 +pkgver=237.64 pkgrel=1 arch=('x86_64') url="https://www.github.com/systemd/systemd" @@ -19,8 +19,7 @@ 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> - '5C251B5FC54EB2F80F407AAAC54CA336CFEB557E') # Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> +validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4') # Lennart Poettering <lennart@poettering.net> source=('git://github.com/systemd/systemd-stable.git' 'git://github.com/systemd/systemd.git' # pull in for tags, backports & reverts 'initcpio-hook-udev' @@ -198,16 +197,13 @@ 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/{halt,poweroff,reboot,runlevel,shutdown,telinit}.8 - - # executable (symlinks) shipped with systemd-sysvcompat - rm "$pkgdir"/usr/bin/{halt,init,poweroff,reboot,runlevel,shutdown,telinit} + rm "$pkgdir"/usr/share/man/man8/{telinit,halt,reboot,poweroff,runlevel,shutdown}.8 # runtime libraries shipped with libsystemd rm "$pkgdir"/usr/lib/lib{nss,systemd,udev}*.so* @@ -257,7 +253,8 @@ 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 reboot shutdown poweroff halt telinit; do + for tool in runlevel telinit; do ln -s 'systemctl' "$pkgdir/usr/bin/$tool" done |