[cdk] 36/62: cdk (1:1.0.2-2) UNRELEASED; urgency=low

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Fri Mar 30 21:56:39 BST 2018


This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a commit to branch master
in repository cdk.

commit aecf7ee54d43860c0d5ce4e317254aeaddcc9c63
Author: Paul Cager <paul-debian at home.paulcager.org>
Date:   Tue Apr 8 22:44:17 2008 +0000

    cdk (1:1.0.2-2) UNRELEASED; urgency=low
    
      * Patched MakeJavafilesFiles.java so that it accepts comments of the
        form "/** ... */".
        (Closes: #474908 - FTBFS: NomParserTokenManager cannot be resolved
        to a type).
    
     -- Paul Cager <paul-debian at home.paulcager.org>  Tue, 08 Apr 2008 23:39:41 +0100
---
 debian/changelog                           |  9 +++++++++
 debian/control                             |  2 +-
 debian/patches/10-MakeJavafilesFiles.patch | 11 +++++++++++
 3 files changed, 21 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 59154cb..f3157f4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+cdk (1:1.0.2-2) UNRELEASED; urgency=low
+
+  * Patched MakeJavafilesFiles.java so that it accepts comments of the
+    form "/** ... */".
+    (Closes: #474908 - FTBFS: NomParserTokenManager cannot be resolved
+    to a type).
+
+ -- Paul Cager <paul-debian at home.paulcager.org>  Tue, 08 Apr 2008 23:39:41 +0100
+
 cdk (1:1.0.2-1) unstable; urgency=low
 
   * New upstream release
diff --git a/debian/control b/debian/control
index 6283691..9387958 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: cdk
 Section: libs
 Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Daniel Leidert (dale) <daniel.leidert at wgdd.de>, Michael Koch <konqueror at gmx.de>
+Uploaders: Daniel Leidert (dale) <daniel.leidert at wgdd.de>, Michael Koch <konqueror at gmx.de>, Paul Cager <paul-debian at home.paulcager.org>
 Build-Depends: cdbs, debhelper (>= 5)
 Build-Depends-Indep: ant-optional, antlr, docbook-xsl (>= 1.66.1), javacc, java-gcj-compat-dev, libcommons-cli-java, libcrimson-java, libjdom0-java, liblog4j1.2-java, libmysql-java, libpgjava, libxerces2-java, xsltproc, libjgrapht-java, libvecmath1.2-java, libxom-java, libjama-java
 Standards-Version: 3.7.3
diff --git a/debian/patches/10-MakeJavafilesFiles.patch b/debian/patches/10-MakeJavafilesFiles.patch
new file mode 100644
index 0000000..62fa05e
--- /dev/null
+++ b/debian/patches/10-MakeJavafilesFiles.patch
@@ -0,0 +1,11 @@
+--- cdk-1.0.2.orig/src/net/sf/cdk/tools/MakeJavafilesFiles.java
++++ cdk-1.0.2/src/net/sf/cdk/tools/MakeJavafilesFiles.java
+@@ -140,7 +140,7 @@
+ 				int index = line.indexOf("/**");
+ 				if (index != -1) {
+ 					inComment = true;
+-					if (line.substring(index).indexOf("**/") != -1) inComment = false;
++					if (line.substring(index).indexOf("*/") != -1) inComment = false;
+ 				} else {
+ 					if (line.indexOf("*/") != -1) inComment = false;
+ 				}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/cdk.git



More information about the pkg-java-commits mailing list