notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

Port details
postgresql-jdbc Java JDBC implementation for PostgreSQL
42.7.3 databases on this many watch lists=24 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 42.7.1Version of this port present on the latest quarterly branch.
Maintainer: pgsql@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2002-02-19 05:35:59
Last Update: 2024-03-17 21:05:50
Commit Hash: 480f6c9
People watching this port, also watch:: gnupg
Also Listed In: java
License: BSD3CLAUSE
WWW:
https://jdbc.postgresql.org/
Description:
This is the official implementation of JDBC, the Java Database Connectivity API, for accessing PostgreSQL databases from Java.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (4 items)
Collapse this list.
  1. share/java/classes/postgresql.jar
  2. /usr/local/share/licenses/postgresql-jdbc-42.7.3/catalog.mk
  3. /usr/local/share/licenses/postgresql-jdbc-42.7.3/LICENSE
  4. /usr/local/share/licenses/postgresql-jdbc-42.7.3/BSD3CLAUSE
Collapse this list.
Dependency lines:
  • postgresql-jdbc>0:databases/postgresql-jdbc
To install the port:
cd /usr/ports/databases/postgresql-jdbc/ && make install clean
To add the package, run one of these commands:
  • pkg install databases/postgresql-jdbc
  • pkg install postgresql-jdbc
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: postgresql-jdbc
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1710490233 SHA256 (postgresql-42.7.3.jar) = a2644cbfba1baa145ff7e8c8ef582a6eed7a7ec4ca792f7f054122bdec756268 SIZE (postgresql-42.7.3.jar) = 1089312

Packages (timestamps in pop-ups are UTC):
postgresql-jdbc
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest42.7.242.7.2-42.7.242.7.2---
FreeBSD:13:quarterly42.7.142.7.142.6.042.7.142.7.1-42.7.142.7.1
FreeBSD:14:latest42.7.242.7.242.4.2-42.7.2--42.6.0
FreeBSD:14:quarterly42.7.142.7.1--42.7.1-42.7.142.7.1
FreeBSD:15:latest42.7.242.7.2n/a-n/a-42.7.142.7.2
FreeBSD:15:quarterly--n/a-n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. java : java/openjdk8
Runtime dependencies:
  1. java : java/openjdk8
This port is required by:
for Run
  1. databases/postgis-jdbc

Deleted ports which required this port:

Expand this list of 2 deleted ports
  1. databases/isql-viewer*
  2. databases/jasperreports*
  3. Collapse this list of deleted ports.
* - deleted ports are only shown under the This port is required by section. It was harder to do for the Required section. Perhaps later...

Configuration Options:
No options to configure
Options name:
databases_postgresql-jdbc
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. http://jdbc.postgresql.org/download/
Collapse this list.
Notes from UPDATING
These upgrade notes are taken from /usr/ports/UPDATING
  • 2023-09-08
    Affects: users of databases/postgresql* and other software using PostgreSQL to run
    Author: kbowling@FreeBSD.org
    Reason: 
      The default version of PostgreSQL has been switched from 13 to 15.
      The upgrade procedure can use up twice the space the databases
      currently needs. If you have a big amount of stored data take a
      closer look at the manpage of pg_upgrade for avoidance and/or
      speedup of the upgrade.
    
      The upgrade instructions consider a basic usage and do not match
      complex scenarios like replication, sharding, or similar.
    
      Upgrade instructions:
    
      First stop your PostgreSQL, create PostgreSQL-binaries and backup your data.
      If you have another Version of PostgreSQL installed, for example 13, your
      files are named according to this.
    
      # service postgresql stop
      # pkg create postgresql13-server postgresql13-contrib
      # mkdir /tmp/pg-upgrade
      # tar xf postgresql13-server-13.12.pkg -C /tmp/pg-upgrade
      # tar xf postgresql13-contrib-13.12.pkg -C /tmp/pg-upgrade
      # pkg delete -f databases/postgresql13-server databases/postgresql13-contrib databases/postgresql13-client
    
      Now update PostgreSQL:
    
        pkg user:
        # pkg install databases/postgresql15-server databases/postgresql15-contrib
        # pkg upgrade
    
        Portmaster users:
        # portmaster databases/postgresql15-server databases/postgresql15-contrib
        # portmaster -a
    
        Portupgrade users:
        # portinstall databases/postgresql15-server databases/postgresql15-contrib
        # portupgrade -a
    
      After installing the new PostgreSQL version you need to convert
      all your databases to new version:
    
      # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C -D /var/db/postgres/data15 -U postgres"
      # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data13/ -B /usr/local/bin/ -D /var/db/postgres/data15/ -U postgres "
    
      Now the migration is finished. You can start PostgreSQL again with:
    
      # service postgresql start
    
      ATTENTION:
      1) The default user changed from "pgsql" to "postgres" in 11. The migration steps above now assume
         the "postgres" database user and FreeBSD user.
      2) See the updating entry 20190829 if you are updating from a release prior to 11.
      3) If you use non-default initdb options, you have to adjust the initdb-command accordingly
    
    
