summarylogtreecommitdiffstats
path: root/build.patch
diff options
context:
space:
mode:
authorFrederik “Freso” S. Olesen2018-07-15 17:52:30 +0200
committerFrederik “Freso” S. Olesen2018-07-15 17:52:30 +0200
commit640534cd62171be3da331dac1e75b3553e2a0e61 (patch)
treea82d3e055a0510496cc2555a0075a0e30db0a5fd /build.patch
parent8493187a278ba18b3cb21f878bab9ea87a403326 (diff)
downloadaur-640534cd62171be3da331dac1e75b3553e2a0e61.tar.gz
Update to 0.9.1(-emotefix)
A number of things have changed in upstream since 0.8.7, notably: * The license for the program as a whole has changed from MIT to GPL3 * It's now using gradle instead of ant for building For this and other reasons, a lot of the patches that were previously included is being dropped here on out, unless it turns out that they're desperately needed. The only thing being patched now is a variable that determines whether to do version checks (which is being disabled, as per upstream's recommendation), all other code is the same as upstream's. One thing this means is that the Chatty configuration will now live in `~/.chatty` instead of `~/.config/chatty` which may "break" some users' experience. I will post a note on the AUR page about this.
Diffstat (limited to 'build.patch')
-rw-r--r--build.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/build.patch b/build.patch
deleted file mode 100644
index 21dba0f874f2..000000000000
--- a/build.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -Nur chatty-0.8.4.orig/build.xml chatty-0.8.4/build.xml
---- chatty-0.8.4.orig/build.xml 1970-01-01 01:00:00.000000000 +0100
-+++ chatty-0.8.4/build.xml 2016-10-24 22:23:20.312077302 +0200
-@@ -0,0 +1,29 @@
-+<project name="chatty" default="jar">
-+ <target name="clean">
-+ <delete dir="bin"/>
-+ <delete dir="dist"/>
-+ <delete dir="assets/lib/dlls"/>
-+ </target>
-+
-+ <target name="compile" depends="clean">
-+ <mkdir dir="bin"/>
-+ <javac srcdir="src/chatty" encoding="utf-8" destdir="bin">
-+ <classpath>
-+ <fileset dir="assets/lib">
-+ <include name="**/*.jar" />
-+ </fileset>
-+ </classpath>
-+ </javac>
-+ <copy todir="bin">
-+ <fileset dir="src" excludes="**/*.java"/>
-+ </copy>
-+ </target>
-+
-+ <target name="jar" depends="compile">
-+ <mkdir dir="dist"/>
-+ <jar manifest="manifest.mf" destfile="dist/chatty.jar">
-+ <fileset dir="bin" />
-+ <zipgroupfileset dir="assets/lib" />
-+ </jar>
-+ </target>
-+ </project>