From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jackcess/
Date: Tue, 20 Apr 2021 13:28:46 +0000 (UTC) [thread overview]
Message-ID: <1618925318.5747aa5e74b23aed0e216e58a710b7ea7f785ca8.fordfrog@gentoo> (raw)
commit: 5747aa5e74b23aed0e216e58a710b7ea7f785ca8
Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Sun Apr 18 21:31:03 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=5747aa5e
dev-java/jackcess: bump to 4.0.0
Bug: https://bugs.gentoo.org/783816
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
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
dev-java/jackcess/Manifest | 1 +
dev-java/jackcess/jackcess-4.0.0.ebuild | 63 +++++++++++++++++++++++++++++++++
2 files changed, 64 insertions(+)
diff --git a/dev-java/jackcess/Manifest b/dev-java/jackcess/Manifest
index 63a13dff7c5..ab3e2780f87 100644
--- a/dev-java/jackcess/Manifest
+++ b/dev-java/jackcess/Manifest
@@ -1 +1,2 @@
DIST jackcess-1.2.14.3-sources.jar 541095 BLAKE2B 60700a7ebb87f371a28d7cfcc588fbd61e28e4744e96a214e0923cd32c1b8e265b87d98048b277e8d9e5f1e582f17dc0962550ec8e5e7ede7adb83d0c417f25a SHA512 a0ccc39187ee94f550760d5640b736cf54d7523bad4eed715166608e18b30acad82a8db2d78f4c9da381c04876571c3d9fdb0418ee2585568c5da18b000f3b1b
+DIST jackcess-4.0.0-sources.tar.gz 12140889 BLAKE2B 44bdd0ba74e9e462364506e563b2e5db8a6581686a0b1ab7d9995d2dfce164593eb533986ac666a7f79180478a8a16ccc8ef57a7af08045cb671a3a5269f84a6 SHA512 514ecf235943183e0b3813550adf801cc4ab1734137ae0b131f5e3dca9f774f2a866bec397ccc8d37d65e9c3f0c4c995baee091480eb8e2bb91e85894c2a27e6
diff --git a/dev-java/jackcess/jackcess-4.0.0.ebuild b/dev-java/jackcess/jackcess-4.0.0.ebuild
new file mode 100644
index 00000000000..c46dd19bf78
--- /dev/null
+++ b/dev-java/jackcess/jackcess-4.0.0.ebuild
@@ -0,0 +1,63 @@
+# 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://github.com/jahlborn/jackcess/archive/refs/tags/jackcess-4.0.0.tar.gz --slot 1 --keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild jackcess-4.0.0.ebuild
+
+EAPI=7
+
+JAVA_PKG_IUSE="doc source test"
+MAVEN_ID="com.healthmarketscience.jackcess:jackcess:4.0.0"
+JAVA_TESTING_FRAMEWORKS="junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="A pure Java library for reading from and writing to MS Access databases."
+HOMEPAGE="https://jackcess.sourceforge.io"
+SRC_URI="https://github.com/jahlborn/${PN}/archive/refs/tags/${P}.tar.gz -> ${P}-sources.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="1"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+# Common dependencies
+# POM: pom.xml
+# commons-logging:commons-logging:1.2 -> >=dev-java/commons-logging-1.2:0
+# org.apache.commons:commons-lang3:3.10 -> >=dev-java/commons-lang-3.11:3.6
+# org.apache.poi:poi:4.0.0 -> >=dev-java/poi-5.0.0:0
+
+CDEPEND="
+ >=dev-java/commons-lang-3.11:3.6
+ >=dev-java/commons-logging-1.2:0
+ >=dev-java/poi-5.0.0:0
+"
+
+DEPEND="
+ >=virtual/jdk-1.8:*
+ ${CDEPEND}
+"
+
+RDEPEND="
+ >=virtual/jre-1.8:*
+ ${CDEPEND}"
+
+S="${WORKDIR}/${PN}-${P}"
+
+JAVA_GENTOO_CLASSPATH="commons-logging,commons-lang-3.6,poi"
+JAVA_SRC_DIR="src/main/java"
+JAVA_RESOURCE_DIRS="src/main/resources"
+
+JAVA_TEST_GENTOO_CLASSPATH="junit-4"
+JAVA_TEST_SRC_DIR="src/test/java"
+JAVA_TEST_RESOURCE_DIRS="src/test/resources"
+
+JAVA_TEST_EXCLUDES=(
+ # initializationError(com.healthmarketscience.jackcess.TestUtil)
+ # org.junit.runners.model.InvalidTestClassError: Invalid test class 'com.healthmarketscience.jackcess.TestUtil'
+ "com.healthmarketscience.jackcess.TestUtil"
+)
+
+src_test() {
+ TZ=UTC
+ java-pkg-simple_src_test
+}
next reply other threads:[~2021-04-20 13:28 UTC|newest]
Thread overview: 16+ 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 --
2024-12-30 19:41 [gentoo-commits] repo/gentoo:master commit in: dev-java/jackcess/ Florian Schmaus
2024-12-24 3:31 Sam James
2024-12-10 15:22 Sam James
2024-12-06 20:28 Sam James
2024-11-07 7:30 Miroslav Šulc
2024-11-07 7:27 Miroslav Šulc
2022-07-10 19:08 Arthur Zamarin
2021-05-17 3:02 Sam James
2021-05-16 18:58 Sam James
2021-05-06 7:22 Sergei Trofimovich
2021-05-04 8:54 Miroslav Šulc
2021-04-25 5:19 Sam James
2021-04-20 13:44 Miroslav Šulc
2017-07-17 9:48 Alexis Ballier
2016-12-05 14:16 Thomas Deutschmann
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.5747aa5e74b23aed0e216e58a710b7ea7f785ca8.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