Expand this list (1 items)
  • 2021-10-24
    Affects: users of databases/postgresql* and other software using PostgreSQL to run
    Author: kbowling@FreeBSD.org
    Reason: 
      The default version of PostgreSQL has been switched from 12 to 13.
      The upgrade procedure can use up twice the space the databases
      currently needs. If you have a big amount of stored data take a
      closer look at the manpage of pg_upgrade for avoidance and/or
      speedup of the upgrade.
    
      The upgrade instructions consider a basic usage and do not match
      complex scenarios like replication, sharding, or similar.
    
      Upgrade instructions:
    
      First stop your PostgreSQL, create PostgreSQL-binaries and backup your data.
      If you have another Version of PostgreSQL installed, for example 12.8, your
      files are named according to this.
    
      # service postgresql stop
      # pkg create postgresql12-server postgresql12-contrib
      # mkdir /tmp/pg-upgrade
      # tar xf postgresql12-server-12.8.pkg -C /tmp/pg-upgrade
      # tar xf postgresql12-contrib-12.8.pkg -C /tmp/pg-upgrade
      # pkg delete -f databases/postgresql12-server databases/postgresql12-contrib databases/postgresql12-client
    
      Now update PostgreSQL:
    
        pkg user:
        # pkg install databases/postgresql13-server databases/postgresql13-contrib
        # pkg upgrade
    
        Portmaster users:
        # portmaster databases/postgresql13-server databases/postgresql13-contrib
        # portmaster -a
    
        Portupgrade users:
        # portinstall databases/postgresql13-server databases/postgresql13-contrib
        # portupgrade -a
    
      After installing the new PostgreSQL version you need to convert
      all your databases to new version:
    
      # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C -D /var/db/postgres/data13 -U postgres"
      # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data12/ -B /usr/local/bin/ -D /var/db/postgres/data13/ -U postgres "
    
      Now the migration is finished. You can start PostgreSQL again with:
    
      # service postgresql start
    
      ATTENTION:
      1) The default user changed from "pgsql" to "postgres" in 11. The migration steps above now assume
         the "postgres" database user and FreeBSD user.
      2) See the updating entry 20190829 if you are updating from a release prior to 11.
      3) If you use non-default initdb options, you have to adjust the initdb-command accordingly
    
    
  • Collapse this list.

Number of commits found: 73

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
42.7.3
17 Mar 2024 21:05:50
commit hash: 480f6c954278475e179da2b947b387b74e0dc84fcommit hash: 480f6c954278475e179da2b947b387b74e0dc84fcommit hash: 480f6c954278475e179da2b947b387b74e0dc84fcommit hash: 480f6c954278475e179da2b947b387b74e0dc84f files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: Upgrade to 42.7.3

