dev-java/joda-convert: drop 2.2.2-r2

Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Volkmar W. Pogatzki 2024-11-21 22:25:44 +01:00 committed by Miroslav Šulc
parent 55bcd350a8
commit a952940da4
No known key found for this signature in database
GPG Key ID: 65D0F770B26B469C
2 changed files with 0 additions and 66 deletions

View File

@ -1,2 +1 @@
DIST joda-convert-2.2.2.tar.gz 65476 BLAKE2B 9ef8e3b172d31f4e3b748ba5aae807b1d344c3b6bedeb0bf0b84b93009171495f271d03cd9f7b29147a256ddd1081b3fc9640c1df6b45425080ce1d44e2c0f37 SHA512 9660491373d5f7d415ab47cec7164922fc8901803e759bbf8cf7d0cc58040c2c8b245271f33d641a563ffb25b8e42f8197e297da7d1fe68a5c50ebb61536f3ae
DIST joda-convert-2.2.4.tar.gz 56778 BLAKE2B 76bcbf6a63461e2a1bb2ce82c38aa65fef1f385cdb9752ef7cffefcbd6b535b822f25a7d21026fd117fb2f40ec15113a6f2884ae21c56d1f49ea182fe9993fae SHA512 4d503328a8424f3992b4ad13f192481268136630426c3d9830d9e4bb4c6b14422d7097654c80b69f9c863b55b8da1938971b1dad5be70293824953c6c3a719ae

View File

@ -1,65 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# Skeleton command:
# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri https://github.com/JodaOrg/joda-convert/archive/refs/tags/v2.2.2.tar.gz --slot 0 --keywords "~amd64 ~arm ~arm64 ~ppc64 ~x86" --ebuild joda-convert-2.2.2.ebuild
EAPI=8
JAVA_PKG_IUSE="doc source test"
MAVEN_ID="org.joda:joda-convert:2.2.2"
JAVA_TESTING_FRAMEWORKS="junit-4"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Library to convert Objects to and from String"
HOMEPAGE="https://www.joda.org/joda-convert/"
SRC_URI="https://github.com/JodaOrg/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm64 ppc64"
# Compile dependencies
# POM: pom.xml
# test? com.google.guava:guava:31.0.1-jre -> !!!suitable-mavenVersion-not-found!!!
# test? junit:junit:4.13.2 -> >=dev-java/junit-4.13.2:4
DEPEND="
>=virtual/jdk-11:*
test? (
dev-java/guava:0
)
"
RDEPEND="
>=virtual/jre-1.8:*
"
DOCS=( {NOTICE,RELEASE-NOTES}.txt README.md )
S="${WORKDIR}/${P}"
JAVA_SRC_DIR="src/main/java"
JAVA_TEST_GENTOO_CLASSPATH="guava,junit-4"
JAVA_TEST_SRC_DIR="src/test/java"
JAVA_TEST_RESOURCE_DIRS="src/test/resources"
JAVA_TEST_EXCLUDES=(
# Upstream: Tests run: 186, Failures: 0, Errors: 0, Skipped: 0
# All following: No runnable methods
org.joda.convert.test1.Test1Class
org.joda.convert.test1.Test1Interface
org.joda.convert.test2.Test2Class
org.joda.convert.test2.Test2Factory
org.joda.convert.test2.Test2Interface
org.joda.convert.test3.Test3Class
org.joda.convert.test3.Test3Factory
org.joda.convert.test3.Test3Interface
org.joda.convert.test3.Test3SuperClass
org.joda.convert.test4.Test4Class
org.joda.convert.test4.Test4Factory
org.joda.convert.test4.Test4Interface
org.joda.convert.TestRenameHandlerBadInit
)