Package Details: postgresql-jdbc 42.5.3-2

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.2 drivers.
Upstream URL: http://jdbc.postgresql.org/
Licenses: custom: BSD
Submitter: None
Maintainer: Huulivoide
Last Packager: Huulivoide
Votes: 52
Popularity: 0.078509
First Submitted: 2008-01-28 20:22 (UTC)
Last Updated: 2023-02-09 09:23 (UTC)

Dependencies (1)

Required by (0)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3

vitalijr2 commented on 2011-11-19 21:26 (UTC)

No, noextract works: jars are not extracted. On my workstation: $ pacman -Ql postgresql-jdbc postgresql-jdbc /usr/ postgresql-jdbc /usr/share/ postgresql-jdbc /usr/share/java/ postgresql-jdbc /usr/share/java/postgresql-jdbc/ postgresql-jdbc /usr/share/java/postgresql-jdbc/postgresql-9.1-901.jdbc3.jar postgresql-jdbc /usr/share/java/postgresql-jdbc/postgresql-9.1-901.jdbc4.jar postgresql-jdbc /usr/share/java/postgresql-jdbc/postgresql-jdbc3.jar postgresql-jdbc /usr/share/java/postgresql-jdbc/postgresql-jdbc4.jar

schuay commented on 2011-11-19 08:09 (UTC)

Thanks. The noextract=('*.jar') line is still broken though, noextract doesn't accept wildcards. That's the reason a plain cp $srcdir/* didn't work.

vitalijr2 commented on 2011-11-18 22:29 (UTC)

9.1_901

schuay commented on 2011-11-18 12:41 (UTC)

Please fix this package. If it hasn't been updated by Nov 22 (= 2 weeks after pcarrier's comment), it will be orphaned.

teekay commented on 2011-11-12 10:55 (UTC)

This package is broken. cp -R as suggested by pcarrier would still result in broken symlinks and needless install of all .class files I used this: package() { mkdir -p $pkgdir/usr/share/java/$pkgname cd $pkgdir/usr/share/java/$pkgname cp $srcdir/*.jar . cp $srcdir/setClasspath.sh . for i in *.jar; do _filename=${i##*\/}; _version=${pkgver//_/-} ln -s ${_filename} ${_filename/${_version}./} || return 1 done }

pcarrier commented on 2011-11-08 15:05 (UTC)

cp $srcdir/* $pkgdir/usr/share/java/$pkgname has to be replaced with: cp -r $srcdir/* $pkgdir/usr/share/java/$pkgname

vitalijr2 commented on 2010-11-13 16:20 (UTC)

9.0-801