Skip to content
Commits on Source (5)
libjibx1.2-java (1.2.6-2) unstable; urgency=medium
* Team upload.
* Declare compliance with Debian Policy 4.1.4.
* Fix FTBFS with Java 9. (Closes: #893259)
-- Markus Koschany <apo@debian.org> Fri, 11 May 2018 21:04:18 +0200
libjibx1.2-java (1.2.6-1) unstable; urgency=medium
* Team upload
......@@ -27,8 +35,8 @@ libjibx1.2-java (1.2.3-3) unstable; urgency=low
[ Stephen Nelson ]
* Team upload.
* Update standards version to 3.9.5
* Remove Michael Koch from uploaders. (Closes: #654082)
* Add Stephen Nelson to uploaders.
* Remove Michael Koch from uploaders. (Closes: #654082)
* Add Stephen Nelson to uploaders.
* Update the Vcs fields.
* Use debhelper version 9.
* Provide Maven artifact. (Closes: #729021)
......
......@@ -9,7 +9,7 @@ Build-Depends-Indep: libbcel-java,
libjoda-time-java,
liblog4j1.2-java,
libxpp3-java
Standards-Version: 3.9.7
Standards-Version: 4.1.4
Vcs-Git: git://anonscm.debian.org/pkg-java/libjibx-java.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/libjibx-java.git
Homepage: http://jibx.sf.net
......
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: jibx
Upstream-Contact: Dennis M. Sosnoski <dsosnoski at users.sourceforge.net>
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: jibx
Upstream-Contact: Dennis M. Sosnoski <dsosnoski at users.sourceforge.net>
Source: http://sourceforge.net/projects/jibx/
Files: *
......
From: Markus Koschany <apo@debian.org>
Date: Fri, 11 May 2018 20:55:47 +0200
Subject: java10
Ignore the error at build time. Hopefully there are no runtime issues..
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=893259
Forwarded: no
---
build/build.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/build/build.xml b/build/build.xml
index 4ebfb29..734bef1 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -205,7 +205,7 @@ file has been tested with ant version 1.6.1.
<path refid="support-classpath"/>
</classpath>
</javac>
- <java classname="org.jibx.binding.Compile" fork="yes" failonerror="true">
+ <java classname="org.jibx.binding.Compile" fork="yes" failonerror="false">
<!-- This command line argument should only be used when binding JiBX.
It skips the step of validating the binding using the binding definition
model (because the model itself uses JiBX binding, which can create
@@ -242,7 +242,7 @@ file has been tested with ant version 1.6.1.
<fileset dir="/usr/share/java" includes="log4j-1.2.jar" />
</classpath>
</javac>
- <java classname="org.jibx.binding.Compile" fork="yes" failonerror="true">
+ <java classname="org.jibx.binding.Compile" fork="yes" failonerror="false">
<classpath>
<pathelement path="${schemadest}"/>
<fileset dir="${lib}" includes="*.jar" excludes="asm*.jar,org.eclipse.*.jar,qdox*.jar,${schemaname}.jar,${toolsname}.jar"/>
@@ -270,7 +270,7 @@ file has been tested with ant version 1.6.1.
<fileset dir="${lib}" includes="*.jar" excludes="asm*.jar,${toolsname}.jar"/>
</classpath>
</javac>
- <java classname="org.jibx.binding.Compile" fork="yes" failonerror="true">
+ <java classname="org.jibx.binding.Compile" fork="yes" failonerror="false">
<classpath>
<pathelement path="${toolsdest}"/>
<fileset dir="${lib}" includes="*.jar" excludes="asm*.jar,${toolsname}.jar"/>
build_xml_clean_target.patch
01_build_xml.patch
02_java8_compatibility.patch
java10.patch
......@@ -13,7 +13,7 @@ DEB_INSTALL_CHANGELOGS_ALL := changes.txt
DEB_UPSTREAM_VERSION_2 := $(shell echo $(DEB_UPSTREAM_VERSION) | cut -f1,2 -d. )
clean::
mh_clean
mh_clean
-rm -fr build/api build/classes lib/*
install/libjibx1.2-java::
......