aboutsummaryrefslogtreecommitdiffstats
path: root/testing/java-lz4/0001-ivy-location.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2016-04-07 20:57:56 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2016-04-08 13:21:38 +0000
commita4d862480c9a34d9249104679e87f163fe0ef5fd (patch)
tree7e97ce0796dff1d847b254f49fdc3490555d2c86 /testing/java-lz4/0001-ivy-location.patch
parentb15afbdabc604489c12a988ab2b49660d67ae27a (diff)
downloadaports-a4d862480c9a34d9249104679e87f163fe0ef5fd.tar.bz2
aports-a4d862480c9a34d9249104679e87f163fe0ef5fd.tar.xz
testing/java-lz4: new abuild
https://github.com/jpountz/lz4-java LZ4 compression for Java
Diffstat (limited to 'testing/java-lz4/0001-ivy-location.patch')
-rw-r--r--testing/java-lz4/0001-ivy-location.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/java-lz4/0001-ivy-location.patch b/testing/java-lz4/0001-ivy-location.patch
new file mode 100644
index 0000000000..f51ffa35e9
--- /dev/null
+++ b/testing/java-lz4/0001-ivy-location.patch
@@ -0,0 +1,21 @@
+From: Jakub Jirutka <jakub@jirutka.cz>
+Date: Thu, 7 Apr 2016 21:06:00 +0200
+Subject: [PATCH] Download Ivy to the current directory instead of home
+
+We don't want to clutter up home directory on the build server, do we?
+---
+diff --git a/build.xml b/build.xml
+index 841582e..2571f46 100644
+--- a/build.xml
++++ b/build.xml
+@@ -56,8 +56,8 @@
+ </target>
+
+ <target name="-ivy-install" unless="ivy.available">
+- <mkdir dir="${user.home}/.ant/lib" />
+- <get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.jar.version}/${ivy.jar.name}" dest="${user.home}/.ant/lib/${ivy.jar.name}"/>
++ <mkdir dir=".ant" />
++ <get src="http://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.jar.version}/${ivy.jar.name}" dest=".ant/${ivy.jar.name}"/>
+ </target>
+
+ <target name="install-cpptasks" unless="cpptasks.available">