[Git][java-team/javacc5][master] Update Vcs-* URLs to use javacc5 repo.

2022-05-18 Thread Bas Couwenberg (@sebastic)


Bas Couwenberg pushed to branch master at Debian Java Maintainers / javacc5


Commits:
8860c724 by Bas Couwenberg at 2022-05-19T05:55:09+02:00
Update Vcs-* URLs to use javacc5 repo.

- - - - -


2 changed files:

- debian/changelog
- debian/control


Changes:

=
debian/changelog
=
@@ -1,3 +1,9 @@
+javacc5 (5.0-12) UNRELEASED; urgency=medium
+
+  * Update Vcs-* URLs to use javacc5 repo.
+
+ -- Bas Couwenberg   Thu, 19 May 2022 05:54:38 +0200
+
 javacc5 (5.0-11) unstable; urgency=medium
 
   * Source-only upload


=
debian/control
=
@@ -13,8 +13,8 @@ Build-Depends:
  libxalan2-java,
  maven-repo-helper
 Standards-Version: 4.6.1
-Vcs-Git: https://salsa.debian.org/java-team/javacc.git
-Vcs-Browser: https://salsa.debian.org/java-team/javacc
+Vcs-Git: https://salsa.debian.org/java-team/javacc5.git
+Vcs-Browser: https://salsa.debian.org/java-team/javacc5
 Homepage: https://javacc.org
 
 Package: javacc5



View it on GitLab: 
https://salsa.debian.org/java-team/javacc5/-/commit/8860c7241bb23b82b11937d48b38a1fe2c08f2b1

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/javacc5/-/commit/8860c7241bb23b82b11937d48b38a1fe2c08f2b1
You're receiving this email because of your account on salsa.debian.org.


___
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits


Bug#884537: RFA: jts -- JTS Topology Suite

2017-12-16 Thread Bas Couwenberg
Package: wnpp
Severity: normal

Due to the lack of Java expertise in the Debian GIS team, and all
reverse dependencies of the jts package being maintained by the
Debian Java Maintainers, I request the latter to adopt the jts package.

The package description is:

 JTS is a java library which provides:
  * an implementation of the spatial data model defined
in the OGC Simple Features Specification for SQL (SFS)
  * a complete, consistent, implementation of fundamental 2D spatial algorithms
  * an explicit precision model, with algorithms that gracefully handle
situations that result in dimensional collapse
  * robust implementations of key computational geometric operations
  * I/O in Well-Known Text format

Kind Regards,

Bas

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#880746: libmetadata-extractor-java: Manifest references xmpcore-debian.jar, but libxmpcore-java does not provide this file.

2017-11-04 Thread Bas Couwenberg
Source: libmetadata-extractor-java
Version: 2.10.1-2
Severity: important
Control: affects -1 src:gpsprune

Dear Maintainer,

As reported in the upstream GpsPrune issue [0], loading JPG files using
libmetadata-extractor-java causes NoClassDefFoundError exceptions:

 Link: com/adobe/xmp/XMPException
 java.lang.NoClassDefFoundError: com/adobe/xmp/XMPException
 at com.drew.imaging.jpeg.JpegMetadataReader.(JpegMetadataReader.java:57)
 at 
com.drew.imaging.ImageMetadataReader.readMetadata(ImageMetadataReader.java:111)
 at 
com.drew.imaging.ImageMetadataReader.readMetadata(ImageMetadataReader.java:161)
 at tim.prune.jpeg.ExternalExifLibrary.getJpegData(ExternalExifLibrary.java:36)
 at tim.prune.jpeg.ExifGateway.getJpegData(ExifGateway.java:46)
 at tim.prune.load.JpegLoader.createPhoto(JpegLoader.java:227)
 at tim.prune.load.JpegLoader.processFile(JpegLoader.java:204)
 at tim.prune.load.JpegLoader.processFileList(JpegLoader.java:172)
 at tim.prune.load.JpegLoader.run(JpegLoader.java:127)
 at java.lang.Thread.run(Thread.java:748)
 Caused by: java.lang.ClassNotFoundException: com.adobe.xmp.XMPException
 at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:357)

The GpsPrune upstream developer traced this issue down to an incorrect
jar being referenced in the manifest of libmetdata-extractor-java:

"
 I had a look at the jars, and the manifest of GpsPrune's jar correctly
 references the metadata-extractor.jar. However, the manifest of the
 metadata-extractor.jar refers to a file called "xmpcore-debian.jar"
 instead of "xmpcore.jar" as I would expect.
