core/systemd to 254.6-1

This commit is contained in:
Kevin Mihelich 2023-11-10 13:45:36 +00:00
parent 6714a36c1a
commit 68a838df8f
2 changed files with 10 additions and 8 deletions

View file

@ -1,5 +1,5 @@
pkgbase = systemd
pkgver = 254.5
pkgver = 254.6
pkgrel = 1
url = https://www.github.com/systemd/systemd
arch = x86_64
@ -49,7 +49,7 @@ pkgbase = systemd
makedepends = python-pyelftools
makedepends = lib32-gcc-libs
options = strip
source = git+https://github.com/systemd/systemd-stable#tag=42f5ba1e56ddb81c244e0d85f13109acdb14cbee?signed
source = git+https://github.com/systemd/systemd-stable#tag=5afac6471beec5401efb51f88990eaf92f3f9507?signed
source = git+https://github.com/systemd/systemd#tag=v254?signed
source = 0001-Use-Arch-Linux-device-access-groups.patch
source = initcpio-hook-udev
@ -145,8 +145,8 @@ pkgname = systemd
optdepends = libp11-kit: support PKCS#11
optdepends = tpm2-tss: unlocking LUKS2 volumes with TPM2
provides = nss-myhostname
provides = systemd-tools=254.5
provides = udev=254.5
provides = systemd-tools=254.6
provides = udev=254.6
conflicts = nss-myhostname
conflicts = systemd-tools
conflicts = udev

View file

@ -13,8 +13,8 @@ pkgname=('systemd'
'systemd-resolvconf'
'systemd-sysvcompat'
'systemd-ukify')
_tag='42f5ba1e56ddb81c244e0d85f13109acdb14cbee' # git rev-parse v${_tag_name}
_tag_name=254.5
_tag='5afac6471beec5401efb51f88990eaf92f3f9507' # git rev-parse v${_tag_name}
_tag_name=254.6
pkgver="${_tag_name/-/}"
pkgrel=1
arch=('x86_64')
@ -233,7 +233,8 @@ package_systemd() {
mv "$pkgdir"/usr/share/man/man3 systemd-libs/man3
# ukify shipped in separate package
install -d -m0755 systemd-ukify/{systemd,man1}
install -d -m0755 systemd-ukify/{install.d,systemd,man1}
mv "$pkgdir"/usr/lib/kernel/install.d/{60-ukify,90-uki-copy}.install systemd-ukify/install.d/
if [[ $CARCH != "armv7h" ]]; then
mv "$pkgdir"/usr/lib/systemd/ukify systemd-ukify/systemd/
mv "$pkgdir"/usr/share/man/man1/ukify.1 systemd-ukify/man1/
@ -334,7 +335,8 @@ package_systemd-ukify() {
optdepends=('python-pillow: Show the size of splash image'
'sbsigntools: Sign the embedded kernel')
install -d -m0755 "$pkgdir"/usr/{lib,share/man}
install -d -m0755 "$pkgdir"/usr/{lib/kernel,share/man}
mv systemd-ukify/install.d "$pkgdir"/usr/lib/kernel/install.d
mv systemd-ukify/systemd "$pkgdir"/usr/lib/systemd
mv systemd-ukify/man1 "$pkgdir"/usr/share/man/man1
}