Release notes:	https://jdbc.postgresql.org/changelogs/2024-03-14-42.7.3-release/
42.7.2
21 Feb 2024 20:17:04
commit hash: b2ab7e1feb8cd99e6f373a277e297fb2bee12cbccommit hash: b2ab7e1feb8cd99e6f373a277e297fb2bee12cbccommit hash: b2ab7e1feb8cd99e6f373a277e297fb2bee12cbccommit hash: b2ab7e1feb8cd99e6f373a277e297fb2bee12cbc files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: Update to 42.7.2

Release notes:	https://jdbc.postgresql.org/changelogs/2024-02-21-42.7.2-release/
42.7.1
07 Dec 2023 13:47:54
commit hash: aa3ab5cf8bd8ae5b02ac6b4af1a6d62e23b77e13commit hash: aa3ab5cf8bd8ae5b02ac6b4af1a6d62e23b77e13commit hash: aa3ab5cf8bd8ae5b02ac6b4af1a6d62e23b77e13commit hash: aa3ab5cf8bd8ae5b02ac6b4af1a6d62e23b77e13 files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: Update to 42.7.1

Release notes:	https://jdbc.postgresql.org/changelogs/2023-12-06-42.7.1-release/
42.7.0
23 Nov 2023 22:01:50
commit hash: 0cafe14e62016c78f8066e359792c0be5b4a77e2commit hash: 0cafe14e62016c78f8066e359792c0be5b4a77e2commit hash: 0cafe14e62016c78f8066e359792c0be5b4a77e2commit hash: 0cafe14e62016c78f8066e359792c0be5b4a77e2 files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: Upgrade to 42.7.0

Release notes:	https://jdbc.postgresql.org/changelogs/2023-11-20-42.7.0-release/
42.6.0
20 Mar 2023 14:54:46
commit hash: 4f2cdb1f92ba8830214659babe277912f4f9c709commit hash: 4f2cdb1f92ba8830214659babe277912f4f9c709commit hash: 4f2cdb1f92ba8830214659babe277912f4f9c709commit hash: 4f2cdb1f92ba8830214659babe277912f4f9c709 files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: update to 42.6.0

Release notes:	https://jdbc.postgresql.org/changelogs/2023-03-17-42.6.0-release/
42.5.4
15 Mar 2023 00:46:31
commit hash: 39722d9e8adfd429c284027d7b607abddb714128commit hash: 39722d9e8adfd429c284027d7b607abddb714128commit hash: 39722d9e8adfd429c284027d7b607abddb714128commit hash: 39722d9e8adfd429c284027d7b607abddb714128 files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: Update to 42.5.4

Release notes:	https://jdbc.postgresql.org/changelogs/2023-02-16-42.5.4-release/
07 Sep 2022 21:58:51
commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
Remove WWW entries moved into port Makefiles

Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
42.4.2
07 Sep 2022 21:10:59
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
42.4.2
22 Aug 2022 09:44:12
commit hash: 82c25f8fac2be759232b888d8dc4a2735768cd61commit hash: 82c25f8fac2be759232b888d8dc4a2735768cd61commit hash: 82c25f8fac2be759232b888d8dc4a2735768cd61commit hash: 82c25f8fac2be759232b888d8dc4a2735768cd61 files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: update to 42.4.2

Release
notes:	https://jdbc.postgresql.org/documentation/changelog.html#version_42.4.2
42.4.1
16 Aug 2022 07:51:50
commit hash: 5a77a83fcf05a27f14b60be3fcd369af49f13d34commit hash: 5a77a83fcf05a27f14b60be3fcd369af49f13d34commit hash: 5a77a83fcf05a27f14b60be3fcd369af49f13d34commit hash: 5a77a83fcf05a27f14b60be3fcd369af49f13d34 files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: update to 42.4.1

The PostgreSQL JDBC team have released 42.4.1 to address a security
issue: CVE-2022-31197. This is only an issue if you are using
ResultSet.refreshRow()

