Codebase list libxstream-java / 28a707c
* New upstream release * Add myself to Uploaders * Bump Standards-Version to 3.7.3 * Remove patches/encoding.diff - not required Varun Hiremath 16 years ago
6 changed file(s) with 14 addition(s) and 45 deletion(s). Raw diff Collapse all Expand all
0 libxstream-java (1.3-1) unstable; urgency=low
1
2 * New upstream release
3 * Add myself to Uploaders
4 * Bump Standards-Version to 3.7.3
5 * Remove patches/encoding.diff - not required
6
7 -- Varun Hiremath <varun@debian.org> Thu, 28 Feb 2008 15:30:34 +0530
8
09 libxstream-java (1.2.2-1) unstable; urgency=low
110
211 * initial version (Closes: #453149)
11 Section: contrib/libs
22 Priority: optional
33 Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
4 Uploaders: Torsten Werner <twerner@debian.org>
5 Build-Depends: debhelper (>= 5), cdbs, quilt
4 Uploaders: Torsten Werner <twerner@debian.org>, Varun Hiremath <varun@debian.org>
5 Build-Depends: debhelper (>= 5), cdbs
66 Build-Depends-Indep: ant, sun-java6-jdk, libxom-java, libjoda-time-java,
77 libjettison-java, libcglib2.1-java, libdom4j-java, libxpp3-java,
88 libjdom1-java
9 Standards-Version: 3.7.2
9 Standards-Version: 3.7.3
1010 Homepage: http://xstream.codehaus.org
1111 Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libxstream-java
1212 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libxstream-java
1313
1414 Package: libxstream-java
1515 Architecture: all
16 Depends: java-gcj-compat | java1-runtime | java2-runtime
16 Depends: java-gcj-compat | java1-runtime | java2-runtime
1717 Description: Java library to serialize objects to XML and back again
1818 The features of the XStream library are:
1919 .
55
66 # clean up the upstream tarball
77 unzip $3
8 tar -c -z -f $TAR --exclude '*.jar' $DIR
8 GZIP=--best tar -c -z -f $TAR --exclude '*.jar' $DIR
99 rm -rf $DIR $3
1010
1111 # move to directory 'tarballs'
+0
-38
debian/patches/encoding.diff less more
0 Index: libxstream-java-1.2.2/xstream/build.xml
1 ===================================================================
2 --- libxstream-java-1.2.2.orig/xstream/build.xml 2007-11-25 21:23:38.000000000 +0100
3 +++ libxstream-java-1.2.2/xstream/build.xml 2007-11-25 21:24:03.000000000 +0100
4 @@ -43,14 +43,14 @@
5 </target>
6
7 <target name="compile:java5" depends="compile:init" if="jdk1.5.available" description="Compile all minimum Java 5 specific">
8 - <javac srcdir="${java.src.dir}" destdir="${java.build.dir}" debug="${java.compile.debug}" source="1.5" target="1.5">
9 + <javac encoding="iso8859-1" srcdir="${java.src.dir}" destdir="${java.build.dir}" debug="${java.compile.debug}" source="1.5" target="1.5">
10 <includesfile name="jdk-1.5-minimum.txt" />
11 <classpath refid="classpath"/>
12 </javac>
13 </target>
14
15 <target name="compile:java3" depends="compile:init" description="Compile all minimum Java 1.3 specific">
16 - <javac srcdir="${java.src.dir}" destdir="${java.build.dir}" debug="${java.compile.debug}" source="1.3" target="1.3">
17 + <javac encoding="iso8859-1" srcdir="${java.src.dir}" destdir="${java.build.dir}" debug="${java.compile.debug}" source="1.3" target="1.3">
18 <excludesfile name="jdk-1.5-minimum.txt" />
19 <excludesfile name="jdk-1.5-specific.txt" unless="jdk1.5.available" />
20 <excludesfile name="jdk-1.4-specific.txt" unless="jdk1.4.available" />
21 @@ -62,14 +62,14 @@
22
23 <target name="benchmark:compile" depends="compile">
24 <mkdir dir="${benchmark.build.dir}"/>
25 - <javac srcdir="${benchmark.java.dir}" destdir="${benchmark.build.dir}">
26 + <javac encoding="iso8859-1" srcdir="${benchmark.java.dir}" destdir="${benchmark.build.dir}">
27 <classpath refid="classpath"/>
28 </javac>
29 </target>
30
31 <target name="test:compile" depends="compile, benchmark:compile">
32 <mkdir dir="${test.build.dir}"/>
33 - <javac srcdir="${test.src.dir}" destdir="${test.build.dir}">
34 + <javac encoding="iso8859-1" srcdir="${test.src.dir}" destdir="${test.build.dir}">
35 <excludesfile name="jdk-1.5-minimum.txt" unless="jdk1.5.available" />
36 <excludesfile name="jdk-1.5-specific.txt" unless="jdk1.5.available" />
37 <excludesfile name="jdk-1.4-specific.txt" unless="jdk1.4.available" />
+0
-1
debian/patches/series less more
0 encoding.diff
11
22 include /usr/share/cdbs/1/class/ant.mk
33 include /usr/share/cdbs/1/rules/debhelper.mk
4 include /usr/share/cdbs/1/rules/patchsys-quilt.mk
54
65 JAVA_HOME := /usr/lib/jvm/java-6-sun
76 DEB_ANT_BUILDFILE := xstream/build.xml