public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jdbc-postgresql/
Date: Sat, 17 Sep 2022 12:47:20 +0000 (UTC)	[thread overview]
Message-ID: <1663418836.137ce67be75c100f0d4e71bc695031641154be3d.flow@gentoo> (raw)

commit:     137ce67be75c100f0d4e71bc695031641154be3d
Author:     Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Tue Aug 23 06:16:47 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sat Sep 17 12:47:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=137ce67b

dev-java/jdbc-postgresql: add 42.5.0

We don't shade dependencies, they are all on classpath.
A jar file for comparison can be obtained with
"mvn -DskipShadeDependencies=true package"

Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/26972
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 dev-java/jdbc-postgresql/Manifest                  |  1 +
 .../jdbc-postgresql/jdbc-postgresql-42.5.0.ebuild  | 52 ++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-java/jdbc-postgresql/Manifest b/dev-java/jdbc-postgresql/Manifest
index 4a263b6d3027..b8b5d45e578b 100644
--- a/dev-java/jdbc-postgresql/Manifest
+++ b/dev-java/jdbc-postgresql/Manifest
@@ -1 +1,2 @@
 DIST postgresql-jdbc-42.4.1.src.tar.gz 969554 BLAKE2B 76035b2362c304d6263b9549b2ecbedc6e1cfedeba9c2c35f07d29dada39e5bce93e939abb8cb2232a428b0341c5cd5e6ae22de6106292c4d28243e3e0e6fc00 SHA512 a49c5b68a26ba6fd1b150c45da2ec58ea4435b7c36b8aa9bf6c3d33b6a265dabe7da51705e9d7234a640c8f6ccb5c3abb639db2d7bc38e6f4e26550b05b4a844
+DIST postgresql-jdbc-42.5.0.src.tar.gz 971368 BLAKE2B 961ba5af17f27792f44b715e8a248950926f1e7a384c3bb7ef4d9f919c84833129d45bcaeaded17d8d8cb3733b3f70cde76c126c501c7c1c1ed8a356c2e2f78d SHA512 432347622d6a1034048cb2dc18e7c5fdb1e843a27db505c8ea0381fee700480682222f4b8a285d8d774a0732398cc6254692c8f130c1814a464966b9dba72f64

diff --git a/dev-java/jdbc-postgresql/jdbc-postgresql-42.5.0.ebuild b/dev-java/jdbc-postgresql/jdbc-postgresql-42.5.0.ebuild
new file mode 100644
index 000000000000..52690c919d62
--- /dev/null
+++ b/dev-java/jdbc-postgresql/jdbc-postgresql-42.5.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 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://jdbc.postgresql.org/download/postgresql-jdbc-42.5.0.src.tar.gz --slot 0 --keywords "~amd64 ~ppc64 ~x86" --ebuild jdbc-postgresql-42.5.0.ebuild
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source"
+MAVEN_ID="org.postgresql:postgresql:42.5.0"
+# We don't have junit-vintage and junit-jupiter.
+#	JAVA_TESTING_FRAMEWORKS="junit-vintage junit-jupiter junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Java JDBC 4.2 (JRE 8+) driver for PostgreSQL database"
+HOMEPAGE="https://jdbc.postgresql.org/"
+SRC_URI="https://jdbc.postgresql.org/download/postgresql-jdbc-${PV}.src.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+# Common dependencies
+# POM: pom.xml
+# com.ongres.scram:client:2.1 -> >=dev-java/scram-2.1:0
+# uk.org.webcompere:system-stubs-jupiter:2.0.1 -> !!!groupId-not-found!!!
+
+CP_DEPEND="dev-java/scram:0"
+
+# Compile dependencies
+# POM: pom.xml
+# test? junit:junit:4.13 -> >=dev-java/junit-4.13.2:4
+# test? org.junit.jupiter:junit-jupiter-api:5.8.2 -> !!!groupId-not-found!!!
+# test? org.junit.jupiter:junit-jupiter-engine:5.8.2 -> !!!groupId-not-found!!!
+# test? org.junit.jupiter:junit-jupiter-params:5.8.2 -> !!!groupId-not-found!!!
+# test? org.junit.vintage:junit-vintage-engine:5.8.2 -> !!!groupId-not-found!!!
+# test? se.jiderhamn:classloader-leak-test-framework:1.1.1 -> !!!groupId-not-found!!!
+
+DEPEND="
+	>=virtual/jdk-1.8:*
+		${CP_DEPEND}"
+
+RDEPEND="
+	>=virtual/jre-1.8:*
+		${CP_DEPEND}"
+
+S="${WORKDIR}/postgresql-${PV}-jdbc-src"
+
+JAVA_MAIN_CLASS="org.postgresql.util.PGJDBCMain"
+JAVA_SRC_DIR="src/main/java"
+JAVA_RESOURCE_DIRS="src/main/resources"


             reply	other threads:[~2022-09-17 12:47 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-17 12:47 Florian Schmaus [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-25 16:55 [gentoo-commits] repo/gentoo:master commit in: dev-java/jdbc-postgresql/ Miroslav Šulc
2024-06-25 12:38 Patrick Lauer
2024-01-10  8:29 Florian Schmaus
2024-01-07 12:42 Arthur Zamarin
2024-01-07  7:10 Sam James
2024-01-07  6:14 Sam James
2023-12-08  9:44 Miroslav Šulc
2023-04-25  5:30 Miroslav Šulc
2023-04-24 14:40 Jakov Smolić
2023-04-24 12:40 Sam James
2023-04-24 12:40 Sam James
2023-03-24  8:54 Miroslav Šulc
2022-10-20 16:32 Miroslav Šulc
2022-10-20 10:56 Jakov Smolić
2022-10-20 10:52 Jakov Smolić
2022-10-19  0:39 Sam James
2022-08-15 17:20 John Helmert III
2022-08-15  7:46 Agostino Sarubbo
2022-08-13  6:58 Agostino Sarubbo
2022-08-12 13:17 Arthur Zamarin
2022-08-10  6:04 Florian Schmaus
2022-07-28  7:06 Agostino Sarubbo
2022-07-25  4:19 Sam James
2022-06-20  7:41 Florian Schmaus
2021-06-23  8:13 Miroslav Šulc
2021-06-23  8:13 Miroslav Šulc
2018-04-08 18:38 James Le Cuirot
2016-02-14 10:11 Agostino Sarubbo
2016-01-25 15:44 Agostino Sarubbo
2015-12-05 19:49 Patrice Clement
2015-12-05 19:49 Patrice Clement
2015-11-03 13:45 Patrice Clement
2015-09-29 21:04 Patrice Clement

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=1663418836.137ce67be75c100f0d4e71bc695031641154be3d.flow@gentoo \
    --to=flow@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