Andreas Tille pushed to branch master at Debian Java Maintainers / netlib-java
Commits: da405537 by Andreas Tille at 2019-03-21T12:43:47Z Add compile target to build.xml (no idea how that ever has build before) - - - - - 3 changed files: - debian/changelog - + debian/patches/add_compile_target.patch - debian/patches/series Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,10 @@ +netlib-java (0.9.3-5) UNRELEASED; urgency=medium + + * Add compile target to build.xml (no idea how that ever has build before) + Closes: #923759 + + -- Andreas Tille <[email protected]> Thu, 21 Mar 2019 13:41:22 +0100 + netlib-java (0.9.3-4) unstable; urgency=medium * Deactivate watch file since in debian/README.source is declared that ===================================== debian/patches/add_compile_target.patch ===================================== @@ -0,0 +1,28 @@ +Description: Add compile target to build.xml (no idea how that ever has build before) +Bug-Debian: https://bugs.debian.org/923759 +Author: Andreas Tille <[email protected]> +Last-Update: Thu, 21 Mar 2019 13:41:22 +0100 + +--- a/build.xml ++++ b/build.xml +@@ -2,6 +2,7 @@ + <project name="org.netlib" default="default" basedir="."> + <description>Builds, tests, and runs the project org.netlib.</description> + <property name="version" value="0.9.3" /> ++ <property name="src.dir" value="src"/> + <!-- REMINDER: When bumping the version value, also bump the value in jni/configure --> + <import file="nbproject/build-impl.xml"/> + +@@ -23,6 +24,12 @@ + </delete> + <delete dir="jni/ARPACK"/> + </target> ++ <target name="compile" description="compiles netlib code"> ++ <javac srcdir="${src.dir}" ++ sourcepath="${src.dir}" ++ debug="true"> ++ </javac> ++ </target> + <target name="generate" depends="compile"> + <!-- Autogenerate the Java and C files --> + <java fork="yes" classname="org.netlib.generate.JavaGenerator" classpath="${run.classpath}" /> ===================================== debian/patches/series ===================================== @@ -1 +1,2 @@ update_classpath.patch +add_compile_target.patch View it on GitLab: https://salsa.debian.org/java-team/netlib-java/commit/da4055377617ea59e92675088be41600e16a326d -- View it on GitLab: https://salsa.debian.org/java-team/netlib-java/commit/da4055377617ea59e92675088be41600e16a326d You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ pkg-java-commits mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

