Skip to content
GitLab
Explore
Sign in
Register
Commits on Source
4
Standards-Version updated to 4.2.1
· 2b20c98b
Emmanuel Bourg
authored
Dec 20, 2018
2b20c98b
Use salsa.debian.org Vcs-* URLs
· 18c39c6a
Emmanuel Bourg
authored
Dec 20, 2018
18c39c6a
Fixed the build failure with Java 11 (Closes: #913050)
· 117eff76
Emmanuel Bourg
authored
Dec 20, 2018
117eff76
Upload to unstable
· 12c8e231
Emmanuel Bourg
authored
Dec 20, 2018
12c8e231
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
12c8e231
batik (1.10-2)
UNRELEASED
; urgency=medium
batik (1.10-2)
unstable
; urgency=medium
* Team upload.
* Fixed the build failure with Java 11 (Closes: #913050)
* Tightened the version of maven-debian-helper required to build batik
(Closes: #902532)
* Standards-Version updated to 4.2.1
* Use salsa.debian.org Vcs-* URLs
-- Emmanuel Bourg <ebourg@apache.org>
Wed, 05 Sep 2018 13:55:36
+0
2
00
-- Emmanuel Bourg <ebourg@apache.org>
Thu, 20 Dec 2018 00:28:22
+0
1
00
batik (1.10-1) unstable; urgency=medium
...
...
debian/control
View file @
12c8e231
...
...
@@ -17,9 +17,9 @@ Build-Depends:
libxmlgraphics-commons-java (>= 2.0.1),
maven-debian-helper (>= 2.2.3),
rhino
Standards-Version: 4.
1.4
Vcs-Git: https://
anonscm
.debian.org/
git/pkg-java
/batik.git
Vcs-Browser: https://
anonscm
.debian.org/
cgit/pkg-java
/batik
.git
Standards-Version: 4.
2.1
Vcs-Git: https://
salsa
.debian.org/
java-team
/batik.git
Vcs-Browser: https://
salsa
.debian.org/
java-team
/batik
Homepage: https://xmlgraphics.apache.org/batik/
Package: libbatik-java
...
...
debian/patches/09_java11_compatibility.patch
0 → 100644
View file @
12c8e231
Description: Fixes the compatibility with Java 11
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/batik-swing/src/main/java/org/apache/batik/swing/gvt/JGVTComponent.java
+++ b/batik-swing/src/main/java/org/apache/batik/swing/gvt/JGVTComponent.java
@@ -1272,7 +1272,7 @@
securityManager = System.getSecurityManager();
if (securityManager != null) {
try {
- securityManager.checkSystemClipboardAccess();
+ securityManager.checkPermission(new java.awt.AWTPermission("accessClipboard"));
} catch (SecurityException e) {
return; // Can't access clipboard.
}
debian/patches/series
View file @
12c8e231
06_fix_paths_in_policy_files.patch
no-Jython-support.patch
09_java11_compatibility.patch
debian/rules
View file @
12c8e231
...
...
@@ -4,6 +4,3 @@ export JAVA_HOME = /usr/lib/jvm/default-java
%:
dh $@ --buildsystem=maven
get-orig-source:
uscan --force-download --rename