[Git][java-team/opentest4j][master] 4 commits: Patch build system JDK detection for Java > 11 (Closes: #1011776)
Tony Mancill (@tmancill)
gitlab at salsa.debian.org
Fri May 27 06:11:01 BST 2022
Tony Mancill pushed to branch master at Debian Java Maintainers / opentest4j
Commits:
ad1ab181 by tony mancill at 2022-05-26T22:03:02-07:00
Patch build system JDK detection for Java > 11 (Closes: #1011776)
- - - - -
e78688b2 by tony mancill at 2022-05-26T22:05:19-07:00
Freshen years in debian/copyright
- - - - -
121ac153 by tony mancill at 2022-05-26T22:05:41-07:00
Bump Standards-Version to 4.6.1
- - - - -
30360593 by tony mancill at 2022-05-26T22:06:07-07:00
Prepare changelog for upload to unstable
- - - - -
5 changed files:
- debian/changelog
- debian/control
- debian/copyright
- + debian/patches/05-build-on-java-17.patch
- debian/patches/series
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,12 @@
+opentest4j (1.2.0-4) unstable; urgency=medium
+
+ * Team upload.
+ * Patch build system JDK detection for Java > 11 (Closes: #1011776)
+ * Freshen years in debian/copyright
+ * Bump Standards-Version to 4.6.1
+
+ -- tony mancill <tmancill at debian.org> Thu, 26 May 2022 22:05:43 -0700
+
opentest4j (1.2.0-3) unstable; urgency=medium
* Team upload.
=====================================
debian/control
=====================================
@@ -9,7 +9,7 @@ Build-Depends:
gradle-debian-helper,
junit4,
maven-repo-helper
-Standards-Version: 4.5.1
+Standards-Version: 4.6.1
Vcs-Git: https://salsa.debian.org/java-team/opentest4j.git
Vcs-Browser: https://salsa.debian.org/java-team/opentest4j
Homepage: https://github.com/ota4j-team/opentest4j
=====================================
debian/copyright
=====================================
@@ -10,7 +10,9 @@ Copyright: 2015-2019, Marc Philipp
License: Apache-2.0
Files: debian/*
-Copyright: 2019-2021, Emmanuel Bourg
+Copyright: 2019-2022, Emmanuel Bourg
+ 2019-2022, Markus Koschany <apo at debian.org>
+ 2021-2022, tony mancill <tmancill at debian.org>
License: Apache-2.0
License: Apache-2.0
=====================================
debian/patches/05-build-on-java-17.patch
=====================================
@@ -0,0 +1,26 @@
+Description: attempt build on Java versions >= 11
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1011776
+Author: tony mancill <tmancill at debian.org>
+
+--- a/settings.gradle
++++ b/settings.gradle
+@@ -1,7 +1,7 @@
+ rootProject.name = 'opentest4j'
+
+ // Require Java 11
+-if (!JavaVersion.current().java11) {
++if (!JavaVersion.current().isJava11Compatible()) {
+ throw new GradleException('The OpenTest4J build requires Java 11. ' +
+ "Currently executing with Java ${JavaVersion.current()}.")
+ }
+--- a/build.gradle
++++ b/build.gradle
+@@ -31,7 +31,7 @@
+ }
+
+ compileJava {
+- options.compilerArgs = ['--release', '6']
++ options.compilerArgs = ['--release', '8']
+ }
+
+ task compileModule(type: JavaCompile) {
=====================================
debian/patches/series
=====================================
@@ -2,3 +2,4 @@
02-ignore-github-pages-plugin.patch
03-ignore-spotless-plugin.patch
04-reproducible-builds-timestamp.patch
+05-build-on-java-17.patch
View it on GitLab: https://salsa.debian.org/java-team/opentest4j/-/compare/76dbb31cc041da91c676dcfb7ac24257b0a33f1d...30360593664c3faecf5837c236e68f893fc08855
--
View it on GitLab: https://salsa.debian.org/java-team/opentest4j/-/compare/76dbb31cc041da91c676dcfb7ac24257b0a33f1d...30360593664c3faecf5837c236e68f893fc08855
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20220527/aec785b2/attachment.htm>
More information about the pkg-java-commits
mailing list