public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/poi/
Date: Tue, 20 Apr 2021 13:28:46 +0000 (UTC)	[thread overview]
Message-ID: <1618925318.5a0a34fbbcbaf8a4144cca2e7ad560a2cf27f3be.fordfrog@gentoo> (raw)

commit:     5a0a34fbbcbaf8a4144cca2e7ad560a2cf27f3be
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Mon Apr 19 15:06:07 2021 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Tue Apr 20 13:28:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a0a34fb

dev-java/poi: new package

Closes: https://bugs.gentoo.org/784017
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/20456/commits/a26c72eebde1c8adbc687c04757dad7dd53ddaf2
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 dev-java/poi/Manifest         |  1 +
 dev-java/poi/metadata.xml     | 12 ++++++++
 dev-java/poi/poi-5.0.0.ebuild | 65 +++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 78 insertions(+)

diff --git a/dev-java/poi/Manifest b/dev-java/poi/Manifest
new file mode 100644
index 00000000000..712b8ee1f6e
--- /dev/null
+++ b/dev-java/poi/Manifest
@@ -0,0 +1 @@
+DIST poi-5.0.0.tar.gz 111429369 BLAKE2B b29e754fb709d01ff4d68e9227f4c4739384bd02934b6860e8a0e96552d9e9ff1c5c665bc0b701f79226505fd98373fe6ad160c72735903eae388f0cd6618337 SHA512 e79d15b42d8ec389fd15b7714faf7b49b9fb4d57014cb341fff0f061393f4ea7dfcbd3810a6ec19539eabddbb1d0690aa56de4a1a412d05a527e11797047023a

diff --git a/dev-java/poi/metadata.xml b/dev-java/poi/metadata.xml
new file mode 100644
index 00000000000..393300ad48a
--- /dev/null
+++ b/dev-java/poi/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>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">apache/poi</remote-id>
+		<bugs-to>https://bz.apache.org/bugzilla/buglist.cgi?product=POI</bugs-to>
+		<changelog>https://poi.apache.org/changes.html</changelog>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-java/poi/poi-5.0.0.ebuild b/dev-java/poi/poi-5.0.0.ebuild
new file mode 100644
index 00000000000..abdea080801
--- /dev/null
+++ b/dev-java/poi/poi-5.0.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Skeleton command:
+# java-ebuilder --generate-ebuild --workdir . --pom poi-5.0.0/sonar/main/pom.xml --download-uri https://archive.apache.org/dist/poi/release/src/poi-src-5.0.0-20210120.tar.gz --slot 0 --keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild poi-5.0.0.ebuild
+
+EAPI=7
+
+JAVA_PKG_IUSE="doc source"
+MAVEN_ID="org.apache.poi:poi-main:5.0.0"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Maven build of Apache POI for Sonar checks"
+HOMEPAGE="https://poi.apache.org/"
+SRC_URI="https://archive.apache.org/dist/${PN}/release/src/${PN}-src-${PV}-20210120.tar.gz -> ${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+# Common dependencies
+# POM: ${P}/sonar/main/pom.xml
+# com.zaxxer:SparseBitSet:1.2 -> >=dev-java/sparsebitset-1.2:0
+# commons-codec:commons-codec:1.15 -> >=dev-java/commons-codec-1.11:0
+# org.apache.commons:commons-collections4:4.4 -> >=dev-java/commons-collections-4.1:4
+# org.apache.commons:commons-math3:3.6.1 -> >=dev-java/commons-math-3.6.1:3
+# org.slf4j:jcl-over-slf4j:1.7.30 -> !!!artifactId-not-found!!!
+# org.slf4j:slf4j-api:1.7.30 -> >=dev-java/slf4j-api-1.7.30:0
+
+#	CDEPEND="
+#		!!!artifactId-not-found!!!
+#		>=dev-java/commons-codec-1.11:0
+#		>=dev-java/commons-collections-4.1:4
+#		>=dev-java/commons-math-3.6.1:3
+#		>=dev-java/slf4j-api-1.7.30:0
+#		>=dev-java/sparsebitset-1.2:0
+#	"
+CDEPEND="
+	>=dev-java/commons-codec-1.11:0
+	>=dev-java/commons-collections-4.1:4
+	>=dev-java/commons-math-3.6.1:3
+	>=dev-java/slf4j-api-1.7.30:0
+	>=dev-java/sparsebitset-1.2:0
+	dev-java/commons-logging:0
+"
+
+DEPEND="
+	>=virtual/jdk-1.8:*
+	${CDEPEND}
+"
+
+RDEPEND="
+	>=virtual/jre-1.8:*
+	${CDEPEND}"
+
+S="${WORKDIR}"
+
+#	JAVA_GENTOO_CLASSPATH="sparsebitset,commons-codec,commons-collections-4,commons-math-3,!!!artifactId-not-found!!!,slf4j-api"
+JAVA_GENTOO_CLASSPATH="sparsebitset,commons-codec,commons-collections-4,commons-logging,commons-math-3,slf4j-api"
+JAVA_SRC_DIR="${P}/src/java"
+
+src_prepare() {
+	default
+	java-pkg_clean
+}


             reply	other threads:[~2021-04-20 13:28 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-20 13:28 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-04-20 13:28 [gentoo-commits] repo/gentoo:master commit in: dev-java/poi/ Miroslav Šulc
2021-04-25  5:19 Sam James
2021-05-06  7:22 Sergei Trofimovich
2021-05-16 18:58 Sam James
2021-05-17  3:02 Sam James
2022-07-10 19:08 Arthur Zamarin
2022-07-24 17:00 Florian Schmaus
2022-07-30 11:28 Arthur Zamarin
2022-08-23 16:32 Arthur Zamarin
2022-08-23 18:26 Sam James
2022-08-23 18:26 Sam James
2022-08-23 18:53 Arthur Zamarin
2022-10-22  9:31 Miroslav Šulc
2022-11-21 17:43 Arthur Zamarin
2022-11-21 17:43 Arthur Zamarin
2022-11-21 21:48 Sam James
2022-11-22  1:08 Sam James
2022-11-22  7:15 Miroslav Šulc
2024-09-03  8:20 Miroslav Šulc
2024-10-01 23:32 Sam James
2024-10-01 23:32 Sam James
2024-10-01 23:32 Sam James
2024-10-09  7:15 Arthur Zamarin

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=1618925318.5a0a34fbbcbaf8a4144cca2e7ad560a2cf27f3be.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