Release
notes:	https://jdbc.postgresql.org/documentation/changelog.html#version_42.4.1
Security:	CVE-2022-31197 [1]
[1]:		https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-r38f-c4h4-hqq2
42.4.0
20 Jul 2022 14:21:07
commit hash: d076ad94e206dda108061fe99ddb860d93cc6d16commit hash: d076ad94e206dda108061fe99ddb860d93cc6d16commit hash: d076ad94e206dda108061fe99ddb860d93cc6d16commit hash: d076ad94e206dda108061fe99ddb860d93cc6d16 files touched by this commit
Tobias C. Berner (tcberner) search for other commits by this committer
databases: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  "Choe, Cheng-Dae" whitekid
  *  "Mahdi Mokhtari <mokhi64@gmail.com>"
  *  "Meikel Brandmeyer" <ocaml-sqlite3-port@kotka.de>
  *  <hvo.pm@xs4all.nl>
  *  <jsmith@resonatingmedia.com>
  *  <ports@c0decafe.net>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Ade Lovett <ade@FreeBSD.org>
  *  Akinori MUSHA aka knu <knu@idaemons.org>
  *  Alan Snelson <Alan@Wave2.org>
(Only the first 15 lines of the commit message are shown above View all of this commit message)
42.4.0
14 Jun 2022 19:54:59
commit hash: 6c46341d54052edd701c9fa215614b8e4c693a01commit hash: 6c46341d54052edd701c9fa215614b8e4c693a01commit hash: 6c46341d54052edd701c9fa215614b8e4c693a01commit hash: 6c46341d54052edd701c9fa215614b8e4c693a01 files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: Upgrade to 42.4.0

Release
notes:	https://jdbc.postgresql.org/documentation/changelog.html#version_42.4.0
42.3.6
07 Jun 2022 07:16:27
commit hash: e560244eb1e9ccd1f5d090e3cf6aa3948124b1cecommit hash: e560244eb1e9ccd1f5d090e3cf6aa3948124b1cecommit hash: e560244eb1e9ccd1f5d090e3cf6aa3948124b1cecommit hash: e560244eb1e9ccd1f5d090e3cf6aa3948124b1ce files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: update to 42.3.6

The JDBC team has released version 42.3.6 to fix a regression introduced
in 42.3.2

