diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-07-27 15:19:10 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-07-27 15:19:10 -0400 |
commit | 80ba2c6556ff34b64333b04b28a704271ed78f6d (patch) | |
tree | 9eae686dd51296ecf03ab1e105427f2b6296a4f2 /pcr/systemd-dummy | |
parent | 62fd161baca6a45e9441dc6d298fe19938fab15c (diff) | |
download | abslibre-80ba2c6556ff34b64333b04b28a704271ed78f6d.tar.gz abslibre-80ba2c6556ff34b64333b04b28a704271ed78f6d.tar.bz2 abslibre-80ba2c6556ff34b64333b04b28a704271ed78f6d.zip |
pcr/systemd-dummy: Add
Diffstat (limited to 'pcr/systemd-dummy')
-rw-r--r-- | pcr/systemd-dummy/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pcr/systemd-dummy/PKGBUILD b/pcr/systemd-dummy/PKGBUILD new file mode 100644 index 000000000..51c119db9 --- /dev/null +++ b/pcr/systemd-dummy/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Freemor <freemor@freemor.ca> +# Contributor: Luke Shumaker <lukeshu@parabola.nu> + +# https://pad.riseup.net/p/ParabolaSystemdDependants + +# Notes: +# - Does *NOT* provide a specific version of systemd; if a package +# depends on a specific version, it probably is a "real" dependency, +# not an erroneous one, and satisfying it would be harmful. +# - Does not conflicts=('systemd'); to make adding/removing notsystemd +# easy. +# - Does not provide libsystemd-shared-XXX.so, nor depend on +# (not)systemd-common, which provide it. That is not a public API +# or ABI, and no package outside of pkgbase=systemd cares about it. +# It's absolutely silly that Artix Linux's systemd-dummy package +# includes that file. +# - Does not do anything with libsystemd. We have more finely split +# packages than Arch ( (not)systemd-libsystemd / libsystemd.so). + +pkgname=systemd-dummy +pkgdesc="An empty package that provides 'systemd' to satisfy packages that erronously depend on it" +url='https://parabola.nu/' +provides=('systemd') +license=('custom:Public Domain') +pkgver=1 +pkgrel=1 +arch=(any) + +package() { + : +} |