Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/graphene/
Date: Mon, 30 Jul 2018 21:17:16
Message-Id: 1532985268.272ff1f7eab3cf3a6460c3c24da7017a09c06080.leio@gentoo
1 commit: 272ff1f7eab3cf3a6460c3c24da7017a09c06080
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 30 21:10:42 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 30 21:14:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=272ff1f7
7
8 media-libs/graphene: add missing environment reset
9
10 Add missing xdg_environment_reset, otherwise things might fail
11 if certain XDG_* env vars are set in the environment.
12
13 Closes: https://bugs.gentoo.org/662478
14 Package-Manager: Portage-2.3.43, Repoman-2.3.10
15
16 media-libs/graphene/graphene-1.8.2.ebuild | 3 ++-
17 1 file changed, 2 insertions(+), 1 deletion(-)
18
19 diff --git a/media-libs/graphene/graphene-1.8.2.ebuild b/media-libs/graphene/graphene-1.8.2.ebuild
20 index 1c5ae38fb9b..5cb827ba298 100644
21 --- a/media-libs/graphene/graphene-1.8.2.ebuild
22 +++ b/media-libs/graphene/graphene-1.8.2.ebuild
23 @@ -3,7 +3,7 @@
24
25 EAPI=6
26 PYTHON_COMPAT=( python3_{4,5,6,7} )
27 -inherit meson multilib-minimal python-any-r1
28 +inherit xdg-utils meson multilib-minimal python-any-r1
29
30 DESCRIPTION="A thin layer of types for graphic libraries"
31 HOMEPAGE="https://ebassi.github.io/graphene/"
32 @@ -26,6 +26,7 @@ DEPEND="${RDEPEND}
33 "
34
35 src_prepare() {
36 + xdg_environment_reset
37 default
38 # Disable installed-tests
39 sed -e 's/install: true/install: false/g' -i src/tests/meson.build || die