Search Criteria
Package Details: postgresql-jdbc 42.2.18-1
Git Clone URL: | https://aur.archlinux.org/postgresql-jdbc.git (read-only, click to copy) |
---|---|
Package Base: | postgresql-jdbc |
Description: | The official JDBC driver for PostgreSQL. Contains JDBC 4.0, 4.1 & 4.2 drivers. |
Upstream URL: | http://jdbc.postgresql.org/ |
Licenses: | |
Submitter: | None |
Maintainer: | Huulivoide |
Last Packager: | Huulivoide |
Votes: | 50 |
Popularity: | 0.045311 |
First Submitted: | 2008-01-28 20:22 |
Last Updated: | 2020-12-14 13:25 |
Dependencies (1)
- java-runtime (jdk5, tuxjdk, jre7-openjdk-infinality, java-8-openjdk-shenandoah, jre8-openjdk-infinality, java-gcj-compat, jdk9, jre9, jdk-devel, jre10, jdk8-arm64, jdk6, jdk12-openj9-bin, zulu-12-bin, jre6, jre12, jdk8-openjdk-dcevm, jdk11-graalvm-ee-bin, server-jre, jdk8-arm, jdk13-openj9-bin, jdk9-openj9-bin, jdk10, jdk11-openjdk-dcevm, jre8-openjdk-jetbrains, jre8-openjdk-shenandoah, jdk10-openj9-bin, jdk14-openj9-bin, jdk7, jre7, jre14, jdk8-jetbrains, jdk7r1-j9-bin, jdk7-j9-bin, zulu-14-bin, zulu-13-bin, jdk-bcl, jre-bcl, amazon-corretto-15, jdk11-openj9-bin, amazon-corretto-8, amazon-corretto-11, jdk11-openjdk-dcevm-conflicts-fixed, jre8, jdk8, jdk11-adoptopenjdk, zulu-8-bin, zulu-11-bin, zulu-15-bin, liberica-jdk-11-bin, liberica-jdk-11-lite-bin, liberica-jre-11-full-bin, liberica-jdk-8-full-bin, liberica-jdk-11-full-bin, liberica-jre-11-bin, liberica-jre-8-full-bin, zulu-embedded-jdk, jdk8-j9-bin, zulu-embedded-jdk11, jdk8-openj9-bin, zulu-embedded-jdk8, jre11, sapmachine-jdk-bin, jre-jetbrains, jdk11-graalvm-bin, jdk8-graalvm-bin, jre8-adoptopenjdk, jdk-arm, jre11-jetbrains-imfix, java-openjdk-bin, jdk-openj9-bin, jdk-adoptopenjdk, jre, zulu-16-bin, liberica-jdk-full-bin, java-openjdk-loom-ea-bin, jdk15-adoptopenjdk, jre-openj9, jdk-jetbrains, java-openjdk-ea-bin, amazon-corretto-16, jre-openjdk, jre11-openjdk, jre7-openjdk, jre8-openjdk)
Latest Comments
1 2 3 Next › Last »
elbahek commented on 2020-12-11 05:54
PKGBUILD for 42.2.18 https://pastebin.com/qiuphF8s
Huulivoide commented on 2019-10-02 10:52
Package should be fixed now.
jimduchek commented on 2019-09-30 15:15
At some point this package got pretty broken. postgresql...jdbc42.jar does not even get installed, and the other two jars are zero-length files.
egore911 commented on 2018-10-28 19:53
PKGBUILD for 42.2.5: https://pastebin.com/spTpSzh8
This fixes also the lacking installation of the JDBC 4.2 driver.
radio_rogal commented on 2017-10-05 05:44
Current version is 42.*.*
https://jdbc.postgresql.org/download.html
PostgreSQL has removed the build number for whole 42 series.
strang3r commented on 2016-12-03 18:47
PKGBUILD for 9.4.1212: http://pastebin.com/J5ahCcJc
snoreven commented on 2016-09-07 16:51
Sorry, didn't see the PKGBUILD from the comments. Works with it. Please fix.
snoreven commented on 2016-09-07 15:14
I can't install, getting error when it's unpacking the .jar:
-> Pakker ut postgresql-jdbc-9.4.1208.jdbc4.jar med bsdtar
META-INF/: Can't replace existing directory with non-directory
bsdtar: Error exit delayed from previous errors.
SRChiP commented on 2016-07-04 17:21
You can use this PKGBUILD to successfully build it. The changes are renaming the file names in noextract, loser137's change.
#Maintainer: Jesse Jaara <gmail.com: jesse.jaara>
pkgname=postgresql-jdbc
_mainver=9.4
_build=1208
pkgver=${_mainver}.${_build}
pkgrel=2
pkgdesc="The official JDBC driver for PostgreSQL. Contains JDBC 4.0 and 4.1 drivers."
arch=('any')
url="http://jdbc.postgresql.org/"
license=("Custom: BSD")
depends=('java-runtime')
source=(LICENSE
postgresql-jdbc-${pkgver}.jdbc4.jar::http://jdbc.postgresql.org/download/postgresql-${_mainver}.${_build}.jre6.jar
postgresql-jdbc-${pkgver}.jdbc41.jar::http://jdbc.postgresql.org/download/postgresql-${_mainver}.${_build}.jre7.jar
postgresql-jdbc-${pkgver}.jdbc42.jar::http://jdbc.postgresql.org/download/postgresql-${_mainver}.${_build}.jar)
md5sums=('da7e6f8b26deefe7c03b391454732a0d'
'ad222fd5d73c16db63aed7bc19396019'
'e23f33f6bac5638842ed0f810590e3d4'
'19c06fdfc4fe514acf0bfacd1f8afd6a')
noextract=(postgresql-jdbc-${pkgver}.jdbc4.jar postgresql-jdbc-${pkgver}.jdbc41.jar postgresql-jdbc-${pkgver}.jdbc42.jar)
package() {
install -d -m755 "${pkgdir}/usr/share/java/${pkgname}"
install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 "${srcdir}/postgresql-jdbc-${pkgver}.jdbc4.jar" "${pkgdir}/usr/share/java/${pkgname}/"
install -m644 "${srcdir}/postgresql-jdbc-${pkgver}.jdbc41.jar" "${pkgdir}/usr/share/java/${pkgname}/"
install -m644 "${srcdir}/postgresql-jdbc-${pkgver}.jdbc42.jar" "${pkgdir}/usr/share/java/${pkgname}/"
ln -s postgresql-jdbc-${pkgver}.jdbc4.jar "${pkgdir}/usr/share/java/${pkgname}/postgresql-jdbc4.jar"
ln -s postgresql-jdbc-${pkgver}.jdbc41.jar "${pkgdir}/usr/share/java/${pkgname}/postgresql-jdbc41.jar"
ln -s postgresql-jdbc-${pkgver}.jdbc42.jar "${pkgdir}/usr/share/java/${pkgname}/postgresql-jdbc42.jar"
loser137 commented on 2016-03-22 08:05
postgresql-jdbc-9.4.1208.jdbc42.jar is downloaded but not installed. You can insert the following line in package() to fix this:
install -m644 "${srcdir}/postgresql-jdbc-${pkgver}.jdbc42.jar" "${pkgdir}/usr/share/java/${pkgname}/"