dev-java/commons-csv: new package

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Miroslav Šulc
2021-07-01 15:28:14 +02:00
parent e2d0328560
commit 308f787aa1
3 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST commons-csv-1.8-sources.tar.gz 36962976 BLAKE2B 6b3ee00a9e6185b30aa5dd4cb8be684740ce9e61c38a5e3596b0e96da9674b05494b6996a4d39b88412f0cd333ec3d6c5b2c0e10171a5e9d3b6e8925107aa3e9 SHA512 e0a7f7dbb0bf381f0f8f703e0ccb689f96c0a610b7afbd771cfeecab7042416f6dddc15c0a6e9a23f157da87c2bf3f16efb2e2aeb135ef1ac8c7306659936443

View File

@@ -0,0 +1,58 @@
# Copyright 1999-2021 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://mirror.dkm.cz/apache//commons/csv/source/commons-csv-1.8-src.tar.gz --slot 0 --keywords "~amd64 ~x86" --ebuild commons-csv-1.8.ebuild
EAPI=7
JAVA_PKG_IUSE="doc source test"
MAVEN_ID="org.apache.commons:commons-csv:1.8"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Simple interface for reading and writing CSV files of various types."
HOMEPAGE="https://commons.apache.org/proper/commons-csv/"
SRC_URI="https://mirror.dkm.cz/apache//commons/csv/source/${P}-src.tar.gz -> ${P}-sources.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# missing test deps
RESTRICT="test"
# Compile dependencies
# POM: pom.xml
# test? com.h2database:h2:1.4.200 -> !!!groupId-not-found!!!
# test? commons-io:commons-io:2.6 -> >=dev-java/commons-io-2.8.0:1
# test? org.apache.commons:commons-lang3:3.9 -> >=dev-java/commons-lang-3.12.0:3.6
# test? org.hamcrest:hamcrest:2.2 -> !!!artifactId-not-found!!!
# test? org.junit.jupiter:junit-jupiter:5.6.0 -> !!!groupId-not-found!!!
# test? org.mockito:mockito-core:3.2.4 -> !!!suitble-mavenVersion-not-found!!!
DEPEND="
>=virtual/jdk-1.8:*
test? (
>=dev-java/commons-io-2.8.0:1
>=dev-java/commons-lang-3.12.0:3.6
)
"
RDEPEND="
>=virtual/jre-1.8:*
"
S="${WORKDIR}/${P}-src"
DOCS=( LICENSE.txt NOTICE.txt RELEASE-NOTES.txt )
JAVA_SRC_DIR="src/main/java"
JAVA_RESOURCE_DIRS=(
"src/main/resources"
)
JAVA_TEST_GENTOO_CLASSPATH="commons-io-1,commons-lang-3.6"
JAVA_TEST_SRC_DIR="src/test/java"
JAVA_TEST_RESOURCE_DIRS=(
"src/test/resources"
)

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>java@gentoo.org</email>
<name>Java</name>
</maintainer>
<upstream>
<bugs-to>https://issues.apache.org/jira/browse/CSV</bugs-to>
<changelog>https://commons.apache.org/proper/commons-csv/changes-report.html</changelog>
</upstream>
</pkgmetadata>