Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-io/
Date: Tue, 23 Aug 2022 18:53:50
Message-Id: 1661280818.fa59bded5bd30f6becaa63f03685ca0b770a353d.arthurzam@gentoo
1 commit: fa59bded5bd30f6becaa63f03685ca0b770a353d
2 Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
3 AuthorDate: Tue Aug 23 18:41:38 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 23 18:53:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa59bded
7
8 dev-java/commons-io: drop 2.11.0
9
10 Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
11 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
12
13 dev-java/commons-io/commons-io-2.11.0.ebuild | 55 ----------------------------
14 1 file changed, 55 deletions(-)
15
16 diff --git a/dev-java/commons-io/commons-io-2.11.0.ebuild b/dev-java/commons-io/commons-io-2.11.0.ebuild
17 deleted file mode 100644
18 index f6f4b5f8feb0..000000000000
19 --- a/dev-java/commons-io/commons-io-2.11.0.ebuild
20 +++ /dev/null
21 @@ -1,55 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -# Skeleton command:
26 -# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://mirror.dkm.cz/apache//commons/io/source/commons-io-2.11.0-src.tar.gz --slot 0 --keywords "~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" --ebuild commons-io-2.11.0.ebuild
27 -
28 -EAPI=7
29 -
30 -JAVA_PKG_IUSE="doc source test"
31 -MAVEN_ID="commons-io:commons-io:2.11.0"
32 -
33 -inherit java-pkg-2 java-pkg-simple
34 -
35 -DESCRIPTION="Utility classes, stream implementations, file filters, and much more"
36 -HOMEPAGE="https://commons.apache.org/proper/commons-io/"
37 -SRC_URI="mirror://apache/commons/io/source/${P}-src.tar.gz -> ${P}-sources.tar.gz"
38 -LICENSE="Apache-2.0"
39 -SLOT="1"
40 -KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
41 -
42 -# Compile dependencies
43 -# POM: pom.xml
44 -# test? com.google.jimfs:jimfs:1.2 -> !!!groupId-not-found!!!
45 -# test? org.apache.commons:commons-lang3:3.12.0 -> >=dev-java/commons-lang-3.12.0:3.6
46 -# test? org.junit-pioneer:junit-pioneer:1.4.2 -> !!!groupId-not-found!!!
47 -# test? org.junit.jupiter:junit-jupiter:5.7.2 -> !!!groupId-not-found!!!
48 -# test? org.mockito:mockito-inline:3.11.2 -> !!!artifactId-not-found!!!
49 -# test? org.openjdk.jmh:jmh-core:1.32 -> !!!groupId-not-found!!!
50 -# test? org.openjdk.jmh:jmh-generator-annprocess:1.32 -> !!!groupId-not-found!!!
51 -
52 -DEPEND="
53 - >=virtual/jdk-1.8:*
54 - test? (
55 - >=dev-java/commons-lang-3.12.0:3.6
56 - )
57 -"
58 -
59 -RDEPEND="
60 - >=virtual/jre-1.8:*
61 -"
62 -
63 -# some test dependencies are missing
64 -RESTRICT="test"
65 -
66 -S="${WORKDIR}/${P}-src"
67 -
68 -JAVA_ENCODING="iso-8859-1"
69 -
70 -JAVA_SRC_DIR="src/main/java"
71 -
72 -JAVA_TEST_GENTOO_CLASSPATH="commons-lang-3.6"
73 -JAVA_TEST_SRC_DIR="src/test/java"
74 -JAVA_TEST_RESOURCE_DIRS=(
75 - "src/test/resources"
76 -)