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 A3506138334 for ; Sun, 24 Jun 2018 19:17:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 017DFE0963; Sun, 24 Jun 2018 19:17:51 +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 CCA58E0963 for ; Sun, 24 Jun 2018 19:17:50 +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 E9FD7335CB8 for ; Sun, 24 Jun 2018 19:17:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 454A3353 for ; Sun, 24 Jun 2018 19:17:45 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1529867841.ce71d607518070fe551b46890bbb97ad1ad82fc2.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-power-manager/ X-VCS-Repository: proj/gnome X-VCS-Files: gnome-extra/gnome-power-manager/gnome-power-manager-3.26.0.ebuild X-VCS-Directories: gnome-extra/gnome-power-manager/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: ce71d607518070fe551b46890bbb97ad1ad82fc2 X-VCS-Branch: master Date: Sun, 24 Jun 2018 19:17:45 +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-Archives-Salt: 948d1fb2-b78c-4b5a-adf0-7ff0995309bb X-Archives-Hash: f34cfd4ba640c94b2b7c6a4756a4f9b7 commit: ce71d607518070fe551b46890bbb97ad1ad82fc2 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Jun 24 18:58:00 2018 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Jun 24 19:17:21 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=ce71d607 gnome-extra/gnome-power-manager: 3.24.0 → 3.26.0 Package-Manager: Portage-2.3.40, Repoman-2.3.9 Manifest-Sign-Key: 0x5A56C8CD0C13248A .../gnome-power-manager-3.26.0.ebuild | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gnome-extra/gnome-power-manager/gnome-power-manager-3.26.0.ebuild b/gnome-extra/gnome-power-manager/gnome-power-manager-3.26.0.ebuild new file mode 100644 index 00000000..c1e94f30 --- /dev/null +++ b/gnome-extra/gnome-power-manager/gnome-power-manager-3.26.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnome-meson virtualx + +DESCRIPTION="GNOME power management service" +HOMEPAGE="https://projects.gnome.org/gnome-power-manager/" + +LICENSE="GPL-2" +SLOT="0" +IUSE="test" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" + +COMMON_DEPEND=" + >=dev-libs/glib-2.45.8:2 + >=x11-libs/gtk+-3.3.8:3 + >=x11-libs/cairo-1 + >=sys-power/upower-0.99:= +" +RDEPEND="${COMMON_DEPEND} + x11-themes/adwaita-icon-theme +" +# libxml2 required for glib-compile-resources +DEPEND="${COMMON_DEPEND} + app-text/docbook-sgml-dtd:4.1 + app-text/docbook-sgml-utils + dev-libs/appstream-glib + dev-libs/libxml2:2 + >=sys-devel/gettext-0.19.7 + x11-base/xorg-proto + virtual/pkgconfig + test? ( sys-apps/dbus ) +" + +# docbook-sgml-utils and docbook-sgml-dtd-4.1 used for creating man pages +# (files under ${S}/man). +# docbook-xml-dtd-4.4 and -4.1.2 are used by the xml files under ${S}/docs. + +src_configure() { + gnome-meson_src_configure \ + $(meson_use test enable-tests) +} + +src_test() { + virtx meson_src_test +}