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 C18121382C5 for ; Sun, 25 Mar 2018 21:33:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1523E086D; Sun, 25 Mar 2018 21:33:17 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9E863E086D for ; Sun, 25 Mar 2018 21:33:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3171D335C60 for ; Sun, 25 Mar 2018 21:33:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03FE0258 for ; Sun, 25 Mar 2018 21:33:14 +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: <1522013574.78ca11162c0fbf914a5fc99cb91eb160972424a6.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-power/upower/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-power/upower/upower-0.99.5.ebuild sys-power/upower/upower-0.99.7.ebuild X-VCS-Directories: sys-power/upower/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 78ca11162c0fbf914a5fc99cb91eb160972424a6 X-VCS-Branch: master Date: Sun, 25 Mar 2018 21:33:14 +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: 4d6de6ad-a901-49c9-9e87-20bad76c4246 X-Archives-Hash: ff2d87d0ab6b72e7b3df1e2b1a4a6226 commit: 78ca11162c0fbf914a5fc99cb91eb160972424a6 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Mar 25 20:57:11 2018 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Mar 25 21:32:54 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78ca1116 sys-power/upower: fix XDG_* env variables related sandbox issues Closes: https://bugs.gentoo.org/622150 Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-power/upower/upower-0.99.5.ebuild | 3 ++- sys-power/upower/upower-0.99.7.ebuild | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/sys-power/upower/upower-0.99.5.ebuild b/sys-power/upower/upower-0.99.5.ebuild index 2b214839bb8..c46a822f0a9 100644 --- a/sys-power/upower/upower-0.99.5.ebuild +++ b/sys-power/upower/upower-0.99.5.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit ltprune systemd +inherit ltprune systemd xdg-utils DESCRIPTION="D-Bus abstraction for enumerating power devices, querying history and statistics" HOMEPAGE="https://upower.freedesktop.org/" @@ -76,6 +76,7 @@ src_configure() { $(use_enable introspection) $(use_with ios idevice) ) + xdg_environment_reset econf "${myeconfargs[@]}" } diff --git a/sys-power/upower/upower-0.99.7.ebuild b/sys-power/upower/upower-0.99.7.ebuild index a884fe3466c..b41d3df9819 100644 --- a/sys-power/upower/upower-0.99.7.ebuild +++ b/sys-power/upower/upower-0.99.7.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit ltprune systemd +inherit ltprune systemd xdg-utils DESCRIPTION="D-Bus abstraction for enumerating power devices, querying history and statistics" HOMEPAGE="https://upower.freedesktop.org/" @@ -76,6 +76,7 @@ src_configure() { $(use_enable introspection) $(use_with ios idevice) ) + xdg_environment_reset econf "${myeconfargs[@]}" }