This fixes "cursor <unnamed portal 1> does not exist" when using
ResultSet.setFetchSize from CallableStatement, fixed in 42.3.5
(see PG #2377)

Release
notes:	https://jdbc.postgresql.org/documentation/changelog.html#version_42.3.6
42.3.4
19 Apr 2022 20:34:11
commit hash: 0213c2874f36588a2fb846f8dadf7fc91bc0af70commit hash: 0213c2874f36588a2fb846f8dadf7fc91bc0af70commit hash: 0213c2874f36588a2fb846f8dadf7fc91bc0af70commit hash: 0213c2874f36588a2fb846f8dadf7fc91bc0af70 files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: update to
42.3.3
17 Feb 2022 13:14:51
commit hash: e712bd2191da51dfc3830c0119b1a3c1dc4db19dcommit hash: e712bd2191da51dfc3830c0119b1a3c1dc4db19dcommit hash: e712bd2191da51dfc3830c0119b1a3c1dc4db19dcommit hash: e712bd2191da51dfc3830c0119b1a3c1dc4db19d files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: update to 42.3.3.

A security advisory has been created for the PostgreSQL JDBC Driver. The
URL connection string loggerFile property could be mis-used to create an
arbitrary file on the system that the driver is loaded. Additionally
anything in the connection string will be logged and subsequently
written into that file. In an insecure system it would be possible to
execute this file through a webserver.

While we do not consider this a security issue with the driver, we have
decided to remove the loggerFile and loggerLevel connection properties
in the next release of the driver. Removal of those properties does not
make exposing the JDBC URL or connection properties to an attacker safe
and we continue to suggest that applications do not allow untrusted
users to specify arbitrary connection properties.

We are removing them to prevent misuse and their functionality can be
delegated to java.util.logging. The changelog is not very useful as the
change was done behind a security advisory. The short version is that
loggerFile and loggerLevel properties still exist but do not do
anything.

Security:	https://github.com/pgjdbc/pgjdbc/security/advisories/GHSA-673j-qm5f-xpv8
42.3.1
30 Oct 2021 15:05:10
commit hash: 4deaef655cca95101c0f439ff2e7a91ae9d52414commit hash: 4deaef655cca95101c0f439ff2e7a91ae9d52414commit hash: 4deaef655cca95101c0f439ff2e7a91ae9d52414commit hash: 4deaef655cca95101c0f439ff2e7a91ae9d52414 files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: update to 42.3.1

Reported by:	portscout
42.3.0
20 Oct 2021 18:15:03
commit hash: 643d435343234e6a15dc94ef1ca479fd67d5e9abcommit hash: 643d435343234e6a15dc94ef1ca479fd67d5e9abcommit hash: 643d435343234e6a15dc94ef1ca479fd67d5e9abcommit hash: 643d435343234e6a15dc94ef1ca479fd67d5e9ab files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: update to 42.3.0
42.2.20
23 Apr 2021 19:04:41
commit hash: 9473da3e2d532f3fa6718d183590f0c8f6079ab0commit hash: 9473da3e2d532f3fa6718d183590f0c8f6079ab0commit hash: 9473da3e2d532f3fa6718d183590f0c8f6079ab0commit hash: 9473da3e2d532f3fa6718d183590f0c8f6079ab0 files touched by this commit
Palle Girgensohn (girgen) search for other commits by this committer
databases/postgresql-jdbc: update to 42.2.20

Relnotes:	https://jdbc.postgresql.org/documentation/changelog.html#version_42.2.20
42.2.18
06 Apr 2021 14:31:07
commit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344eb files touched by this commit
Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
42.2.18
17 Dec 2020 10:42:25
Revision:558279Original commit files touched by this commit
girgen search for other commits by this committer
Upgrade to 42.2.18

Release
notes:	https://jdbc.postgresql.org/documentation/changelog.html#version_42.2.18
42.2.16
24 Aug 2020 13:51:19
Revision:546085Original commit files touched by this commit
girgen search for other commits by this committer
Fix borken distinfo introduced in last commit

Reported by:	barbara.freebsd at gmail.com
42.2.16
24 Aug 2020 11:44:39
Revision:546069Original commit files touched by this commit
girgen search for other commits by this committer
Actually upgrade to 42.2.16

Release
notes:	https://jdbc.postgresql.org/documentation/changelog.html#version_42.2.16
42.2.15
24 Aug 2020 06:17:38
Revision:546045Original commit files touched by this commit
girgen search for other commits by this committer
Update to version 42.2.16

Release
notes:	https://jdbc.postgresql.org/documentation/changelog.html#version_42.2.16
42.2.14
15 Jun 2020 08:07:32
Revision:538860Original commit files touched by this commit
girgen search for other commits by this committer
Upgrade to version 42.2.14

Refactor the port to fetch the prebuilt jar instead of building, since the
building process just got to complicated to make it worth while.

PR:		245719
Sponsored by:	Ping Pong AB
42.2.12
15 Jun 2020 06:56:41
Revision:538854Original commit files touched by this commit
girgen search for other commits by this committer
Fix bad plist substitution

PR:		247226
Reported by:	Garrett Wollman
9.2.1004
13 Aug 2019 16:01:59
Revision:508835Original commit files touched by this commit Sanity Test Failure
mat search for other commits by this committer
Convert to UCL & cleanup pkg-message (categories d)
9.2.1004
10 Sep 2015 15:24:13
Revision:396577Original commit files touched by this commit
amdmi3 search for other commits by this committer
- Switch to options helpers
- Add some NO_ARCHes

Approved by:	portmgr blanket
9.2.1004
27 May 2015 00:15:05
Revision:387529Original commit files touched by this commit
amdmi3 search for other commits by this committer
- Don't cat pkg-message from Makefiles

Approved by:	portmgr blanket
9.2.1004
09 Jun 2014 06:24:45
Revision:357105Original commit files touched by this commit
girgen search for other commits by this committer
- Update to 9.2.1004
- Stage support
- Add LICENSE

Submitted by:	bar@
9.1.902_1
21 Feb 2014 13:35:58
Revision:345402Original commit files touched by this commit
ehaupt search for other commits by this committer
Remove trailing whitespaces from category databases
9.1.902_1
10 Feb 2014 13:54:28
Revision:343634Original commit files touched by this commit
ehaupt search for other commits by this committer
According to the Porter's Handbook (5.12.2.3.) default options must be added to
OPTIONS_DEFINE. This policy has been implemented only recently that's why we
have many ports violating this policy.

This patch adds the default options specified in the Porter's Handbook to
OPTIONS_DEFINE where they are being used. Ports maintained by
gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded.

Approved by:    portmgr (bapt)
9.1.902_1
20 Sep 2013 16:13:49
Revision:327717Original commit files touched by this commit
bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
9.1.902_1
18 Feb 2013 07:38:33
Revision:312485Original commit files touched by this commit
jgh search for other commits by this committer
- trim historical header
9.1.902_1
17 Feb 2013 16:25:53
Revision:312425Original commit files touched by this commit
jgh search for other commits by this committer
- fix documentation conflict [1]
- remove examples notation from pkg-message (no longer distributed/installed)
[1]

PR:		176066
Submitted by:	walterhurry@gmail.com, jgh@ [1]

With hat: pgsql@
9.1.902
29 Aug 2012 22:34:04
Revision:303353Original commit files touched by this commit
jgh search for other commits by this committer
- update to 9.1.902

PR:	171163
Submitted by:	olgeni@
Approved by:	crees@ ( with hat pgsql@)
With hat: pgsql@
9.1.901
04 Mar 2012 17:19:59
Original commit files touched by this commit
crees search for other commits by this committer
Over to new team, pgsql@FreeBSD.org
9.1.901
19 Jan 2012 03:35:49
Original commit files touched by this commit
tabthorpe search for other commits by this committer
- Reset ports due to maintainer timeouts and lack of response to emails

With hat:       portmgr
9.1.901
04 Dec 2011 14:06:47
Original commit files touched by this commit
crees search for other commits by this committer
- Update to 9.1-901
- Remove unneeded plist

PR:             ports/161040
Submitted by:   Barbara <barbara.xxx1975@libero.it>
Approved by:    maintainer timeout (girgen, three months -2d)
Feature safe:   yes
9.0.802
30 Nov 2011 19:15:30
Original commit files touched by this commit
crees search for other commits by this committer
Update to 9.0.802

PR:             ports/154951
Submitted by:   Jason Helfman <jhelfman@experts-exchange.com>
Approved by:    maintainer timeout (girgen, nine months)
Feature safe:   yes
8.3.603_1
20 Mar 2011 12:54:45
Original commit files touched by this commit
miwi search for other commits by this committer
- Get Rid MD5 support
8.3.603_1
06 Jun 2008 13:17:10
Original commit files touched by this commit
edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
8.3.603
26 Feb 2008 22:45:56
Original commit files touched by this commit
girgen search for other commits by this committer
Updating to 8.3.603
8.2.505
25 Jun 2007 14:32:15
Original commit files touched by this commit
girgen search for other commits by this committer
Update to 8.2.505
8.2.504_2
19 May 2007 20:32:57
Original commit files touched by this commit
flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
8.2.504_1
10 Jan 2007 19:36:50
Original commit files touched by this commit
girgen search for other commits by this committer
Fix pkg-list
8.2.504
27 Dec 2006 11:09:42
Original commit files touched by this commit
girgen search for other commits by this committer
Update to 8.2.504. See changelog at
http://jdbc.postgresql.org/changes.html#version_8.2-504
8.1.407
24 May 2006 10:45:52
Original commit files touched by this commit
girgen search for other commits by this committer
Update to 8.1-407
8.1.404
04 May 2006 21:41:12
Original commit files touched by this commit
edwin search for other commits by this committer
Remove USE_REINPLACE from all categories starting with D
8.1.404
22 Jan 2006 05:52:28
Original commit files touched by this commit
edwin search for other commits by this committer
eplace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry

Approved by:    krion@
PR:             ports/88711 (related)
8.1.404
22 Jan 2006 01:29:10
Original commit files touched by this commit
edwin search for other commits by this committer
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry

Approved by:    krion@
PR:             ports/88711 (related)
8.1.404
10 Nov 2005 02:41:43
Original commit files touched by this commit
girgen search for other commits by this committer
Honor EXAMPLESDIR and JAVAJARDIR.

Suggested by: Herve Quiroz <hq@>
8.1.404
10 Nov 2005 02:29:45
Original commit files touched by this commit
girgen search for other commits by this committer
Update to 8.1.404
8.0.311
12 Apr 2005 15:41:11
Original commit files touched by this commit
girgen search for other commits by this committer
Update to 8.0.311.
See http://jdbc.postgresql.org/changes.html#version_8.0-311
for a changelog

Approved by: seanc, ade (implicit)
8.0.310
11 Feb 2005 00:10:59
Original commit files touched by this commit
girgen search for other commits by this committer
Update JDBC support to version 8.0 (build 310).

The PostgreSQL JDBC project has been decoupled from the server
distribution, and is now hosted at http://jdbc.postgresql.org/.

Approved by:    ade (mentor)
7.4.7
03 Feb 2005 09:30:27
Original commit files touched by this commit
girgen search for other commits by this committer
In order to address a potential security hole recently identified with
the "LOAD" option, the PostgreSQL Global Development Group is
announcing the release of new versions of PostgreSQL.

Update to 7.3.9, 7.4.7 & 8.0.1.

Take the opportunity to reset PORTREVISION of slave ports.

Back out name change of startup script. The new script uses rc.subr(8),
and as such also uses rcorder(8). But, rcorder does not exist in FreeBSD
4.x. Hence rename the script it back to the top of the directory
list. [1]

The periodic script should of course be executable. [2]

[1] Noted by Niels Chr. Bank-Pedersen <ncbp at bank-pedersen dot dk>
[2] Noted by Fritz Heinrichmeyer <fritz.heinrichmeyer at fernuni-hagen dot de>
7.4.6_1
31 Jan 2005 01:48:06
Original commit files touched by this commit
girgen search for other commits by this committer
Bump portrevision
7.4.6
31 Jan 2005 00:20:25
Original commit files touched by this commit
girgen search for other commits by this committer
Split the postgresql ports into a server and a client part.

The JDBC interface has been moved from the main distribution to its
own project at jdbc.postgresql.org. Fixate to the latest version
in main distro, 7.4.6, pending an update to latest version from the
project site.

PR:             75344
Approved by:    portmgr@ (kris), ade & sean (mentors)
7.4.6
06 Dec 2004 03:59:56
Original commit files touched by this commit
girgen search for other commits by this committer
Add myself as committer, and use my @FreeBSD.org address.

Approved by: ade (mentor)
7.4.5
02 Sep 2004 18:31:30
Original commit files touched by this commit
linimon search for other commits by this committer
Fix patching error.

PR:             ports/71265
Submitted by:   Palle Girgensohn <girgen at pingpong dot net> (maintainer)
7.4.3
28 Jun 2004 21:48:56
Original commit files touched by this commit
vanilla search for other commits by this committer
Upgrade to 7.4.3.

PR:             ports/68456
Submitted by:   maintainer
7.4.1_1
04 Feb 2004 05:21:48
Original commit files touched by this commit
marcus search for other commits by this committer
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.

(Part 2)
7.4.1
22 Jan 2004 08:05:25
Original commit files touched by this commit
trevor search for other commits by this committer
Use PAX macro.
7.4
04 Dec 2003 12:00:49
Original commit files touched by this commit
seanc search for other commits by this committer
Introduce the world to PostgreSQL 7.4!  By and large this release is
regarded as a major release with features with interest to those with
large databases.  The updates are extensive and the best source of info
is in the release notes.  Enjoy and direct questions to database@!

Release notes:
http://www.postgresql.org/docs/7.4/static/release.html#RELEASE-7-4

PR:             ports/59403, ports/59404, ports/59393, ports/59394,
                ports/59395, ports/59397, ports/59398, ports/59402, &&
                ports/59401
Submitted by:   maintainer
Approved by:    marcus (portmgr@ hat)
7.3.4
04 Sep 2003 12:03:58
Original commit files touched by this commit
osa search for other commits by this committer
Use new depends scheme for postgresql slave ports:
 ${MAKE} -V ... instead of .include <...>
Utilize ${EXAMPLESDIR} [1]

Submitted by:   Palle Girgensohn <girgen@pingpong.net> (maintainer),
                osa [1]
PR:             56346, 56404
7.3.3
23 Jul 2003 14:30:29
Original commit files touched by this commit
znerd search for other commits by this committer
Port devel/jakarta-ant was renamed to devel/apache-ant.

Reported by:    kris
Pointy hat to:  me
7.3.3
19 Jun 2003 09:12:56
Original commit files touched by this commit
daichi search for other commits by this committer
postgresql slave ports, reduce unnecessary portrevision bumps

PR:             52867
Submitted by:   Palle Girgensohn <girgen@pingpong.net> (maintainer)
7.3.3
02 Jun 2003 01:44:03
Original commit files touched by this commit
nork search for other commits by this committer
Update to 7.3.3.

1. Optionally link with libc_r to get plpython working. [1]
2. Fix kerberos build. [2]
3. There was a duplication of some declarations. [3]

PR:             ports/52851
PR:             ports/51080 [2]
Submitted by:   Mike Meyer <mwm@mired.org> [1]
Submitted by:   Gerweck <andy@tacnode.com> [2]
Pointed out by: Mike Harding <mvh@ix.netcom.com> [3]
Submitted by:   Palle Girgensohn <girgen@pingpong.net> (maintainer)
7.3.2_1
28 Mar 2003 13:45:16
Original commit files touched by this commit
znerd search for other commits by this committer
Fix for ports/47866, ports/48610 & ports/46768.
Bumped PORTREVISION.

PR:             48878
Submitted by:   maintainer
7.3.2_1
07 Mar 2003 05:58:32
Original commit files touched by this commit
ade search for other commits by this committer
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.

E Nomini Patri, E Fili, E Spiritu Sancti.
7.3.1
04 Jan 2003 23:36:44
Original commit files touched by this commit
seanc search for other commits by this committer
Update PostgreSQL JDBC for 7.3.1.

PR:             ports/45881
Submitted by:   Palle Girgensohn <girgen@pingpong.net>
7.2.3
10 Nov 2002 22:44:03
Original commit files touched by this commit
kris search for other commits by this committer
Don't remove system directories share/java, share/java/classes, and
share/doc
7.2.1
11 Apr 2002 05:08:34
Original commit files touched by this commit
ijliao search for other commits by this committer
use the latest postgresql7

postgresql-jdbc now uses the great new USE_JAVA stuff

PR:             36980
Submitted by:   maintainer
19 Feb 2002 08:35:59
commit hash: fp1.24905@dev.null.freshports.orgcommit hash: fp1.24905@dev.null.freshports.orgcommit hash: fp1.24905@dev.null.freshports.orgcommit hash: fp1.24905@dev.null.freshports.org files touched by this commit
vanilla search for other commits by this committer
This is the implementation of JDBC, the Java Database Connectivity API,   for
accessing PostgreSQL databases from Java.    

Number of commits found: 73