From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 44B36138359 for ; Mon, 3 Aug 2020 00:10:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CD37E0891; Mon, 3 Aug 2020 00:10:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0538CE0891 for ; Mon, 3 Aug 2020 00:10:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB7A234F01B for ; Mon, 3 Aug 2020 00:10:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 279B62E7 for ; Mon, 3 Aug 2020 00:10:42 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1596413272.3c138d61b2d48824e7626dd92a98269e065babed.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-power-manager/ X-VCS-Repository: repo/gentoo X-VCS-Files: mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild X-VCS-Directories: mate-extra/mate-power-manager/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 3c138d61b2d48824e7626dd92a98269e065babed X-VCS-Branch: master Date: Mon, 3 Aug 2020 00:10:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a3f79715-c269-4972-95ed-a74ae611dcbe X-Archives-Hash: 3eda85d645f20075579fb9ba50032f03 commit: 3c138d61b2d48824e7626dd92a98269e065babed Author: Matt Turner gentoo org> AuthorDate: Mon Aug 3 00:06:24 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Aug 3 00:07:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c138d61 mate-extra/mate-power-manager: Disable libgnome-keyring support Bug: https://bugs.gentoo.org/713048 Signed-off-by: Matt Turner gentoo.org> .../mate-power-manager-1.24.1-r2.ebuild | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild b/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild new file mode 100644 index 00000000000..55bf4d7a986 --- /dev/null +++ b/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit mate + +if [[ ${PV} != 9999 ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +DESCRIPTION="A session daemon for MATE that makes it easy to manage your laptop or desktop" + +LICENSE="FDL-1.1+ GPL-2+ LGPL-2+" +SLOT="0" +IUSE="+applet elogind policykit systemd test" + +REQUIRED_USE="?? ( elogind systemd )" + +# Interactive testsuite. +RESTRICT="test" + +COMMON_DEPEND=" + >=dev-libs/dbus-glib-0.70 + >=dev-libs/glib-2.50:2 + >=media-libs/libcanberra-0.10:0[gtk3] + >=sys-apps/dbus-1 + >=x11-apps/xrandr-1.3 + >=x11-libs/cairo-1 + >=x11-libs/gdk-pixbuf-2.11:2 + >=x11-libs/gtk+-3.22:3 + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXrandr + >=x11-libs/libnotify-0.7:0 + x11-libs/pango + applet? ( >=mate-base/mate-panel-1.17.0 ) + >=sys-power/upower-0.99.8:=" + +RDEPEND="${COMMON_DEPEND} + virtual/libintl + policykit? ( >=mate-extra/mate-polkit-1.6 ) + systemd? ( sys-apps/systemd ) + !systemd? ( + elogind? ( sys-auth/elogind ) + )" + +DEPEND="${COMMON_DEPEND} + app-text/docbook-xml-dtd:4.3 + app-text/rarian + >=app-text/scrollkeeper-dtd-1:1.0 + app-text/yelp-tools + dev-libs/libxml2 + dev-util/glib-utils + >=sys-devel/gettext-0.19.8:* + virtual/pkgconfig + x11-base/xorg-proto" + +src_configure() { + mate_src_configure \ + --without-keyring \ + --enable-compile-warnings=minimum \ + $(use_enable applet applets) \ + $(use_enable test tests) +} + +src_test() { + unset DBUS_SESSION_BUS_ADDRESS + + dbus-launch Xemake check || die "Test phase failed" +}