Gentoo Archives: gentoo-commits

From: "Patrice Clement (monsieurp)" <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/trove/files: trove-3.0.2-java.io.tmpdir.patch
Date: Tue, 30 Jun 2015 20:34:27
Message-Id: 20150630203422.6D05573A@oystercatcher.gentoo.org
1 monsieurp 15/06/30 20:34:22
2
3 Added: trove-3.0.2-java.io.tmpdir.patch
4 Log:
5 Patch build.xml and write tmp files elsewhere but NOT in /tmp. EAPI 5 bump. Fix bug 553652.
6
7 Signed-off-by: Patrice Clement <monsieurp@g.o>
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 93491BB8)
9
10 Revision Changes Path
11 1.1 dev-java/trove/files/trove-3.0.2-java.io.tmpdir.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/trove/files/trove-3.0.2-java.io.tmpdir.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/trove/files/trove-3.0.2-java.io.tmpdir.patch?rev=1.1&content-type=text/plain
15
16 Index: trove-3.0.2-java.io.tmpdir.patch
17 ===================================================================
18 --- build.xml.orig 2015-06-30 21:07:56.621000000 +0000
19 +++ build.xml 2015-06-30 21:10:19.060000000 +0000
20 @@ -99,6 +99,7 @@
21 <classpath>
22 <pathelement path="${output.generator_classes}"/>
23 </classpath>
24 + <sysproperty key="java.io.tmpdir" value="${output.tmp}" />
25 </java>
26 </target>
27
28 @@ -339,6 +340,7 @@
29 <mkdir dir="${output.generated}/gnu"/>
30 <mkdir dir="${output.generated}/gnu/trove"/>
31 <mkdir dir="${output.lib}"/>
32 + <mkdir dir="${output.tmp}"/>
33 <mkdir dir="${dist.root}"/>
34 </target>
35
36 @@ -442,4 +444,4 @@
37 <format property="fullVersion" pattern="'build time' yyMMddHHmmss"/>
38 </tstamp>
39 </target>
40 -</project>
41 \ No newline at end of file
42 +</project>