Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (7)
No more javadoc link for JDK API
· cd85be74
Tony Mancill
authored
Feb 25, 2019
cd85be74
Drop build-dep on default-jdk-doc
· f4d2c294
Tony Mancill
authored
Feb 25, 2019
f4d2c294
Patch debian rules to ignore hidden directories (Closes: #919959)
· f89740ed
Tony Mancill
authored
Feb 25, 2019
f89740ed
Bump Standards-Version to 4.3.0
· f1029f90
Tony Mancill
authored
Feb 25, 2019
f1029f90
Update Vcs- URLs to point to Salsa
· 2e421fe8
Tony Mancill
authored
Feb 25, 2019
2e421fe8
Update Homepage URL to use https
· 8e59d8c7
Tony Mancill
authored
Feb 25, 2019
8e59d8c7
prepare changelog for upload
· 929cda6f
Tony Mancill
authored
Feb 25, 2019
929cda6f
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
929cda6f
isorelax (20041111-12)
UNRELEASED
; urgency=medium
isorelax (20041111-12)
unstable
; urgency=medium
* Team upload.
[ Samuel Thibault ]
* Mark libisorelax-java Multi-Arch: foreign.
-- Samuel Thibault <sthibault@debian.org> Fri, 04 Jan 2019 00:15:18 +0100
[ tony mancill ]
* Disable javadoc link for JDK API and drop build-dep on default-jdk-doc
(Closes: #923185)
* Patch debian rules to ignore hidden directories (Closes: #919959)
Thank you to Santiago Vila for the patch.
* Bump Standards-Version to 4.3.0
* Update Vcs- URLs to point to Salsa
* Update Homepage URL to use https
-- tony mancill <tmancill@debian.org> Mon, 25 Feb 2019 21:17:46 -0800
isorelax (20041111-11) unstable; urgency=medium
...
...
debian/control
View file @
929cda6f
...
...
@@ -5,11 +5,11 @@ Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.or
Uploaders: Samuel Thibault <sthibault@debian.org>,
Giovanni Mascellani <gio@debian.org>
Build-Depends: debhelper (>= 10)
Build-Depends-Indep: default-jdk,
default-jdk-doc,
ant, ant-doc, maven-repo-helper
Standards-Version: 4.
2
.0
Vcs-Git: https://
anonscm
.debian.org/
git/pkg-java
/isorelax.git
Vcs-Browser: https://
anonscm
.debian.org/
git/pkg-java
/isorelax
.git
Homepage: http://sourceforge.net/projects/iso-relax/
Build-Depends-Indep: default-jdk, ant, ant-doc, maven-repo-helper
Standards-Version: 4.
3
.0
Vcs-Git: https://
salsa
.debian.org/
java-team
/isorelax.git
Vcs-Browser: https://
salsa
.debian.org/
java-team
/isorelax
Homepage: http
s
://sourceforge.net/projects/iso-relax/
Package: libisorelax-java
Architecture: all
...
...
debian/rules
View file @
929cda6f
...
...
@@ -11,7 +11,6 @@ JAVADOCFLAGS=-locale en \
-encoding UTF-8 \
-notimestamp \
-classpath $(JAVACLASSES)/ant.jar \
-link /usr/share/doc/default-jdk-doc/api \
-link /usr/share/doc/ant/api/ \
-source 1.8
...
...
@@ -22,11 +21,11 @@ JARFILE=isorelax-20041111.jar
override_dh_auto_build:
$(JAVAC) $(JAVAFLAGS) `find jp org -name \*.java`
$(JAVADOC) $(JAVADOCFLAGS) -d api `find
.
-name \*.java`
$(JAVADOC) $(JAVADOCFLAGS) -d api `find
*
-name \*.java`
$(JAR) c `find
.
-name \*.class -o -name \*.rxm -o -name \*.rxg -o -name \*.dtd -o -name \*.mod -o -name \*.MF` > $(JARFILE)
$(JAR) c `find
*
-name \*.class -o -name \*.rxm -o -name \*.rxg -o -name \*.dtd -o -name \*.mod -o -name \*.MF` > $(JARFILE)
override_dh_auto_clean:
rm -f `find
.
-name \*.class`
rm -f `find
*
-name \*.class`
rm -f $(JARFILE)
rm -fr api