"

The xmpcore-debian.jar file is not provided by the libxmpcore-java
package, only xmpcore.jar & xmpcore-5.1.2.jar.

The attached patch uses jh_classpath from javahelper to fix the
Class-Path in metadata-extractor.jar.

Please consider applying this patch, or fix this issue in a different
way.

[0] https://github.com/activityworkshop/GpsPrune/issues/15

Kind Regards,

Bas
>From 70f18e987b094e2f562b68bb459aa7aca94f9b0c Mon Sep 17 00:00:00 2001
From: Bas Couwenberg <sebas...@xs4all.nl>
Date: Sat, 4 Nov 2017 17:48:37 +0100
Subject: Use javahelper to fix the Class-Path for xmpcore.jar.

---
 debian/changelog| 7 +++
 debian/control  | 1 +
 debian/libmetadata-extractor-java.classpath | 1 +
 debian/rules| 4 
 4 files changed, 13 insertions(+)
 create mode 100644 debian/libmetadata-extractor-java.classpath

diff --git a/debian/changelog b/debian/changelog
index 4cd2d38..a87850d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libmetadata-extractor-java (2.10.1-2.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Use javahelper to fix the Class-Path for xmpcore.jar.
+
+ -- Bas Couwenberg <sebas...@debian.org>  Sat, 04 Nov 2017 17:48:01 +0100
+
 libmetadata-extractor-java (2.10.1-2) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/control b/debian/control
index 06c4607..7dad3d2 100644
--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@ Uploaders: Emmanuel Bourg <ebo...@apache.org>
 Build-Depends: debhelper (>= 10),
default-jdk,
default-jdk-doc,
+   javahelper,
junit4,
libxmpcore-java,
libmaven-javadoc-plugin-java,
diff --git a/debian/libmetadata-extractor-java.classpath 
b/debian/libmetadata-extractor-java.classpath
new file mode 100644
index 000..10ba889
--- /dev/null
+++ b/debian/libmetadata-extractor-java.classpath
@@ -0,0 +1 @@
+usr/share/java/metadata-extractor.jar /usr/share/java/xmpcore.jar
diff --git a/debian/rules b/debian/rules
index fa23c8f..194f12c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,5 +3,9 @@
 %:
dh $@ --buildsystem=maven
 
+override_dh_install:
+   dh_install
+   jh_classpath -v
+
 get-orig-source::
uscan --force-download --download-current-version
-- 
2.11.0

__
This is the maintainer address of Debian's Java team
<http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers>. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#854028: unblock: svgsalamander/1.1.1+dfsg-2

2017-02-03 Thread Bas Couwenberg
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package svgsalamander

It contains a patch by Vincent Privat to fix CVE-2017-5617 (#853134).

unblock svgsalamander/1.1.1+dfsg-2

Kind Regards,

Bas
diff -Nru svgsalamander-1.1.1+dfsg/debian/changelog 
svgsalamander-1.1.1+dfsg/debian/changelog
--- svgsalamander-1.1.1+dfsg/debian/changelog   2016-08-22 08:31:39.0 
+0200
+++ svgsalamander-1.1.1+dfsg/debian/changelog   2017-02-03 08:39:45.0 
+0100
@@ -1,3 +1,11 @@
+svgsalamander (1.1.1+dfsg-2) unstable; urgency=medium
+
+  * Team upload.
+  * Add patch by Vincent Privat to fix CVE-2017-5617 (SSRF).
+(closes: #853134)
+
+ -- Bas Couwenberg <sebas...@debian.org>  Fri, 03 Feb 2017 08:39:45 +0100
+
 svgsalamander (1.1.1+dfsg-1) unstable; urgency=medium
 
   * Team upload.
diff -Nru 
svgsalamander-1.1.1+dfsg/debian/patches/0007-CVE-2017-5617-Allow-only-data-scheme.patch
 
svgsalamander-1.1.1+dfsg/debian/patches/0007-CVE-2017-5617-Allow-only-data-scheme.patch
--- 
svgsalamander-1.1.1+dfsg/debian/patches/0007-CVE-2017-5617-Allow-only-data-scheme.patch
 1970-01-01 01:00:00.0 +0100
+++ 
svgsalamander-1.1.1+dfsg/debian/patches/0007-CVE-2017-5617-Allow-only-data-scheme.patch
 2017-02-02 07:34:34.0 +0100
@@ -0,0 +1,109 @@
+Description: Fix CVE-2017-5617: svgSalamander SSRF (Server-Side Request 
Forgery)
+ See: http://www.openwall.com/lists/oss-security/2017/01/27/3
+Author: Vincent Privat
+Origin: https://josm.openstreetmap.de/changeset/11526/josm
+Bug: https://github.com/blackears/svgSalamander/issues/11
+Bug-Debian: https://bugs.debian.org/853134
+
+--- a/svg-core/src/main/java/com/kitfox/svg/ImageSVG.java
 b/svg-core/src/main/java/com/kitfox/svg/ImageSVG.java
+@@ -112,21 +112,10 @@ public class ImageSVG extends Renderable
+ if (getPres(sty.setName("xlink:href")))
+ {
+ URI src = sty.getURIValue(getXMLBase());
++// CVE-2017-5617: Allow only data scheme
+ if ("data".equals(src.getScheme()))
+ {
+ imageSrc = new URL(null, src.toASCIIString(), new 
Handler());
+-} else
+-{
+-try
+-{
+-imageSrc = src.toURL();
+-} catch (Exception e)
+-{
+-
Logger.getLogger(SVGConst.SVG_LOGGER).log(Level.WARNING,
+-"Could not parse xlink:href " + src, e);
+-//e.printStackTrace();
+-imageSrc = null;
+-}
+ }
+ }
+ } catch (Exception e)
+@@ -134,32 +123,33 @@ public class ImageSVG extends Renderable
+ throw new SVGException(e);
+ }
+ 
+-diagram.getUniverse().registerImage(imageSrc);
+-
+-//Set widths if not set
+-BufferedImage img = diagram.getUniverse().getImage(imageSrc);
+-if (img == null)
++if (imageSrc != null)
+ {
+-xform = new AffineTransform();
+-bounds = new Rectangle2D.Float();
+-return;
+-}
++diagram.getUniverse().registerImage(imageSrc);
+ 
+-if (width == 0)
+-{
+-width = img.getWidth();
+-}
+-if (height == 0)
+-{
+-height = img.getHeight();
+-}
++//Set widths if not set
++BufferedImage img = diagram.getUniverse().getImage(imageSrc);
++if (img == null)
++{
++xform = new AffineTransform();
++bounds = new Rectangle2D.Float();
++return;
++}
+ 
+-//Determine image xform
+-xform = new AffineTransform();
+-//xform.setToScale(this.width / img.getWidth(), this.height / 
img.getHeight());
+-//xform.translate(this.x, this.y);
+-xform.translate(this.x, this.y);
+-xform.scale(this.width / img.getWidth(), this.height / 
img.getHeight());
++if (width == 0)
++{
++width = img.getWidth();
++}
++if (height == 0)
++{
++height = img.getHeight();
++}
++
++//Determine image xform
++xform = new AffineTransform();
++xform.translate(this.x, this.y);
++xform.scale(this.width / img.getWidth(), this.height / 
img.getHeight());
++}
+ 
+ bounds = new Rectangle2D.Float(this.x, this.y, this.width, 
this.height);
+ }
+@@ -328,16 +318,14 @@ public class ImageSVG extends Renderable
+ {
+ URI src = sty.getURIValue(getXMLBase());
+ 
+-URL newVal;
++URL newVal = null;
++// CVE-2017-5617: Allow only data scheme
+

Bug#853134: CVE-2017-5617: svgSalamander

2017-02-01 Thread Bas Couwenberg

On 2017-02-01 09:35, Bas Couwenberg wrote:

Including the JOSM developers (josm-...@openstreetmap.org) is also a
good idea, they (and Vincent Privat in particular) have contributed
patches to svgSalamander recently.

I'll report the issue in the JOSM Trac since it also affects the
embedded copy in their upstream SVN repo.


JOSM issue: https://josm.openstreetmap.de/ticket/14319

Kind Regards,

Bas

__
This is the maintainer address of Debian's Java team
<http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers>. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#853134: CVE-2017-5617: svgSalamander

2017-02-01 Thread Bas Couwenberg

Hi Felix,

On 2017-02-01 09:13, Felix Natter wrote:

there is a security vulnerability in svgSalamander:
  https://github.com/blackears/svgSalamander/issues/11


I've been following that issue since it popped up on by DMD TODO list.


The problem occurs when including raster/svg images via .
The reporter says "How to fix - any schemes apart from data in the
xlink:href attribute should be disallowed"


The fix for svgSalamander is probably to patch the code which handles 
xlink:href and return NULL for any value that doesn't start with 
"data:", or something along those lines.



--> I am not aware of svgSalamander properties (the only other toggle I
can think of is java system properties), so can we _disable_ other
schemes? I don't think that breaks SVG renderding in Freeplane, how
about josm / other applications?


I don't know if it will break JOSM, but I suspect it won't. We'll have 
to test it with the patched svgsalamander when it's available.



http://stackoverflow.com/questions/6249664/does-svg-support-embedding-of-bitmap-images
--> data: schema seems provides a way for including base64 encoded
raster/svg images inline in an SVG.

--> Can we discuss how to fix this?


Sure, ideally upstream is included in that discussion.


Or shall we wait until Mark (the upstream author) fixes this
(might take a month)? Or at least ping him for a solution?


Pinging him is a good idea, upstream needs to be involved in resolving 
this issue.


Including the JOSM developers (josm-...@openstreetmap.org) is also a 
good idea, they (and Vincent Privat in particular) have contributed 
patches to svgSalamander recently.


I'll report the issue in the JOSM Trac since it also affects the 
embedded copy in their upstream SVN repo.


Kind Regards,

Bas

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#835430: libphonenumber: FTBFS in unstable (org.easymock:easymockclassextension:jar:debian artifact not available)

2016-08-25 Thread Bas Couwenberg
Source: libphonenumber
Version: 7.1.0-4
Severity: serious
Justification: makes the package in question unusable or mostly so
Control: block 835170 by -1

Dear Maintainer,

The recent upload of protobuf 3.0.0 to unstable has started an
uncoordinated transition (#835170). Unfortunately your package FTBFS due
to an unrelated issue:

 [ERROR] Failed to execute goal on project cpp-build: Could not resolve 
dependencies for project 
com.google.i18n.phonenumbers.tools:cpp-build:jar:1.0-SNAPSHOT: Cannot access 
central (https://repo.maven.apache.org/maven2) in offline mode and the artifact 
org.easymock:easymockclassextension:jar:debian has not been downloaded from it 
before. -> [Help 1]

The full buildlog is attached.

Kind Regards,

Bas
I: using cowbuilder as pbuilder
dpkg-checkbuilddeps: Unmet build dependencies: g++-6 libgtest-dev 
libprotobuf-dev (>= 3.0.0-4) libre2-dev protobuf-compiler (>= 3.0.0-4) 
default-jdk-doc libmaven-assembly-plugin-java libmaven-exec-plugin-java 
libmaven-war-plugin-java libprotobuf-java (>= 3.0.0-4) libservlet3.1-java-doc
W: Unmet build-dependency in source
dpkg-buildpackage: source package libphonenumber
dpkg-buildpackage: source version 7.1.0-5
dpkg-buildpackage: source distribution UNRELEASED
dpkg-buildpackage: source changed by Markus Koschany 
 dpkg-source --before-build libphonenumber-7.1.0
 fakeroot debian/rules clean
test -x debian/rules
mkdir -p "."
/usr/share/maven-debian-helper/copy-repo.sh 
/home/bas/tmp/debian/libphonenumber-7.1.0/debian
mh_patchpoms -plibphonenumber7-java --debian-build --keep-pom-version 
--maven-repo=/home/bas/tmp/debian/libphonenumber-7.1.0/debian/maven-repo  
--build-no-docs --ignore-rules=debian/maven.ignoreRules 
--clean-ignore-rules=debian/maven.cleanIgnoreRules
touch debian/stamp-poms-patched
cd . && /usr/lib/jvm/default-java/bin/java -noverify -cp 
/usr/share/maven2/boot/classworlds.jar:/usr/lib/jvm/default-java/lib/tools.jar 
-Dproperties.file.manual=/home/bas/tmp/debian/libphonenumber-7.1.0/debian/maven.properties
 -Dclassworlds.conf=/etc/maven2/m2-debian.conf 
org.codehaus.classworlds.Launcher -s/etc/maven2/settings-debian.xml 
-Dmaven.repo.local=/home/bas/tmp/debian/libphonenumber-7.1.0/debian/maven-repo  
clean
[INFO] 
NOTE: Maven is executing in offline mode. Any artifacts not already in your 
local
repository will be inaccessible.

[INFO] Scanning for projects...
[INFO] Reactor build order: 
[INFO]   Libphonenumber build tools
[INFO]   Libphonenumber common library for build tools
[INFO]   Libphonenumber C++ build tools
[INFO]   Libphonenumber Data tools
[INFO]   Libphonenumber Java and JavaScript build tools
[INFO]   Unnamed - com.googlecode.libphonenumber:libphonenumber-parent:pom:7.1.0
[INFO]   Unnamed - com.googlecode.libphonenumber:libphonenumber:jar:7.1.0
[INFO]   Unnamed - com.googlecode.libphonenumber:prefixmapper:jar:2.28
[INFO]   Unnamed - com.googlecode.libphonenumber:carrier:jar:1.18
[INFO]   Unnamed - com.googlecode.libphonenumber:geocoder:jar:2.28
[INFO]   Unnamed - 
com.google.i18n.phonenumbers:libphonenumber-build-parent:pom:1.0-SNAPSHOT
[INFO] 
[INFO] Building Libphonenumber build tools
[INFO]task-segment: [clean]
[INFO] 
[INFO] [clean:clean {execution: default-clean}]
[INFO] 
[INFO] Building Libphonenumber common library for build tools
[INFO]task-segment: [clean]
[INFO] 
[INFO] [clean:clean {execution: default-clean}]
[INFO] 
[INFO] Building Libphonenumber C++ build tools
[INFO]task-segment: [clean]
[INFO] 
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] The plugin 'org.codehaus.mojo:exec-maven-plugin' does not exist or no 
valid version could be found
[INFO] 
[INFO] For more information, run Maven with the -e switch
[INFO] 
[INFO] Total time: 1 second
[INFO] Finished at: Thu Aug 25 14:39:17 CEST 2016
[INFO] Final Memory: 4M/120M
[INFO] 
/usr/share/cdbs/1/class/maven.mk:99: recipe for target 'cleanbuilddir' failed
make: [cleanbuilddir] Error 1 (ignored)
rm -f -r /home/bas/tmp/debian/libphonenumber-7.1.0/debian/maven-repo 
debian/stamp-maven-build
rm -f debian/*.substvars
/usr/bin/make -f debian/rules unpatch-poms
make[1]: Entering directory '/home/bas/tmp/debian/libphonenumber-7.1.0'
mh_unpatchpoms 

Bug#804723: elasticsearch: Don't install jts.jar in local maven repo, not needed for jts (>= 1.13)

2015-11-10 Thread Bas Couwenberg
Source: elasticsearch
Version: 1.7.3+dfsg-2
Severity: important
Tags: patch

Dear Maintainer,

Please update the elasticsearch package to not install jts.jar in the
local maven repo. This is no longer required for since the update to JTS
1.13 as discussed on the debian-java list:

 https://lists.debian.org/debian-java/2015/11/msg5.html

The attached patch drops the installation from debian/rules and updates
maven.rules for the new jts package.

Kind Regards,

Bas
diff --git a/debian/changelog b/debian/changelog
index e462e11..bdefb53 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+elasticsearch (1.6.2+dfsg-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Don't install JTS in local maven repository, not needed for JTS 1.13.
+
+ -- Bas Couwenberg <sebas...@debian.org>  Sat, 07 Nov 2015 16:37:29 +0100
+
 elasticsearch (1.6.2+dfsg-1) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/maven.rules b/debian/maven.rules
index d641735..6132052 100644
--- a/debian/maven.rules
+++ b/debian/maven.rules
@@ -7,7 +7,7 @@ com.github.spullara.mustache.java compiler jar s/.*/debian/ * *
 com.spatial4j spatial4j jar s/0\.4.*/0.4.x/ * *
 com.tdunning t-digest jar * * *
 com.google.guava guava jar * * *
-com.vividsolutions jts jar s/.*/fake/ * *
+com.vividsolutions jts jar s/.*/debian/ * *
 log4j apache-log4j-extras jar s/1\.2\..*/1.2.x/ * *
 log4j log4j jar s/.*/1.2.x/ * *
 org.apache.lucene lucene-* jar s/.*/4.10.x/ * *
diff --git a/debian/rules b/debian/rules
index c678778..009d15b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -31,14 +31,6 @@ override_dh_auto_configure:
 -Dversion=fake \
 -Dpackaging=jar
 
-	mvn --offline install:install-file \
--Dmaven.repo.local=$(CURDIR)/debian/maven-repo \
--Dfile=/usr/share/java/jts.jar \
--DgroupId=com.vividsolutions \
--DartifactId=jts \
--Dversion=fake \
--Dpackaging=jar
-
 override_dh_auto_install:
 	mh_installpoms -plibelasticsearch1.6-java
 	mh_installjar -plibelasticsearch1.6-java -l -s pom.xml target/elasticsearch-*.jar
__
This is the maintainer address of Debian's Java team
<http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers>. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Bug#801475: freeplane: Fails to build with JMapViewer 1.11

2015-10-10 Thread Bas Couwenberg
Source: freeplane
Version: 1.3.15-2
Severity: important
Tags: upstream

Dear Maintainer,

The jmapviewer package in Debian has been updated to the recent
JMapViewer 1.11 upstream release as required for JOSM 8800
(both available in experimental).

Unfortunately freeplane (1.3.15-2) fails to build with
jmapviewer (1.11+dfsg-1~exp1) as can be seen in the partial build log
below.

Please update the openmaps plugin to support JMapViewer 1.11 or consider
adding skip_openmaps=true to debian/ant.properties.

The severity of this issue will be raised to serious when
jmapviewer (1.11+dfsg-1) is moved from experimental to unstable.
I expect to do that next week.


>From the freeplane (1.3.15-2) build log:

 build:
 [mkdir] Created dir: 
/tmp/buildd/freeplane-1.3.15/freeplane_plugin_openmaps/build
 [javac] 
/tmp/buildd/freeplane-1.3.15/freeplane_plugin_openmaps/ant/build.xml:23: 
warning: 'includeantruntime' was not set, defaulting to 
build.sysclasspath=last; set to false for repeatable builds
 [javac] Compiling 12 source files to 
/tmp/buildd/freeplane-1.3.15/freeplane_plugin_openmaps/build
 [javac] warning: [options] bootstrap class path not set in conjunction 
with -source 1.5
 [javac] 
/tmp/buildd/freeplane-1.3.15/freeplane_plugin_openmaps/src/org/freeplane/plugin/openmaps/mapelements/OpenMapsController.java:64:
 error: incompatible types
 [javac] return map.getPosition(clickedLocation); 
 [javac]   ^
 [javac]   required: Coordinate
 [javac]   found:ICoordinate
 [javac] 
/tmp/buildd/freeplane-1.3.15/freeplane_plugin_openmaps/src/org/freeplane/plugin/openmaps/mapelements/OpenMapsController.java:84:
 error: cannot find symbol
 [javac] int x = (int)OsmMercator.LonToX(location.getLon(), zoom);
 [javac] ^
 [javac]   symbol:   method LonToX(double,int)
 [javac]   location: class OsmMercator
 [javac] 
/tmp/buildd/freeplane-1.3.15/freeplane_plugin_openmaps/src/org/freeplane/plugin/openmaps/mapelements/OpenMapsController.java:85:
 error: cannot find symbol
 [javac] int y = (int)OsmMercator.LatToY(location.getLat(), zoom);
 [javac] ^
 [javac]   symbol:   method LatToY(double,int)
 [javac]   location: class OsmMercator
 [javac] Note: 
/tmp/buildd/freeplane-1.3.15/freeplane_plugin_openmaps/src/org/freeplane/plugin/openmaps/mapelements/OpenMapsViewer.java
 uses or overrides a deprecated API.
 [javac] Note: Recompile with -Xlint:deprecation for details.
 [javac] 3 errors
 [javac] 1 warning
 
 BUILD FAILED
 /tmp/buildd/freeplane-1.3.15/build.xml:4: The following error occurred while 
executing this line:
 /tmp/buildd/freeplane-1.3.15/freeplane_framework/ant/build.xml:139: The 
following error occurred while executing this line:
 /tmp/buildd/freeplane-1.3.15/freeplane_framework/ant/build.xml:55: The 
following error occurred while executing this line:
 /tmp/buildd/freeplane-1.3.15/freeplane_plugin_openmaps/ant/build.xml:23: 
Compile failed; see the compiler error output for details.

 Total time: 18 seconds


My appologies for the inconvenience,

Bas

__
This is the maintainer address of Debian's Java team
. 
Please use
debian-j...@lists.debian.org for discussions and questions.


Bug#780179: libmetadata-extractor-java: Please package latest upstream release

2015-03-10 Thread Bas Couwenberg
Package: libmetadata-extractor-java
Version: 2.6.4-2
Severity: normal

Dear Maintainer,

JOSM upstream has switched to metadata-extractor 2.7.2, and will require
this for next months release.

Please update the libmetadata-extractor-java package to 2.7.2 to the
benefit of its reverse dependencies.

__
This is the maintainer address of Debian's Java team
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers. 
Please use
debian-j...@lists.debian.org for discussions and questions.