diff options
author | bill-auger <mr.j.spam.me@gmail.com> | 2021-07-19 16:43:03 -0400 |
---|---|---|
committer | bill-auger <mr.j.spam.me@gmail.com> | 2021-07-19 16:43:25 -0400 |
commit | d5ac8f05738477502bdd8620e7be536d07865089 (patch) | |
tree | 47b5963c421892a75a6e57e4a1fac1d60fa035a1 /nonsystemd/opensysusers | |
parent | c746cf127e98767696c21e4b2d86ad7f3a32f3d6 (diff) | |
download | abslibre-d5ac8f05738477502bdd8620e7be536d07865089.tar.gz abslibre-d5ac8f05738477502bdd8620e7be536d07865089.tar.bz2 abslibre-d5ac8f05738477502bdd8620e7be536d07865089.zip |
[opensysusers][libretools]: [REVERT] bcf93cb83 and ceabb79eb
commits from bcf93cb83 to fbd84207c were WIP experiments
including some that reverted important published changes
none of those should have been published; but they were
and abslibre is ff-only - so this commit undoes the reversions
the other WIP commits in that range are not usable either;
but they do move forward, so they may as well stay
Diffstat (limited to 'nonsystemd/opensysusers')
-rw-r--r-- | nonsystemd/opensysusers/PKGBUILD | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/nonsystemd/opensysusers/PKGBUILD b/nonsystemd/opensysusers/PKGBUILD deleted file mode 100644 index 562adf48a..000000000 --- a/nonsystemd/opensysusers/PKGBUILD +++ /dev/null @@ -1,58 +0,0 @@ -# Maintainer David P. <megver83@parabola.nu> -# Contributor: Omar Vega Ramos <ovruni@gnu.org.pe> -# Contributor: Luke Shumaker <lukeshu@parabola.nu> -# Maintainer (Artix): Chris Cromer <cromer@artixlinux.org> -# Maintainer (Artix): artoo <artoo@artixlinux.org> - -pkgbase=opensysusers -pkgname=(opensysusers opensysusers-docs) -pkgver=0.6 -pkgrel=1 -pkgdesc="A standalone utility for handling systemd-style sysusers.d users and groups" -arch=('any') -url="https://gitea.artixlinux.org/artix/opensysusers" -license=('BSD2') -makedepends=('docbook-xsl') -conflicts=('systemd-tools') -source=("${pkgbase}-${pkgver}.tar.gz::https://gitea.artixlinux.org/artix/opensysusers/archive/${pkgver}.tar.gz" - '20-opensysusers.hook' - 'sysusers-hook') -sha256sums=('bd9ea8ea60b269e3db0f0f96cb700bb64306644f9c5dc9a6253a184294f30726' - '8085d3f8e7b2030cef5e0f50622121ea161a2d9d087664f0a11d36f275b24970' - '4222b2496d8bb1ac9c07707e4ef1b334b8b59eb15451ea8ba0fd6e4c93e50c56') - -prepare() { - cd "${pkgbase}" - sed -i 's|$(INITD): $(INITD).in|$(INITD): openrc/$(INITD).in|' Makefile -} - -build() { - cd "${pkgbase}" - make PREFIX=/usr HAVEOPENRC=yes -} - -package_opensysusers() { - depends=('pacman') - replaces=('opensysusers-systemdcompat') - - cd "${pkgbase}" - make PREFIX=/usr DESTDIR="${pkgdir}" install-shared install-default-bin install-openrc - - # pacman hooks - install -Dm755 ${srcdir}/sysusers-hook "$pkgdir"/usr/share/libalpm/scripts/sysusers-hook - install -Dm644 -t "$pkgdir"/usr/share/libalpm/hooks ${srcdir}/*.hook - - ln -snf "/usr/bin/sysusers" "${pkgdir}/usr/bin/systemd-sysusers" - - install -d "${pkgdir}"/etc/runlevels/boot - ln -snf /etc/init.d/opensysusers "${pkgdir}"/etc/runlevels/boot/opensysusers -} - -package_opensysusers-docs() { - pkgdesc="Opensysusers manpages" - depends=('opensysusers') - replaces=(opensysusers-manpages) - - cd "${pkgbase}" - make PREFIX=/usr DESTDIR="${pkgdir}" install-man -} |