Tony Mancill pushed to branch master at Debian Java Maintainers / jtreg
Commits: 75b3bbc3 by tony mancill at 2018-11-21T04:44:36Z Bump Standards-Version to 4.2.1 - - - - - e781c733 by tony mancill at 2018-11-21T04:49:01Z Apply patch for 913853 from Tiago - - - - - 48d1ec5a by tony mancill at 2018-11-21T04:50:06Z prepare changelog for upload to unstable - - - - - 4 changed files: - debian/changelog - debian/control - debian/patches/series - + debian/patches/use-release-instead-of-source-target.patch Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,15 @@ +jtreg (4.2-b13-2) unstable; urgency=medium + + * Team upload. + + [ Tiago Stürmer Daitx ] + * Use release instead of source/target. (Closes: #913853, LP: #1803628) + + [ tony mancill ] + * Bump Standards-Version to 4.2.1 + + -- tony mancill <[email protected]> Tue, 20 Nov 2018 20:49:59 -0800 + jtreg (4.2-b13-1) unstable; urgency=medium * Team upload. ===================================== debian/control ===================================== @@ -10,7 +10,7 @@ Build-Depends-Indep: default-jdk, javahelp2, libxalan2-java, testng -Standards-Version: 4.2.0 +Standards-Version: 4.2.1 Vcs-Git: https://salsa.debian.org/java-team/jtreg.git Vcs-Browser: https://salsa.debian.org/java-team/jtreg Homepage: http://openjdk.java.net/jtreg ===================================== debian/patches/series ===================================== @@ -1,2 +1,3 @@ launchers.patch add-jcommander-to-classpath.patch +use-release-instead-of-source-target.patch ===================================== debian/patches/use-release-instead-of-source-target.patch ===================================== @@ -0,0 +1,22 @@ +Description: use 'release' instead of 'target' and 'source' + When running jtreg with openjdk-8 and the agentvm it will fail to run with + "java.lang.NoSuchMethodError: java.nio.ByteBuffer.flip()Ljava/nio/ByteBuffer". + An easy fix is to replace "source=1.7 target=1.7" with "release=7" in the + ant build script. +Author: Tiago Stürmer Daitx <[email protected]> +Bug-Debian: https://bugs.debian.org/913853 +Bug-Ubuntu: https://launchpad.net/bugs/1803628 +Last-Update: 2018-11-01 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/make/build.xml ++++ b/make/build.xml +@@ -172,7 +172,7 @@ + + <target name="-compile-jtreg.classes"> + <mkdir dir="${build.classes.dir}"/> +- <javac encoding="iso-8859-1" source="1.7" target="1.7" ++ <javac encoding="iso-8859-1" release="7" + debug="true" debuglevel="source,lines" + srcdir="${src.classes.dir}" + destdir="${build.classes.dir}" View it on GitLab: https://salsa.debian.org/java-team/jtreg/compare/ef73ed49463ff6c02b017e58e565e2cf492fcdfd...48d1ec5a8651d03cd6e1a81ce339f16fcd92663d -- View it on GitLab: https://salsa.debian.org/java-team/jtreg/compare/ef73ed49463ff6c02b017e58e565e2cf492fcdfd...48d1ec5a8651d03cd6e1a81ce339f16fcd92663d You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ pkg-java-commits mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

