Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-launcher/, dev-java/commons-launcher/files/
Date: Sat, 30 Apr 2016 17:09:00
Message-Id: 1462035240.b964980b59be66e147e127b86a445f14b702c3d7.monsieurp@gentoo
1 commit: b964980b59be66e147e127b86a445f14b702c3d7
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 16:53:06 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 16:54:00 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b964980b
7
8 dev-java/commons-launcher: Clean up old.
9
10 Package-Manager: portage-2.2.26
11
12 .../commons-launcher-1.1-r1.ebuild | 40 ----------------------
13 dev-java/commons-launcher/files/1.1-javadoc.patch | 24 -------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/dev-java/commons-launcher/commons-launcher-1.1-r1.ebuild b/dev-java/commons-launcher/commons-launcher-1.1-r1.ebuild
17 deleted file mode 100644
18 index 3308b11..0000000
19 --- a/dev-java/commons-launcher/commons-launcher-1.1-r1.ebuild
20 +++ /dev/null
21 @@ -1,40 +0,0 @@
22 -# Copyright 1999-2016 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -JAVA_PKG_IUSE="examples doc source"
27 -
28 -inherit base java-pkg-2 java-ant-2
29 -
30 -DESCRIPTION="Commons-launcher eliminates the need for a batch or shell script to launch a Java class"
31 -HOMEPAGE="http://commons.apache.org/launcher/"
32 -SRC_URI="mirror://apache/jakarta/${PN/-//}/source/${P}-src.tar.gz"
33 -LICENSE="Apache-2.0"
34 -SLOT="0"
35 -KEYWORDS="amd64 ppc64 x86 ~x86-fbsd"
36 -IUSE=""
37 -
38 -DEPEND=">=virtual/jdk-1.4"
39 -RDEPEND=">=virtual/jre-1.4
40 - dev-java/ant-core"
41 -
42 -S=${WORKDIR}/${PN}
43 -
44 -# https://issues.apache.org/jira/browse/LAUNCHER-7
45 -PATCHES=( "${FILESDIR}/1.1-javadoc.patch" )
46 -
47 -src_compile() {
48 - java-ant_rewrite-classpath "${S}/build.xml"
49 - EANT_GENTOO_CLASSPATH="ant-core" java-pkg-2_src_compile
50 -}
51 -
52 -# Standard commons build.xml but no tests actually implemented
53 -src_test() { :; }
54 -
55 -src_install() {
56 - java-pkg_dojar dist/bin/*.jar || die "java-pkg_dojar died"
57 - dodoc README.txt NOTICE.txt || die
58 - use doc && java-pkg_dojavadoc dist/docs/api
59 - use examples && java-pkg_doexamples example
60 - use source && java-pkg_dosrc src/java/*
61 -}
62
63 diff --git a/dev-java/commons-launcher/files/1.1-javadoc.patch b/dev-java/commons-launcher/files/1.1-javadoc.patch
64 deleted file mode 100644
65 index d83229a..0000000
66 --- a/dev-java/commons-launcher/files/1.1-javadoc.patch
67 +++ /dev/null
68 @@ -1,24 +0,0 @@
69 -diff -ur src.old/java/org/apache/commons/launcher/types/ArgumentSet.java src/java/org/apache/commons/launcher/types/ArgumentSet.java
70 ---- src.old/java/org/apache/commons/launcher/types/ArgumentSet.java 2004-02-28 13:52:20.000000000 +0200
71 -+++ src/java/org/apache/commons/launcher/types/ArgumentSet.java 2007-05-05 16:26:13.000000000 +0300
72 -@@ -18,7 +18,7 @@
73 -
74 -
75 - /**
76 -- * A class that represents a set of nested <arg> elements.
77 -+ * A class that represents a set of nested &lt;arg&gt; elements.
78 - *
79 - * @author Patrick Luby
80 - */
81 -diff -ur src.old/java/org/apache/commons/launcher/types/ConditionalArgument.java src/java/org/apache/commons/launcher/types/ConditionalArgument.java
82 ---- src.old/java/org/apache/commons/launcher/types/ConditionalArgument.java 2004-02-28 14:43:31.000000000 +0200
83 -+++ src/java/org/apache/commons/launcher/types/ConditionalArgument.java 2007-05-05 16:26:50.000000000 +0300
84 -@@ -24,7 +24,7 @@
85 - import org.apache.tools.ant.types.Path;
86 -
87 - /**
88 -- * A class that represents nested <arg> or <jvmarg> elements. This class
89 -+ * A class that represents nested &lt;arg&gt; or &lt;jvmarg&gt; elements. This class
90 - * provides the same functionality as the class that represents these same
91 - * elements in a "java" task. In addition, this class supports conditional "if"
92 - * and "unless" attributes.