Skip to content

Commits on Source 5

bnd (3.5.0-4) unstable; urgency=medium
* Fixed the build failure with Java 11 (Closes: #912231)
* Fixed the build failure caused by gradle-debian-helper 2.0.1
* Ignore the dependency on xml-apis
* Use salsa.debian.org Vcs-* URLs
-- Emmanuel Bourg <ebourg@apache.org> Wed, 19 Dec 2018 22:48:21 +0100
bnd (3.5.0-3) unstable; urgency=medium
* Team upload.
......
......@@ -27,8 +27,8 @@ Build-Depends:
libyaml-snake-java,
maven-repo-helper
Standards-Version: 4.2.1
Vcs-Git: https://anonscm.debian.org/git/pkg-java/bnd.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/bnd.git
Vcs-Git: https://salsa.debian.org/java-team/bnd.git
Vcs-Browser: https://salsa.debian.org/java-team/bnd
Homepage: http://bnd.bndtools.org/
Package: bnd
......
Description: Fixes the compatibility with Java 11
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/biz.aQute.remote/src/aQute/remote/agent/RedirectOutput.java
+++ b/biz.aQute.remote/src/aQute/remote/agent/RedirectOutput.java
@@ -32,13 +32,13 @@
}
public RedirectOutput(List<AgentServer> agents, PrintStream out, boolean err) {
- super(out == null ? out = nullOutputStream() : out);
+ super(out == null ? out = _nullOutputStream() : out);
this.agents = agents;
this.out = out;
this.err = err;
}
- private static PrintStream nullOutputStream() {
+ private static PrintStream _nullOutputStream() {
return new PrintStream(new NullOutputStream());
}
......@@ -8,3 +8,4 @@ use-bootstrapped-gradle-plugin.patch
reproducible-timestamps.patch
reproducible-packages-list.patch
build-scripts.patch
java11-compatibility.patch
......@@ -3,7 +3,7 @@
include /usr/share/dpkg/pkg-info.mk
PACKAGE := bnd
export JAVA_HOME = /usr/lib/jvm/default-java
export HOME = debian
export HOME = $(CURDIR)/debian
%:
dh $@ --buildsystem=gradle --with maven-repo-helper
......