[Pkg-cmake-commits] [cmake] 01/01: Fix detection of OpenJDK 9 early access builds.
Felix Geyer
fgeyer at moszumanska.debian.org
Tue Jul 25 17:34:25 UTC 2017
This is an automated email from the git hooks/post-receive script.
fgeyer pushed a commit to branch master
in repository cmake.
commit 8b36be987158e46ee9216a121561554969a4289f
Author: Felix Geyer <fgeyer at debian.org>
Date: Tue Jul 25 18:14:01 2017 +0200
Fix detection of OpenJDK 9 early access builds.
Closes: #868327
---
debian/changelog | 2 ++
debian/patches/fix-java9-detection.patch | 27 +++++++++++++++++++++++++++
debian/patches/series | 1 +
3 files changed, 30 insertions(+)
diff --git a/debian/changelog b/debian/changelog
index d8bb67e..1b647dc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,8 @@ cmake (3.9.0-1) UNRELEASED; urgency=medium
* Drop ancient Breaks/Replaces/Conflicts.
* No longer suggest eclipse and codeblocks. (Closes: #750465)
* Add Python and Java to findmodules autopkgtest.
+ * Fix detection of OpenJDK 9 early access builds. (Closes: #868327)
+ - Add fix-java9-detection.patch
-- Felix Geyer <fgeyer at debian.org> Thu, 20 Jul 2017 19:39:13 +0200
diff --git a/debian/patches/fix-java9-detection.patch b/debian/patches/fix-java9-detection.patch
new file mode 100644
index 0000000..be76d59
--- /dev/null
+++ b/debian/patches/fix-java9-detection.patch
@@ -0,0 +1,27 @@
+From e42fa012b6c3e1ce8f7c8bdcaa87f768d8f4037e Mon Sep 17 00:00:00 2001
+From: Craig Scott <craig.scott at crascit.com>
+Date: Tue, 25 Jul 2017 22:23:55 +1000
+Subject: [PATCH] Allow early access version trailing string to be mixed case
+
+The original regex was expecting to match strings like "ea", but it has
+been reported that other strings like "Debian" are also possible.
+---
+ Modules/FindJava.cmake | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Modules/FindJava.cmake b/Modules/FindJava.cmake
+index 3d32560..d762452 100644
+--- a/Modules/FindJava.cmake
++++ b/Modules/FindJava.cmake
+@@ -143,7 +143,7 @@ if(Java_JAVA_EXECUTABLE)
+ if(var MATCHES "java version \"([0-9]+\\.[0-9]+\\.[0-9_.]+.*)\"")
+ # This is most likely Sun / OpenJDK, or maybe GCJ-java compat layer
+ set(Java_VERSION_STRING "${CMAKE_MATCH_1}")
+- elseif(var MATCHES "openjdk version \"([0-9]+)-[a-z]+\"")
++ elseif(var MATCHES "openjdk version \"([0-9]+)-[A-Za-z]+\"")
+ # OpenJDK 9 early access builds or locally built
+ set(Java_VERSION_STRING "1.${CMAKE_MATCH_1}.0")
+ elseif(var MATCHES "java full version \"kaffe-([0-9]+\\.[0-9]+\\.[0-9_]+)\"")
+--
+libgit2 0.25.0
+
diff --git a/debian/patches/series b/debian/patches/series
index e9e2070..1ec4301 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
FindBoost_add_-lpthread_#563479.diff
qt_import_dir_variable.diff
fix-ftbfs-on-kfreebsd.patch
+fix-java9-detection.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-cmake/cmake.git
More information about the Pkg-cmake-commits
mailing list