Package: libcommons-compress-java
Version: 1.4.1-2
Severity: normal
Tags: patch
User: [email protected]
Usertags: origin-ubuntu quantal ubuntu-patch openjdk-7-transition
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Dear Maintainer,
In Ubuntu, the attached patch was applied to achieve the following:
* Ensure backwards compatible bytecode is built (LP: #1049689):
- d/build.xml: Set target = 1.5 during compilation.
Thanks for considering the patch.
- -- System Information:
Debian Release: wheezy/sid
APT prefers quantal-updates
APT policy: (500, 'quantal-updates'), (500, 'quantal-security'), (500,
'quantal')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 3.5.0-14-generic (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
iQIcBAEBCAAGBQJQWd+nAAoJEL/srsug59jDndMQALL5XyfZEKt0EuN7/2Z4Qj+n
08cg0U7ysNIyHLTIfILoHI6e5s1VnxrYNoCRw7CbckrSbVtcNKlKia9S1K3rbHzE
LfVhaZx6amu+E5kE6ge/7Lm8e7z27yXXeSjxGbMuXQ/2b88ttmRBpfylAmWZTVe/
TztaBG/fe7Qff+shzUHZUBPikwZ+WlchhgDpadjITSqgvl1Rabq0cnkN+SD4NaGz
fg1hmqRStXAlssealKjSYIeQ3CnYVp7Ln9wF+44MgnucdjRr7L49USjLWuS+Y42Z
qct9jFmN9pfHNW0Ysq8l3RXA5H3BxObExEhjWq7rvQehTcfEsj4OeoE1SyiJM5zq
rqYOyrSjs4Q2el1Tta/So2Ci5+urnzoROSVLxJ/IPANMxsPxWFkechHTwIFlxRYI
wT2jzmVHpdssL6dZCwGZpx0E/+BQfbd7YMvTrmGLfvyCN4JFInwpUd+3v86YvAQO
jSas0pqbHVovBRp430yXTH0IlZ8j39GfO+RV7bqXH/ONwBVNVn8Fb4tPyKDv5uf5
m7akZ8gZAjzpuIL8o0PQxli6sWyM5cb0/Rg+0lvFfClWwKKT95PDlrLqrDYxemZe
wEu9gEBZRy7bEj1NAKdRSQYzOde4cYChdRftzbFGBI19c7HqdXlokRgonouGqtP8
efoIw4YCQg27NBPhPFnd
=1P16
-----END PGP SIGNATURE-----
diff -Nru libcommons-compress-java-1.4.1/debian/build.xml libcommons-compress-java-1.4.1/debian/build.xml
--- libcommons-compress-java-1.4.1/debian/build.xml 2012-05-30 00:32:23.000000000 +0100
+++ libcommons-compress-java-1.4.1/debian/build.xml 2012-09-19 15:58:37.000000000 +0100
@@ -10,13 +10,13 @@
<target name="compile" description="o Compile the source files">
<mkdir dir="${class.dir}"/>
<javac srcdir="${source.dir}" destdir="${class.dir}"
- debug="true" source="1.5"/>
+ debug="true" source="1.5" target="1.5"/>
</target>
<target name="test-compile" description="o Compile the test source files" depends="compile">
<mkdir dir="${test.class.dir}"/>
<javac srcdir="${test.source.dir}" destdir="${test.class.dir}"
- debug="true" source="1.5" encoding="ISO-8859-1">
+ debug="true" source="1.5" target="1.5" encoding="ISO-8859-1">
<classpath>
<pathelement location="${class.dir}"/>
<pathelement path="${java.class.path}"/>
diff -Nru libcommons-compress-java-1.4.1/debian/changelog libcommons-compress-java-1.4.1/debian/changelog