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 EAE6B138334 for ; Mon, 30 Jul 2018 21:17:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97986E0875; Mon, 30 Jul 2018 21:17:15 +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 69ABBE0875 for ; Mon, 30 Jul 2018 21:17:15 +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 E3669335C96 for ; Mon, 30 Jul 2018 21:17:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF69C385 for ; Mon, 30 Jul 2018 21:17:11 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1532985268.272ff1f7eab3cf3a6460c3c24da7017a09c06080.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/graphene/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/graphene/graphene-1.8.2.ebuild X-VCS-Directories: media-libs/graphene/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 272ff1f7eab3cf3a6460c3c24da7017a09c06080 X-VCS-Branch: master Date: Mon, 30 Jul 2018 21:17:11 +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: f2af8c34-3a5d-40a6-9f65-6891730b1d55 X-Archives-Hash: b7350b19eafd6724f3aabb095fe2754a commit: 272ff1f7eab3cf3a6460c3c24da7017a09c06080 Author: Mart Raudsepp gentoo org> AuthorDate: Mon Jul 30 21:10:42 2018 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Mon Jul 30 21:14:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=272ff1f7 media-libs/graphene: add missing environment reset Add missing xdg_environment_reset, otherwise things might fail if certain XDG_* env vars are set in the environment. Closes: https://bugs.gentoo.org/662478 Package-Manager: Portage-2.3.43, Repoman-2.3.10 media-libs/graphene/graphene-1.8.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media-libs/graphene/graphene-1.8.2.ebuild b/media-libs/graphene/graphene-1.8.2.ebuild index 1c5ae38fb9b..5cb827ba298 100644 --- a/media-libs/graphene/graphene-1.8.2.ebuild +++ b/media-libs/graphene/graphene-1.8.2.ebuild @@ -3,7 +3,7 @@ EAPI=6 PYTHON_COMPAT=( python3_{4,5,6,7} ) -inherit meson multilib-minimal python-any-r1 +inherit xdg-utils meson multilib-minimal python-any-r1 DESCRIPTION="A thin layer of types for graphic libraries" HOMEPAGE="https://ebassi.github.io/graphene/" @@ -26,6 +26,7 @@ DEPEND="${RDEPEND} " src_prepare() { + xdg_environment_reset default # Disable installed-tests sed -e 's/install: true/install: false/g' -i src/tests/meson.build || die