Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Removed the doc package to fix the build failure with Java 11.0.2 (Closes: #923709)
· e21ae07b
Emmanuel Bourg
authored
Mar 04, 2019
e21ae07b
Use salsa.debian.org Vcs-* URLs
· 67026765
Emmanuel Bourg
authored
Mar 04, 2019
67026765
Upload to unstable
· e8755ca0
Emmanuel Bourg
authored
Mar 04, 2019
e8755ca0
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
e8755ca0
svgsalamander (1.1.1+dfsg-3) unstable; urgency=medium
* Team upload.
* Removed the doc package to fix the build failure with Java 11.0.2
(Closes: #923709)
* Use salsa.debian.org Vcs-* URLs
-- Emmanuel Bourg <ebourg@apache.org> Mon, 04 Mar 2019 09:28:49 +0100
svgsalamander (1.1.1+dfsg-2) unstable; urgency=medium
* Team upload.
...
...
debian/control
View file @
e8755ca0
...
...
@@ -7,14 +7,12 @@ Build-Depends: debhelper (>= 9),
javahelper,
maven-repo-helper
Build-Depends-Indep: default-jdk,
default-jdk-doc,
ant,
ant-optional,
ant-doc,
javacc
Standards-Version: 3.9.8
Vcs-Browser: https://
anonscm
.debian.org/
cgit/pkg-java
/svgsalamander
.git
Vcs-Git: https://
anonscm
.debian.org/
git/pkg-java
/svgsalamander.git
Vcs-Browser: https://
salsa
.debian.org/
java-team
/svgsalamander
Vcs-Git: https://
salsa
.debian.org/
java-team
/svgsalamander.git
Homepage: http://svgsalamander.java.net/
Package: libsvgsalamander-java
...
...
@@ -30,20 +28,3 @@ Description: SVG engine for Java
Java games and making it much easier for artists to design 2D game
content - from rich interactive menus to charts and graphcs to
complex animations.
Package: libsvgsalamander-java-doc
Architecture: all
Section: doc
Depends: ${misc:Depends},
${java:Depends}
Recommends: ${java:Recommends}
Description: SVG engine for Java (documentation)
SVG Salamander is an SVG engine for Java that's designed to be small,
fast, and allow programmers to use it with a minimum of fuss.
.
It's in particular targeted for making it easy to integrate SVG into
Java games and making it much easier for artists to design 2D game
content - from rich interactive menus to charts and graphcs to
complex animations.
.
This package includes the javadoc API documentation for svgsalamander.
debian/libsvgsalamander-java-doc.javadoc
deleted
100644 → 0
View file @
4fb653f7
svg-core/dist/javadoc
debian/patches/0003-Modify-javadoc-target-to-add-links-to-system-API-doc.patch
deleted
100644 → 0
View file @
4fb653f7
Description: Modify javadoc target to add links to system API docs
Author: Nicolas Dandrimont <Nicolas.Dandrimont@crans.org>
Forwarded: not-needed
Last-Update: 2011-03-06
--- a/svg-core/nbproject/build-impl.xml
+++ b/svg-core/nbproject/build-impl.xml
@@ -1282,6 +1282,8 @@
is divided into following sections:
<include name="**/*.java"/>
<exclude name="*.java"/>
</fileset>
+ <link href="/usr/share/doc/default-jdk-doc/api" />
+ <link href="/usr/share/doc/ant/api" />
<arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/>
</javadoc>
<copy todir="${dist.javadoc.dir}">
debian/patches/series
View file @
e8755ca0
0001-Make-build-use-system-libraries.patch
0002-Disable-useless-automated-jar-signing.patch
0003-Modify-javadoc-target-to-add-links-to-system-API-doc.patch
0005-dont-call-netbeans-ant-tasks.patch
0006-modify-broken-upstream-pom.patch
0007-CVE-2017-5617-Allow-only-data-scheme.patch
debian/rules
View file @
e8755ca0
...
...
@@ -19,7 +19,7 @@ TARBALL = $(PACKAGE)_$(SRC_VERSION).orig.tar.gz
override_dh_auto_build
:
-
mkdir
-p
$(
CURDIR
)
/svg-core/src/gen/res
-
mkdir
-p
$(
CURDIR
)
/svg-core/src/gen/java
cd
$(
CURDIR
)
/svg-core
&&
$(
ANT
)
jar
&&
$(
ANT
)
javadoc
cd
$(
CURDIR
)
/svg-core
&&
$(
ANT
)
jar
override_dh_clean
:
-
mkdir
-p
$(
CURDIR
)
/svg-core/src/gen/res
...
...