Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
Use https for Format field. Remove trailing whitespace.
· 28036d70
Markus Koschany
authored
May 11, 2018
28036d70
Declare compliance with Debian Policy 4.1.4.
· 99399aac
Markus Koschany
authored
May 11, 2018
99399aac
Fix FTBFS with Java 9.
· fe35a9a5
Markus Koschany
authored
May 11, 2018
Closes: #893259
fe35a9a5
Remove trailing whitespace.
· c05b7c08
Markus Koschany
authored
May 11, 2018
c05b7c08
Update changelog
· fee1d09d
Markus Koschany
authored
May 11, 2018
fee1d09d
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
fee1d09d
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
...
...
debian/control
View file @
fee1d09d
...
...
@@ -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
...
...
debian/copyright
View file @
fee1d09d
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Format: http
s
://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/
...
...
debian/patches/java10.patch
0 → 100644
View file @
fee1d09d
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"/>
debian/patches/series
View file @
fee1d09d
build_xml_clean_target.patch
01_build_xml.patch
02_java8_compatibility.patch
java10.patch
debian/rules
View file @
fee1d09d