From 5a880a90187a2615623e36cf2cc74f14734783be Mon Sep 17 00:00:00 2001 From: David P Date: Tue, 12 Nov 2019 14:53:37 -0300 Subject: addpkg: nonsystemd/polkit 0.116-3.nonsystemd1 Signed-off-by: David P --- nonsystemd/polkit/99-parabola.rules | 21 ++++++++ nonsystemd/polkit/PKGBUILD | 70 +++++++++++++++++++++++++++ nonsystemd/polkit/elogind-configure-fix.patch | 28 +++++++++++ 3 files changed, 119 insertions(+) create mode 100644 nonsystemd/polkit/99-parabola.rules create mode 100644 nonsystemd/polkit/PKGBUILD create mode 100644 nonsystemd/polkit/elogind-configure-fix.patch (limited to 'nonsystemd') diff --git a/nonsystemd/polkit/99-parabola.rules b/nonsystemd/polkit/99-parabola.rules new file mode 100644 index 000000000..22c84181b --- /dev/null +++ b/nonsystemd/polkit/99-parabola.rules @@ -0,0 +1,21 @@ +polkit.addRule(function(action, subject) { + if (action.id.indexOf("org.freedesktop.udisks2.") == 0 && subject.isInGroup("storage")) { + return polkit.Result.YES; + } +}); + +polkit.addRule(function(action, subject) { + if (action.id == "org.freedesktop.login1.power-off" || + action.id == "org.freedesktop.login1.reboot" || + action.id == "org.freedesktop.login1.hibernate" || + action.id == "org.freedesktop.login1.suspend") { + return polkit.Result.YES; + } +}); + +polkit.addRule(function(action, subject) { + if (action.id == "org.freedesktop.upower.hibernate" || + action.id == "org.freedesktop.upower.suspend") { + return polkit.Result.YES; + } +}); diff --git a/nonsystemd/polkit/PKGBUILD b/nonsystemd/polkit/PKGBUILD new file mode 100644 index 000000000..b21abc1b2 --- /dev/null +++ b/nonsystemd/polkit/PKGBUILD @@ -0,0 +1,70 @@ +# Maintainer: David P. +# Maintainer (Arch): Jan de Groot + +pkgname=polkit +pkgver=0.116 +pkgrel=3 +pkgrel+=.nonsystemd1 +pkgdesc="Application development toolkit for controlling system-wide privileges" +arch=(x86_64 i686 armv7h) +license=(LGPL) +url="https://www.freedesktop.org/wiki/Software/polkit/" +depends=(glib2 pam expat elogind js60) +makedepends=(intltool gtk-doc gobject-introspection git autoconf-archive) +provides=(polkit-elogind) +replaces=(polkit-elogind polkit-consolekit) +_commit=941e9329f8d3d43ace8335d206365b212824e686 # tags/0.116 +source=("git+https://gitlab.freedesktop.org/polkit/polkit.git#commit=$_commit" + '99-parabola.rules' + 'elogind-configure-fix.patch') +sha256sums=('SKIP' + 'd28d6ecaf7682860e2b3768bb266bd94313546b7cd0ef3c2eace7b1576c47adb' + 'd90b2a95aa3e9e1ebf9369c038c144e04900e095c5405bc4ba4901c31bf3f59b') + +pkgver() { + cd $pkgname + git describe --tags | sed 's/-/+/g' +} + +prepare() { + cd $pkgname + patch -Np 1 -i ${srcdir}/elogind-configure-fix.patch + NOCONFIGURE=1 ./autogen.sh +} + +build() { + cd $pkgname + + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --libexecdir=/usr/lib \ + --enable-libsystemd-login=no --disable-static \ + --enable-gtk-doc --with-os-type=redhat \ + --enable-libelogind=yes --with-systemdsystemunitdir=no + + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + + make +} + +check() { + cd $pkgname + make -k check || : +} + +package() { + cd $pkgname + make DESTDIR="$pkgdir" install \ + dbusconfdir=/usr/share/dbus-1/system.d \ + rulesdir=/usr/share/polkit-1/rules.d + + install -d -o root -g 102 -m 750 "$pkgdir"/{etc,usr/share}/polkit-1/rules.d + + install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/$pkgname.conf" < +Date: Wed, 11 Apr 2018 13:14:14 +0200 +Subject: [PATCH] configure: fix elogind support + +HAVE_LIBSYSTEMD is used to determine which source files to use. +We have to check if either have_libsystemd or have_libelogind is +true, as both of these need the source files which are used when +HAVE_LIBSYSTEMD is true. +--- + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/configure.ac b/configure.ac +index 36df239..da47ecb 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -221,7 +221,7 @@ AS_IF([test "x$cross_compiling" != "xyes" ], [ + + AC_SUBST(LIBSYSTEMD_CFLAGS) + AC_SUBST(LIBSYSTEMD_LIBS) +-AM_CONDITIONAL(HAVE_LIBSYSTEMD, [test "$have_libsystemd" = "yes"], [Using libsystemd]) ++AM_CONDITIONAL(HAVE_LIBSYSTEMD, [test "$have_libsystemd" = "yes" || test "$have_libelogind" = "yes" ], [Using libsystemd]) + + dnl --------------------------------------------------------------------------- + dnl - systemd unit / service files +-- +2.17.0 -- cgit v1.2.3