Skip to content
GitLab
Explore
Sign in
Register
Commits on Source
3
Adjusted the Vcs-* fields
· a5b2eb2a
Emmanuel Bourg
authored
Aug 08, 2019
a5b2eb2a
Preserve the backward compatibility with Java 7 (Closes: #934111)
· 86c44615
Emmanuel Bourg
authored
Aug 08, 2019
86c44615
Upload to unstable
· a4df6fa3
Emmanuel Bourg
authored
Aug 08, 2019
a4df6fa3
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
a4df6fa3
jython (2.7.1+repack1-4) unstable; urgency=medium
* Team upload.
* Preserve the backward compatibility with Java 7 (Closes: #934111)
* Adjusted the Vcs-* fields
-- Emmanuel Bourg <ebourg@apache.org> Thu, 08 Aug 2019 10:11:23 +0200
jython (2.7.1+repack1-3) unstable; urgency=medium
* Improve previous fix with default-jre-headless (>= 2:1.9), thanks to
...
...
debian/control
View file @
a4df6fa3
...
...
@@ -25,14 +25,14 @@ Build-Depends-Indep: default-jdk,
libicu4j-java,
libnetty-java
Standards-Version: 4.2.1
Vcs-Git: https://salsa.debian.org/java-team/jython
Vcs-Browser: https://salsa.debian.org/java-team/jython
.git
Vcs-Git: https://salsa.debian.org/java-team/jython
.git
Vcs-Browser: https://salsa.debian.org/java-team/jython
Homepage: http://www.jython.org
Package: jython
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends}, ${python:Depends}, ${java:Depends},
default-jre-headless (>= 2:1.
9
) | java
9
-runtime-headless,
default-jre-headless (>= 2:1.
7
) | java
7
-runtime-headless,
Recommends: default-jdk | java-compiler
Suggests: jython-doc, libmariadb-java, libpostgresql-jdbc-java
Description: Python seamlessly integrated with Java
...
...
debian/patches/08-java-backward-compatibility.patch
0 → 100644
View file @
a4df6fa3
Description: Preserves the backward compatibility with previous Java versions when built with Java 11+
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not
--- a/build.xml
+++ b/build.xml
@@ -436,6 +436,7 @@
destdir="${compile.dir}"
target="${jdk.target.version}"
source="${jdk.source.version}"
+ release="${jdk.target.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}">
@@ -483,6 +484,7 @@
<javac destdir="${compile.dir}"
target="${jdk.target.version}"
source="${jdk.source.version}"
+ release="${jdk.target.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}"
@@ -502,6 +504,7 @@
destdir="${compile.dir}"
target="${jdk.target.version}"
source="${jdk.source.version}"
+ release="${jdk.target.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}">
@@ -513,6 +516,7 @@
destdir="${compile.dir}"
target="${jdk.target.version}"
source="${jdk.source.version}"
+ release="${jdk.target.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}"
@@ -882,6 +886,7 @@
destdir="${compile.dir}"
target="${jdk.target.version}"
source="${jdk.source.version}"
+ release="${jdk.target.version}"
debug="${debug}"
deprecation="${deprecation}"
nowarn="${nowarn}"
debian/patches/series
View file @
a4df6fa3
...
...
@@ -4,3 +4,4 @@
05-no-com.carrotsearch.sizeof.patch
javadoc-classpath.patch
reproducible-builds.patch
08-java-backward-compatibility.patch
debian/rules
View file @
a4df6fa3
...
...
@@ -74,6 +74,7 @@ override_dh_auto_build:
# Build the class files.
# -nouserlib is required to prevent conflicts with the ant jython plugin
ant -nouserlib developer-build jar javadoc \
-Djython.java.version=7 \
-Dmain.classpath=$(OUR_MAIN_CLASSPATH) \
-Dtest.classpath=$(OUR_TEST_CLASSPATH) \
-Druntime.classpath="$(OUR_RUNTIME_CLASSPATH)"
...
...