From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-csv/
Date: Thu, 1 Jul 2021 14:15:21 +0000 (UTC) [thread overview]
Message-ID: <1625148908.308f787aa148f045d769205f5b4c2ce422ae9e8d.fordfrog@gentoo> (raw)
commit: 308f787aa148f045d769205f5b4c2ce422ae9e8d
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 1 13:28:14 2021 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Thu Jul 1 14:15:08 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=308f787a
dev-java/commons-csv: new package
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
dev-java/commons-csv/Manifest | 1 +
dev-java/commons-csv/commons-csv-1.8.ebuild | 58 +++++++++++++++++++++++++++++
dev-java/commons-csv/metadata.xml | 12 ++++++
3 files changed, 71 insertions(+)
diff --git a/dev-java/commons-csv/Manifest b/dev-java/commons-csv/Manifest
new file mode 100644
index 00000000000..fde0bbec53e
--- /dev/null
+++ b/dev-java/commons-csv/Manifest
@@ -0,0 +1 @@
+DIST commons-csv-1.8-sources.tar.gz 36962976 BLAKE2B 6b3ee00a9e6185b30aa5dd4cb8be684740ce9e61c38a5e3596b0e96da9674b05494b6996a4d39b88412f0cd333ec3d6c5b2c0e10171a5e9d3b6e8925107aa3e9 SHA512 e0a7f7dbb0bf381f0f8f703e0ccb689f96c0a610b7afbd771cfeecab7042416f6dddc15c0a6e9a23f157da87c2bf3f16efb2e2aeb135ef1ac8c7306659936443
diff --git a/dev-java/commons-csv/commons-csv-1.8.ebuild b/dev-java/commons-csv/commons-csv-1.8.ebuild
new file mode 100644
index 00000000000..d307ff30ad1
--- /dev/null
+++ b/dev-java/commons-csv/commons-csv-1.8.ebuild
@@ -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"
+)
diff --git a/dev-java/commons-csv/metadata.xml b/dev-java/commons-csv/metadata.xml
new file mode 100644
index 00000000000..a3076d914bd
--- /dev/null
+++ b/dev-java/commons-csv/metadata.xml
@@ -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>
next reply other threads:[~2021-07-01 14:15 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-01 14:15 Miroslav Šulc [this message]
-- strict thread matches above, loose matches on Subject: below --
2021-07-02 6:26 [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-csv/ Agostino Sarubbo
2021-07-02 6:28 Agostino Sarubbo
2021-07-02 6:29 Agostino Sarubbo
2021-09-24 7:14 Miroslav Šulc
2021-10-27 22:33 Sam James
2021-10-28 14:02 Agostino Sarubbo
2021-10-28 14:03 Agostino Sarubbo
2021-10-28 14:06 Miroslav Šulc
2022-02-11 19:58 Arthur Zamarin
2022-02-16 20:31 Arthur Zamarin
2022-03-08 13:06 Jakov Smolić
2024-10-20 10:07 Miroslav Šulc
2024-10-28 6:21 Miroslav Šulc
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1625148908.308f787aa148f045d769205f5b4c2ce422ae9e8d.fordfrog@gentoo \
--to=fordfrog@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox