Skip to content
GitLab
Explore
Sign in
Register
Commits on Source
5
Standards-Version updated to 4.2.1
· 58504c76
Emmanuel Bourg
authored
Nov 02, 2018
58504c76
Switch to debhelper level 11
· dc9d9406
Emmanuel Bourg
authored
Nov 02, 2018
dc9d9406
Use salsa.debian.org Vcs-* URLs
· 873cf3bb
Emmanuel Bourg
authored
Nov 02, 2018
873cf3bb
Fixed the build failure with Java 11 (Closes: #912543)
· f5069a00
Emmanuel Bourg
authored
Nov 02, 2018
f5069a00
Upload to unstable
· fbc06830
Emmanuel Bourg
authored
Nov 02, 2018
fbc06830
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
fbc06830
libnetx-java (0.5-4) unstable; urgency=medium
* Team upload.
* Fixed the build failure with Java 11 (Closes: #912543)
* Standards-Version updated to 4.2.1
* Switch to debhelper level 11
* Use salsa.debian.org Vcs-* URLs
-- Emmanuel Bourg <ebourg@apache.org> Fri, 02 Nov 2018 18:18:04 +0100
libnetx-java (0.5-3) unstable; urgency=low
* Team upload.
...
...
debian/compat
View file @
fbc06830
1
0
1
1
debian/control
View file @
fbc06830
...
...
@@ -7,11 +7,11 @@ Uploaders:
Torsten Werner <twerner@debian.org>
Build-Depends:
ant,
debhelper (>= 1
0
),
debhelper (>= 1
1
),
default-jdk
Standards-Version: 4.
1
.1
Vcs-Git: https://
anonscm
.debian.org/
git/pkg-java
/libnetx-java.git
Vcs-Browser: https://
anonscm
.debian.org/
cgit/pkg-java
/libnetx-java
.git
Standards-Version: 4.
2
.1
Vcs-Git: https://
salsa
.debian.org/
java-team
/libnetx-java.git
Vcs-Browser: https://
salsa
.debian.org/
java-team
/libnetx-java
Homepage: http://jnlp.sourceforge.net/netx/
Package: libnetx-java
...
...
debian/patches/java11-compatibility.patch
0 → 100644
View file @
fbc06830
Description: Fixes the compatibility with Java 11
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/src/netx/jnlp/runtime/JNLPSecurityManager.java
+++ b/src/netx/jnlp/runtime/JNLPSecurityManager.java
@@ -263,41 +263,6 @@
}
/**
- * Checks whether the window can be displayed without an applet
- * warning banner, and adds the window to the list of windows to
- * be disposed when the calling application exits.
- */
- public boolean checkTopLevelWindow(Object window) {
- ApplicationInstance app = getApplication();
-
- // remember window -> application mapping for focus, close on exit
- if (app != null && window instanceof Window) {
- Window w = (Window) window;
-
- if (JNLPRuntime.isDebug())
- System.err.println("SM: app: "+app.getTitle()+" is adding a window: "+window);
-
- weakWindows.add(window); // for mapping window -> app
- weakApplications.add(app);
-
- w.addWindowListener(contextListener); // for dynamic context classloader
-
- app.addWindow(w);
- }
-
- // change coffee cup to netx for default icon
- if (window instanceof Window)
- for (Window w = (Window)window; w != null; w = w.getOwner())
- if (window instanceof Frame)
- ((Frame)window).setIconImage(JNLPRuntime.getWindowIcon());
-
- // todo: set awt.appletWarning to custom message
- // todo: logo on with glass pane on JFrame/JWindow?
-
- return super.checkTopLevelWindow(window);
- }
-
- /**
* Checks whether the caller can exit the system. This method
* identifies whether the caller is a real call to Runtime.exec
* and has special behavior when returning from this method
debian/patches/series
View file @
fbc06830
protected.diff
ambiguous_Proxy.diff
java5-compatibility.patch
java11-compatibility.patch
debian/rules
View file @
fbc06830
...
...
@@ -10,6 +10,3 @@ override_dh_auto_install:
dh_link /usr/share/java/netx-$(DEB_VERSION_UPSTREAM).jar /usr/share/java/netx.jar
override_dh_auto_clean:
get-orig-source:
-uscan --upstream-version 0