Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/gegl: gegl-0.1.8.ebuild ChangeLog
Date: Mon, 02 Jan 2012 11:59:18
Message-Id: 20120102115907.1782920034@flycatcher.gentoo.org
1 sping 12/01/02 11:59:07
2
3 Modified: gegl-0.1.8.ebuild ChangeLog
4 Log:
5 media-libs/gegl: Fix sandbox issues (bug #396687)
6
7 (Portage version: 2.1.10.43/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 media-libs/gegl/gegl-0.1.8.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/gegl-0.1.8.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/gegl-0.1.8.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/gegl-0.1.8.ebuild?r1=1.3&r2=1.4
15
16 Index: gegl-0.1.8.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.1.8.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- gegl-0.1.8.ebuild 1 Jan 2012 21:54:45 -0000 1.3
23 +++ gegl-0.1.8.ebuild 2 Jan 2012 11:59:06 -0000 1.4
24 @@ -1,10 +1,10 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.1.8.ebuild,v 1.3 2012/01/01 21:54:45 sping Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.1.8.ebuild,v 1.4 2012/01/02 11:59:06 sping Exp $
29
30 EAPI=4
31
32 -inherit eutils autotools
33 +inherit gnome2-utils eutils autotools
34
35 DESCRIPTION="A graph based image processing framework"
36 HOMEPAGE="http://www.gegl.org/"
37 @@ -97,16 +97,13 @@
38 }
39
40 src_test() {
41 - # set xdg dirs to not violate sandbox constrains
42 - export XDG_CONFIG_HOME="${T}"
43 - export XDG_CACHE_HOME="${T}"
44 -
45 + gnome2_environment_reset # sandbox issues
46 default
47 }
48
49 src_compile() {
50 - # Sandbox workaround (bug #396687)
51 - GI_SCANNER_DISABLE_CACHE=yes_please default
52 + gnome2_environment_reset # sandbox issues (bug #396687)
53 + default
54 }
55
56 src_install() {
57
58
59
60 1.62 media-libs/gegl/ChangeLog
61
62 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/ChangeLog?rev=1.62&view=markup
63 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/ChangeLog?rev=1.62&content-type=text/plain
64 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/gegl/ChangeLog?r1=1.61&r2=1.62
65
66 Index: ChangeLog
67 ===================================================================
68 RCS file: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v
69 retrieving revision 1.61
70 retrieving revision 1.62
71 diff -u -r1.61 -r1.62
72 --- ChangeLog 1 Jan 2012 21:54:45 -0000 1.61
73 +++ ChangeLog 2 Jan 2012 11:59:07 -0000 1.62
74 @@ -1,6 +1,11 @@
75 # ChangeLog for media-libs/gegl
76 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
77 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v 1.61 2012/01/01 21:54:45 sping Exp $
78 +# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/ChangeLog,v 1.62 2012/01/02 11:59:07 sping Exp $
79 +
80 + 02 Jan 2012; Sebastian Pipping <sping@g.o> gegl-0.1.8.ebuild:
81 + Fix remaining sandbox issues using gnome2_environment_reset of the
82 + gnome2-utils eclass. Idea by Alexandre Rostovtsev (tetromino), testing by
83 + Mike Callahan and others. (bug #396687)
84
85 01 Jan 2012; Sebastian Pipping <sping@g.o> gegl-0.1.8.ebuild:
86 Hopefully fix sandbox violation (bug #396687)