Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/slf4j-api/
Date: Sat, 10 Apr 2021 08:55:01
Message-Id: 1618044886.5d1d44ecee90d6df85c9f781a81fee17350dac54.fordfrog@gentoo
1 commit: 5d1d44ecee90d6df85c9f781a81fee17350dac54
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 10 08:54:10 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 10 08:54:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d1d44ec
7
8 dev-java/slf4j-api: removed obsolete 1.7.30
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 dev-java/slf4j-api/slf4j-api-1.7.30.ebuild | 50 ------------------------------
14 1 file changed, 50 deletions(-)
15
16 diff --git a/dev-java/slf4j-api/slf4j-api-1.7.30.ebuild b/dev-java/slf4j-api/slf4j-api-1.7.30.ebuild
17 deleted file mode 100644
18 index 6a7a281f559..00000000000
19 --- a/dev-java/slf4j-api/slf4j-api-1.7.30.ebuild
20 +++ /dev/null
21 @@ -1,50 +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 slf4j-v_1.7.30/slf4j-api/pom.xml --download-uri https://github.com/qos-ch/slf4j/archive/refs/tags/v_1.7.30.tar.gz --slot 0 --keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild slf4j-api-1.7.30.ebuild
27 -
28 -EAPI=7
29 -
30 -JAVA_PKG_IUSE="doc source test"
31 -MAVEN_ID="org.slf4j:slf4j-api:1.7.30"
32 -JAVA_TESTING_FRAMEWORKS="junit-4"
33 -
34 -inherit java-pkg-2 java-pkg-simple
35 -
36 -DESCRIPTION="The slf4j API"
37 -HOMEPAGE="https://www.slf4j.org"
38 -SRC_URI="https://github.com/qos-ch/slf4j/archive/refs/tags/v_${PV}.tar.gz -> slf4j-${PV}-sources.tar.gz"
39 -
40 -LICENSE="MIT"
41 -SLOT="0"
42 -KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
43 -
44 -DEPEND="
45 - >=virtual/jdk-1.8:*
46 -"
47 -
48 -RDEPEND="
49 - >=virtual/jre-1.8:*
50 -"
51 -
52 -S="${WORKDIR}"
53 -
54 -JAVA_SRC_DIR="slf4j-v_${PV}/${PN}/src/main/java"
55 -JAVA_RESOURCE_DIRS=(
56 - "slf4j-v_${PV}/${PN}/src/main/resources"
57 -)
58 -
59 -JAVA_TEST_GENTOO_CLASSPATH="junit-4"
60 -JAVA_TEST_SRC_DIR="slf4j-v_${PV}/${PN}/src/test/java"
61 -JAVA_TEST_EXCLUDES=(
62 - # This code should have never made it into slf4j-api.jar
63 - "org.slf4j.NoBindingTest"
64 - # java.lang.InstantiationException
65 - "org.slf4j.helpers.MultithreadedInitializationTest"
66 -)
67 -
68 -src_prepare() {
69 - default
70 - java-pkg_clean
71 -}