Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/kouchat/files/
Date: Thu, 26 Jan 2017 22:37:07
Message-Id: 1485470165.af84bb700444e89113bf1ac701346dea25949537.soap@gentoo
1 commit: af84bb700444e89113bf1ac701346dea25949537
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Jan 21 18:33:49 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 26 22:36:05 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af84bb70
7
8 net-im/kouchat: remove unused xml file
9
10 Closes: https://github.com/gentoo/gentoo/pull/3583
11
12 net-im/kouchat/files/build.xml | 52 ------------------------------------------
13 1 file changed, 52 deletions(-)
14
15 diff --git a/net-im/kouchat/files/build.xml b/net-im/kouchat/files/build.xml
16 deleted file mode 100644
17 index a413586..00000000
18 --- a/net-im/kouchat/files/build.xml
19 +++ /dev/null
20 @@ -1,52 +0,0 @@
21 -<project name="kouchat" default="jar">
22 - <property name="dest.jar" value="kouchat.jar"/>
23 - <property name="build.app" value="build/app"/>
24 - <property name="build.test" value="build/test"/>
25 - <target name="compile">
26 - <mkdir dir="${build.app}"/>
27 - <javac srcdir="src" destdir="${build.app}"/>
28 - <copy todir="${build.app}/icons">
29 - <fileset dir="resources/icons"/>
30 - </copy>
31 - <copy todir="${build.app}/sounds">
32 - <fileset dir="resources/sounds"/>
33 - </copy>
34 - <copy file="kou_shortcut.ico" todir="${build.app}"/>
35 - <copy file="kou_shortcut.png" todir="${build.app}"/>
36 - <copy file="CHANGES" todir="${build.app}"/>
37 - <copy file="COPYING" todir="${build.app}"/>
38 - <copy file="FAQ" todir="${build.app}"/>
39 - <copy file="README" todir="${build.app}"/>
40 - </target>
41 -
42 - <target name="jar" depends="compile">
43 - <jar destfile="${dest.jar}">
44 - <fileset dir="${build.app}"/>
45 - </jar>
46 - </target>
47 -
48 - <target name="test">
49 - <mkdir dir="${build.test}"/>
50 - <javac srcdir="test" destdir="${build.test}">
51 - <classpath>
52 - <pathelement location="${dest.jar}"/>
53 - <pathelement path="${junit4.jar}"/>
54 - </classpath>
55 - </javac>
56 - <junit printsummary="yes" haltonfailure="yes">
57 - <classpath>
58 - <pathelement path="${build.test}"/>
59 - <pathelement path="${build.app}"/>
60 - </classpath>
61 - <test name="net.usikkert.kouchat.net.MessageParserTest"/>
62 - <test name="net.usikkert.kouchat.net.UDPReceiverTest"/>
63 - <test name="net.usikkert.kouchat.net.UDPSenderTest"/>
64 - </junit>
65 - </target>
66 -
67 - <target name="javadoc" depends="compile">
68 - <mkdir dir="docs"/>
69 - <javadoc sourcepath="src" destdir="docs"/>
70 - </target>
71 -
72 -</project>