Received: from out.migadu.com (out.migadu.com [91.121.223.63]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id A9134781D72 for ; Fri, 6 Dec 2019 22:51:20 +0000 (UTC) Received: (Migadu outbound); Fri, 06 Dec 2019 22:51:20 +0000 Authentication-Results: out.migadu.com; auth=pass (plain) Received: from loki.fritz.box (pD9FD6660.dip0.t-ipconnect.de [217.253.102.96]) by out.migadu.com (Haraka/2.8.16) with ESMTPSA id 118F21E1-BB1F-4B51-8292-F0FFA74DD015.1 envelope-from (authenticated bits=0) (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 verify=FAIL); Fri, 06 Dec 2019 22:51:20 +0000 From: Galen Abell To: alpine-aports@lists.alpinelinux.org Cc: Galen Abell Subject: [PATCH v2] community/swayidle: add elogind support Date: Fri, 6 Dec 2019 23:51:18 +0100 Message-Id: <20191206225118.19415-1-galen@galenabell.com> X-Mailer: git-send-email 2.24.0 In-Reply-To: <20191206232338.16d0a279@Impreza> References: <20191206232338.16d0a279@Impreza> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit DKIM-Signature: v=1;a=rsa-sha256;bh=GGaPO7jtjPYyd20LPiQLF87f/rccwoAZNfUihPxQ49k=;c=relaxed/simple;d=galenabell.com;h=from:subject:date:to;s=default;b=E/1hHJ4CKK/yLMjhNxFlCCEg2nsbWB+gM7CdG9HRz5+Rq82awF53PvdrwwWHfOvoncL9+iWezjeZxG0OKUKr4vYW1ntRwmoh56FhZmd1gjb5fz3oqQGnSI/lhS6wBKhJ1S/PU9MGrYfceXfk7DTre4ebsoGLtlK2shr1nYyJ5vM= build swayidle with elogind support to enable `before-sleep` option --- Bumped pkgrel and removed unnecessary dependency, thanks! community/swayidle/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/community/swayidle/APKBUILD b/community/swayidle/APKBUILD index 2b2acc92a4..4ea427c06b 100644 --- a/community/swayidle/APKBUILD +++ b/community/swayidle/APKBUILD @@ -2,13 +2,14 @@ # Maintainer: Drew DeVault pkgname=swayidle pkgver=1.5 -pkgrel=0 +pkgrel=1 pkgdesc="Idle management daemon for Wayland" url="http://swaywm.org" arch="all" license="MIT" options="!check" # no test suite included makedepends=" + elogind-dev meson ninja scdoc @@ -24,7 +25,7 @@ subpackages=" source="$pkgname-$pkgver.tar.gz::https://github.com/swaywm/$pkgname/archive/$pkgver.tar.gz" build() { - meson build --prefix /usr + meson build -Dlogind=enabled -Dlogind-provider=elogind --prefix /usr ninja -C build } -- 2.24.0