summaryrefslogtreecommitdiff
path: root/debian/patches/build.patch
diff options
context:
space:
mode:
authorErich Schubert <erich@debian.org>2012-01-30 21:01:31 +0100
committerAndrej Shadura <andrewsh@debian.org>2019-03-09 22:30:31 +0000
commite580e42664ca92fbf8792bc39b8d59383db829fe (patch)
tree787e6b9e9aed85fae4010f860171de1829cb0edb /debian/patches/build.patch
parent3a6ca942c89382b33bbc95ad772e4def12109da1 (diff)
parent89aa1958dbaf9052da0c24706308a2ef8cefa96e (diff)
Import Debian changes 0.4.1-1
elki (0.4.1-1) unstable; urgency=low * New upstream bug fix release (a couple of minor fixes) * Specify encoding UTF-8 for javac (Closes: #642659)
Diffstat (limited to 'debian/patches/build.patch')
-rw-r--r--debian/patches/build.patch14
1 files changed, 7 insertions, 7 deletions
diff --git a/debian/patches/build.patch b/debian/patches/build.patch
index 9ac8e7e7..9bc8c024 100644
--- a/debian/patches/build.patch
+++ b/debian/patches/build.patch
@@ -1,17 +1,17 @@
-Index: elki-0.4.0~beta2/build.xml
+# Debian build.xml file
+Index: elki-0.4.1/build.xml
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
-+++ elki-0.4.0~beta2/build.xml 2011-09-03 01:54:38.000000000 +0200
-@@ -0,0 +1,58 @@
++++ elki-0.4.1/build.xml 2012-01-30 21:01:27.000000000 +0100
+@@ -0,0 +1,57 @@
+<project name="ELKI" default="dist" basedir=".">
+ <property name="src" location="src"/>
+ <property name="build" location="build"/>
+ <property name="dist" location="dist"/>
+ <property name="elki" value="de.lmu.ifi.dbs.elki"/>
-+ <property name="title" value="ELKI: Environment for DeveLoping KDD-A
-+pplications Supported by Index-Structures"/>
++ <property name="title" value="ELKI: Environment for DeveLoping KDD-Applications Supported by Index-Structures"/>
+ <property name="url" value="http://elki.dbs.ifi.lmu.de/"/>
-+ <property name="version" value="0.4.0~beta1"/>
++ <property name="version" value="0.4.1"/>
+
+ <target name="init">
+ <!-- Create the build directory structure used by compile -->
@@ -20,7 +20,7 @@ Index: elki-0.4.0~beta2/build.xml
+
+ <target name="compile" depends="init">
+ <!-- Compile the java code from ${src} into ${build} -->
-+ <javac destdir="${build}" includeantruntime="false" deprecation="false" debug="false" optimize="true" source="1.6" target="1.6" debuglevel="">
++ <javac destdir="${build}" includeantruntime="false" deprecation="false" debug="false" optimize="true" source="1.6" target="1.6" debuglevel="" encoding="UTF-8">
+ <compilerarg value="-Xlint:all" />
+ <classpath>
+ <pathelement path="${src}" />