Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Use salsa.debian.org Vcs-* URLs
· 9ee7d389
Emmanuel Bourg
authored
Apr 17, 2019
9ee7d389
Removed Damien Raude-Morvan from the uploaders (Closes: #889352)
· 63cafe71
Emmanuel Bourg
authored
Apr 17, 2019
63cafe71
Fixed the build failure with javahelper 0.72 (Closes: #927244)
· 3cf6af5c
Emmanuel Bourg
authored
Apr 17, 2019
3cf6af5c
Upload to unstable
· 4629c424
Emmanuel Bourg
authored
Apr 17, 2019
4629c424
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
4629c424
mina (1.1.7.dfsg-13) unstable; urgency=medium
* Team upload.
* Fixed the build failure with javahelper 0.72 (Closes: #927244)
* Removed Damien Raude-Morvan from the uploaders (Closes: #889352)
* Use salsa.debian.org Vcs-* URLs
-- Emmanuel Bourg <ebourg@apache.org> Wed, 17 Apr 2019 09:56:32 +0200
mina (1.1.7.dfsg-12) unstable; urgency=medium
* Fixed the build failure with Java 9 (Closes: #893376)
...
...
debian/control
View file @
4629c424
...
...
@@ -3,7 +3,6 @@ Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders:
Damien Raude-Morvan <drazzib@debian.org>,
Emmanuel Bourg <ebourg@apache.org>
Build-Depends:
debhelper (>= 11),
...
...
@@ -13,9 +12,9 @@ Build-Depends:
libslf4j-java,
libspring-beans-java,
maven-repo-helper
Vcs-Git: https://anonscm.debian.org/git/pkg-java/mina.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/mina.git
Standards-Version: 4.1.3
Vcs-Git: https://salsa.debian.org/java-team/mina.git
Vcs-Browser: https://salsa.debian.org/java-team/mina
Homepage: http://mina.apache.org
Package: libmina-java
...
...
debian/rules
View file @
4629c424
...
...
@@ -40,11 +40,11 @@ ALL_JARS = $(wildcard *.jar)
override_dh_auto_build:
# Build the packages
( CLASSPATH=${CORE_CP} jh_build -J -
o"
$(JAVA_OPTS)
"
$(CORE_JAR) $(CORE_SRC) )
( CLASSPATH=${ZLIB_CP} jh_build -J -
o"
$(JAVA_OPTS)
"
$(ZLIB_JAR) $(ZLIB_SRC) )
( CLASSPATH=${SSL_CP} jh_build -J -
o"
$(JAVA_OPTS)
"
$(SSL_JAR) $(SSL_SRC) )
( CLASSPATH=${JMX_CP} jh_build -J -
o"
$(JAVA_OPTS)
"
$(JMX_JAR) $(JMX_SRC) )
( CLASSPATH=${SPRING_CP} jh_build -J -
o"
$(JAVA_OPTS)
"
$(SPRING_JAR) $(SPRING_SRC) )
( CLASSPATH=${CORE_CP}
jh_build -J -
-javacopts='
$(JAVA_OPTS)
'
$(CORE_JAR)
$(CORE_SRC)
)
( CLASSPATH=${ZLIB_CP}
jh_build -J -
-javacopts='
$(JAVA_OPTS)
'
$(ZLIB_JAR)
$(ZLIB_SRC)
)
( CLASSPATH=${SSL_CP}
jh_build -J -
-javacopts='
$(JAVA_OPTS)
'
$(SSL_JAR)
$(SSL_SRC)
)
( CLASSPATH=${JMX_CP}
jh_build -J -
-javacopts='
$(JAVA_OPTS)
'
$(JMX_JAR)
$(JMX_SRC)
)
( CLASSPATH=${SPRING_CP} jh_build -J -
-javacopts='
$(JAVA_OPTS)
'
$(SPRING_JAR) $(SPRING_SRC) )
override_dh_auto_clean:
rm -f $(CORE_JAR) $(ZLIB_JAR) $(SSL_JAR) $(JMX_JAR) $(SPRING_JAR)
...
...