Gentoo Archives: gentoo-commits

From: "Ralph Sennhauser (sera)" <sera@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/jtds/files: jtds-1.2.5-build.xml.patch jtds-1.3.0-build.xml.patch
Date: Tue, 30 Oct 2012 19:25:22
Message-Id: 20121030192455.0A0B621601@flycatcher.gentoo.org
1 sera 12/10/30 19:24:54
2
3 Added: jtds-1.2.5-build.xml.patch
4 jtds-1.3.0-build.xml.patch
5 Log:
6 Revbump to restrict to java 6. #440010
7 Version bump for java 7.
8
9 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xDA575EB7)
10
11 Revision Changes Path
12 1.1 dev-java/jtds/files/jtds-1.2.5-build.xml.patch
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jtds/files/jtds-1.2.5-build.xml.patch?rev=1.1&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jtds/files/jtds-1.2.5-build.xml.patch?rev=1.1&content-type=text/plain
16
17 Index: jtds-1.2.5-build.xml.patch
18 ===================================================================
19 --- build.xml.orig 2009-11-07 18:55:41.000000000 +0100
20 +++ build.xml 2009-11-07 18:58:17.000000000 +0100
21 @@ -75,13 +75,13 @@
22 </junit>
23 </target>
24
25 - <target name="dist" depends="clean,compile,javadoc">
26 + <target name="jar" depends="compile">
27 <mkdir dir="${dist}"/>
28 <!-- Runtime jar -->
29 <jar basedir="${build}/classes"
30 excludes="net/sourceforge/jtds/test/*.class"
31 includes="**/*"
32 - jarfile="${build}/${ant.project.name}-${version}.jar">
33 + jarfile="${build}/${ant.project.name}.jar">
34 <manifest>
35 <attribute name="Implementation-Title" value="jTDS JDBC Driver"/>
36 <attribute name="Implementation-Version" value="${version}"/>
37 @@ -92,6 +92,10 @@
38 <attribute name="Main-Class" value="net.sourceforge.jtds.jdbc.Driver"/>
39 </manifest>
40 </jar>
41 +
42 + </target>
43 +
44 + <target name="dist" depends="jar">
45
46 <!-- Source package -->
47 <copy todir="${dist}/tmp/doc">
48
49
50
51 1.1 dev-java/jtds/files/jtds-1.3.0-build.xml.patch
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jtds/files/jtds-1.3.0-build.xml.patch?rev=1.1&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/jtds/files/jtds-1.3.0-build.xml.patch?rev=1.1&content-type=text/plain
55
56 Index: jtds-1.3.0-build.xml.patch
57 ===================================================================
58 --- build.xml
59 +++ build.xml
60 @@ -117,7 +117,9 @@
61 </junit>
62 </target>
63
64 - <target name="dist" depends="clean,compile,javadoc">
65 + <target name="dist" depends="clean,jar,javadoc"/>
66 +
67 + <target name="jar" depends="compile">
68 <mkdir dir="${dist}"/>
69
70 <!-- runtime jar -->