summaryrefslogtreecommitdiffstats
path: root/databases/postgresql84-server
Commit message (Collapse)AuthorAgeFilesLines
* Add 'config' to the list of directories installed by postgresql81-client,ade2006-01-071-1/+4
| | | | | | so as to fully install everything needed for pgxs to work correctly. Approved by: maintainer
* Handle a change in rc.subr. nowadays, "faststart" is used instead ofgirgen2005-12-252-3/+3
| | | | | | | | | | "start" when booting, since there's no need waste time checking for running processes when the OS is starting up. Bumping portrevision. PR: 90884 Submitted by: Victor Snezhko <snezhko@indorsoft.ru>
* Update postgresql to 8.1.1girgen2005-12-222-13/+13
| | | | | Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> PR: 90443
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentade2005-11-151-1/+1
| | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
* Let postgresql (libpq.so) only link with the Kerberos implementationsgirgen2005-11-141-16/+17
| | | | | | | | | | | | | | | | | | | | | installed from ports. The base heimdal distribution installs libraries that have no depenency information. While this is quite correct, it means that each library that links with libpq.so must also know if libpq.so is linked with libkrb.so et al. Problem is, there's no good way to get this information (pg_config has a --libs option starting at version 8.1) and all ports using postgresql must be changed to make it possible to link with a libpq.so that was configured to use the Kerberos implementation installed in /usr by default. Hence, we require one of the ports (heimdal or krb5) if postgresql is to be linked with Kerberos. At least for now, until we can fix this in some better way. Also, if MIT Kerberos (security/krb5) is installed, users should ideally remove the base heimdal installation so linkers will not pick it up in preference to the krb5 libs (base heimdal has higher version numbers than krb5 port). PR: 80869, 88098, 85178
* Fix UNIQUENAMEgirgen2005-11-111-1/+1
| | | | Pointed out by: Vivek Khera <vivek@khera.org>
* Don't break the port for ppl who have old configs that includes thegirgen2005-11-111-4/+3
| | | | | | HIER option. Pointed out by: Reko Turja <reko.turja@liukuma.net>
* Welcome to PostgreSQL 8.1.girgen2005-11-107-102/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new release includes performance improvements and advanced SQL features which will support bigger data warehouses, higher-volume transaction processing, and more complex distributed enterprise software. Major new features in this release include: Roles: PostgreSQL now supports database roles, which simplify the management of large numbers of users with complex overlapping database rights. IN/OUT Parameters: PostgreSQL functions now support IN, OUT and INOUT parameters, which substantially improves support of complex business logic for J2EE and .NET applications. Two-Phase Commit (2PC): Long in demand for WAN applications and heterogeneous data centers using PostgreSQL, this feature allows ACID-compliant transactions across widely separated servers. Some Performance Enhancements found in this release include: Improved Multiprocessor (SMP) Performance: The buffer manager for 8.1 has been enhanced to scale almost linearly with the number of processors, leading to significant performance gains on 8-way, 16-way, dual-core, and multi-core CPU servers. Bitmap Scan: Indexes will be dynamically converted to bitmaps in memory when appropriate, giving up to twenty times faster index performance on complex queries against very large tables. Table Partitioning: The query planner is now able to avoid scanning whole sections of a large table using a technique known as Constraint Exclusion. Shared Row Locking: PostgreSQL's "better than row-level locking" now supports even higher levels of concurrency through the addition of shared row locks for foreign keys. For a more complete listing of changes in this release, please see the Release Notes visible at: http://www.postgresql.org/docs/current/static/release.html#RELEASE-8-1
* Mark as work-in-progressgirgen2005-09-281-0/+2
|
* Fix building with the HIER option. It needs bison. [1]girgen2005-08-302-3/+4
| | | | | | | Update the ICU patch with a assert fix, courtesy of Magnus Hagander. Pointed out by: Marcos Tischer Vallim [ports/84720] PR: 80377, 84720
* Fixing problems with the recent security patch: When bison was notgirgen2005-05-114-10/+29
| | | | | | | | | | | | | | | | | installed, the patched gram.y file would not be used and the security patch would be a no-op. Also, I've had reports of compilation errors related to bison. Since checking for the correct version of bison is hard and error prone, I'm doing what the postgresql distribution does - patching the yacc:ed .c file to get rid of the building dependency. Bumping portrevision of -server. Pointy hat to: me Noticed by: Mike Harding and others Security: http://www.vuxml.org/freebsd/6b4b0b3f-8127-11d9-a9e7-0001020eed82.html Approved by: seanc (implicit)
* Update the ICU patch with some bug fixesgirgen2005-05-062-3/+3
|
* Update the link to the ICU patch.girgen2005-04-162-3/+3
|
* Upgrade PostgreSQL to 8.0.2. Here's the brief release note:girgen2005-04-135-185/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Over the past several weeks, Tom Lane has been working on replacing our old Cache Management Alorithm (ARC) with a new, patent free one (2Q). In order to reduce the number of 8.x deployments out there that are using the old manager, we have just released 8.0.2, and encourage adminstrators to upgrade at their earliest convience. For those already running 8.x on your production servers, please note that this upgrade does *NOT* require a dump restore, but due to a bump in the major version number for the client library (libpq), it *WILL* require all client applications to be recompiled at the same time. For full release info, see http://www.postgresql.org/docs/8.0/static/release.html#RELEASE-8-0-2 Apart from the upgrade, three new config options are added: A patch (experimental) for supporting proper collation of utf-8 encoded locales, using IBM's ICU package (devel/icu). See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info. An optional patch written by Evgen Potemkin, which allows PostgreSQL to make hierarchical queries à la Oracle [1]. An option is added that allows the use of 64 bit ints to store dates [2]. PR: ports/79165 [1], ports/76999 [2] Submitted by: Marcos Tischer Vallim [1], Christian Ullrich [2] Approved by: ade, seanc (implicit)
* Modify 8.0's startup script to simulate a full login (su -l) [1]. Alsogirgen2005-03-192-3/+4
| | | | | | | | | | | | | add support to select login class for running postgresql [2]. The new startup script, using rc.subr, is now installed for all versions of postgresql. Bump portrevisions, since startup script is modified. PR: 78630 [1] Submitted by: Vivek Khera [1] Submitted by: Brian B. [2] Approved by: seanc (implicit)
* Fixing problems with the recent security patch: When bison was notgirgen2005-02-202-1/+92
| | | | | | | | | | | | | | | | | installed, the patched gram.y file would not be used and the security patch would be a no-op. Also, I've had reports of compilation errors related to bison. Since checking for the correct version of bison is hard and error prone, I'm doing what the postgresql distribution does - patching the yacc:ed .c file to get rid of the building dependency. Bumping portrevision of -server. Pointy hat to: me Noticed by: Mike Harding and others Security: http://www.vuxml.org/freebsd/6b4b0b3f-8127-11d9-a9e7-0001020eed82.html Approved by: seanc (implicit)
* Fix security alert using a patch from PostgreSQL's CVS repository:girgen2005-02-192-15/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | Prevent overrunning a heap-allocated buffer if more than 1024 parameters to a refcursor declaration are specified. This is a minimally-invasive fix for the buffer overrun. Define LATEST_LINK to avoid package name clashes between the different branches of PostgreSQL. [1] (Since postgresql-tcltk is hardwired to branch 7.4, keep its LATEST_LINK to a generic value.) Set UNIQUENAME and let it be the same for server & client, so each branch's ports will share the same options file. This adds some no-op knobs to the -client port, but IMO it is better this way. Add space inside paranthesis in OSVERSION conditional to work around (ancient) make bug. [2] Remove the Rendez-Vouz knob for 8.0 since I can't find the software needed to even compile it on FreeBSD. Bump portrevision (for -server only). Noted by: kris [1] PR: ports/77530 [2] Security: http://www.vuxml.org/freebsd/6b4b0b3f-8127-11d9-a9e7-0001020eed82.html Approved by: seanc (mentor)
* The postgresql_* knobs from /etc/rc.conf where read too late togirgen2005-02-151-1/+1
| | | | | | | actually make a difference. Noticed by: Salvatore Montefusco, Brian B. Approved by: ade (mentor)
* Let pkg-message reflect the renaming of the startup script.girgen2005-02-091-2/+2
| | | | | Submitted by: Nick Pavlica <linicks at gmail dot com> Approved by: ade (mentor)
* Add some forgotten manpages.girgen2005-02-061-3/+6
| | | | Approved by: ade (mentor)
* In order to address a potential security hole recently identified withgirgen2005-02-034-16/+17
| | | | | | | | | | | | | | | | | | | 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>
* Remove forgotten "beta" no_latest_link, and fix broken master_site_subdirgirgen2005-01-311-3/+1
| | | | Approved by: seanc (mentor)
* Say hello to postgresql-8.0. Some of the highlights of the new versiongirgen2005-01-3123-700/+1285
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | are savepoints (within transactions), point-in-time recovery and tablespaces. Check out the release notes and the shiny new PostgreSQL.org website at: http://www.PostgreSQL.org/docs/8.0/static/release.html#RELEASE-8-0 The port uses the new postgresql ports' layout and is split into a server and a client part. The following knobs can be used by ports depending on PostgreSQL: # USE_PGSQL - Add PostgreSQL client dependency. # If no version is given (by the maintainer via the port or # by the user via defined variable), try to find the # currently installed version. Fall back to default if # necessary (PostgreSQL-7.4 = 74). # DEFAULT_PGSQL_VER # - PostgreSQL default version. Can be overridden within a port. # Default: 74. # WANT_PGSQL_VER # - Maintainer can set an arbitrary version of PostgreSQL by # using it. # BROKEN_WITH_PGSQL # - This variable can be defined if the ports doesn't support # one or more versions of PostgreSQL. PR: 75344 Approved by: portmgr@ (kris), ade & sean (mentors)
* Enter PostgreSQL 8.0.0. Given 4.11 is still being released, abuse -devel byseanc2005-01-231-1/+1
| | | | | | | | | | | | | | | | | | | | stuffing the 8.0.0 release in here for the time being. Port epoch bumped because 8.0.rc* is greater than 8.0.0. A note from UPDATING to people who want to use 8.0.0 via -devel in production: The -devel port has been updated to contain 8.0 release since postgresql80-server can not be updated until 4.11 is released and the changes in PR ports/75344 are committed. Users who need 8.0 now can use the -devel port, however, once postgresql80-server has been committed, -devel will begin tracking 8.1. Please be smart about tracking ports and if used in production, update to databases/postgresql80-server as soon as it becomes available. No dump/reload will be required when changing from -devel to postgresql80-server. Check out the release notes and the shiny new PostgreSQL.org website at: http://www.PostgreSQL.org/docs/8.0/static/release.html#RELEASE-8-0
* PR ports/75344 - This needs testing and an probably experimentalgirgen2004-12-211-1/+1
| | | | | | | build, so it will not be out the door before the ports freeze. Meanwhile, modify BROKEN text to something more informative. Approved by: ade (mentor)
* Add myself as committer, and use my @FreeBSD.org address.girgen2004-12-061-1/+1
| | | | Approved by: ade (mentor)
* Another step along the road to the postgresql new world order.ade2004-11-2326-846/+1141
| | | | | | | | | Note that none of these ports are (yet) hooked into the tree, and will not compile unless you set a specific environmental variable. This should be warning enough to leave well alone for now :) Submitted by: maintainer
* Update postgresql 7.3.7 -> 7.3.8 and 7.4.5 -> 7.4.6 due to securityade2004-11-052-9/+9
| | | | | | | | | advisories in http://www.postgresql.org/news/234.html Note that postgresql 7.2.x is NOT being updated here since it is due for termination real soon now. Submitted by: maintainer, also referenced in ports/73142 (no patch)
* - update to version 7.4.5:eik2004-08-314-14/+13
| | | | | | | | | * Prevent possible loss of committed transactions during crash * Repair possible crash during concurrent btree index insertions PR: 71176 Submitted by: SUGIMURA Takashi <sugimura@jp.FreeBSD.org> Reviewed by: Palle Girgensohn <girgen@pingpong.net> (maintainer)
* Upgrade to 7.4.3.vanilla2004-06-284-15/+28
| | | | | PR: ports/68456 Submitted by: maintainer
* Add a note about changes in latest release of PostgreSQL.osa2004-03-301-0/+5
| | | | | Submitted by: Palle Girgensohn <girgen@pingpong.net> (maintainer) PR: 64933
* Update to latest release 7.4.2.osa2004-03-113-6/+11
| | | | | | | | | | | | | Release notes available at http://www.postgresql.org/news/173.html NOTICE: unlike most minor versions, this version does require some updates to the pg_* system tables. Full instructions for how to do this are included in the full HISTORY file. DO NOT UPGRADE WITHOUT READING THESE INSTRUCTIONS. SIZEfy. Submitted by: Palle Girgensohn <girgen@pingpong.net> (maintainer) PR: 64105
* Add WITHOUT_NLS knob. Move USE_GETTEXT to proper place.trevor2004-02-051-3/+3
| | | | | | PR: 61836 Submitted by: Palle Girgensohn (maintainer) Pointy hat to: me
* Add USE_GETTEXT and bump PORTREVISION.marcus2004-02-041-2/+2
| | | | | Submitted by: trevor Tested by: bento
* - Add note that the function "elog" has been removed fromkrion2004-02-011-3/+9
| | | | | | | pg-7.4 PR: ports/62167 Submitted by: maintainer
* Now gettext 0.12.1 is gettext-old.trevor2004-01-231-1/+1
|
* Update the PostgreSQL ports to use the KRB5_HOME variable instead ofseanc2004-01-181-1/+1
| | | | | | | LOCALBASE to find krb5-config in the MIT case. Prodded by: Our friendly folks at the ISC who want to use FreeBSD's PostgreSQL ports instead of an unmanaged build from a tarball.
* Maintainer update to PostgreSQL 7.4.1. This release includes fixed identseanc2003-12-255-15/+33
| | | | | | | | | | | authentication support for FreeBSD (been broken since 7.4). Merry Christmas to all, and to all a good night. Release notes: http://developer.postgresql.org/docs/postgres/release.html#RELEASE-7-4-1 Prompted by PR: ports/60542 Obtained from: maintainer
* Remove the PORTNAME from postgreql-client. PORTNAME is set byseanc2003-12-052-4/+28
| | | | | | | | | | MASTERDIR/Makefile[1]. Improve the CONFLICTS messages[2]. Fix the DEPENDS so that MIT krb5 depends on security/krb5, not heimdal[3]. Add a file that was missing in the upgrade that has PostgreSQL log to syslog by default[4]. PR: [4] Originally submitted in ports/59402 Submitted by: [1,2,4] maintainer [3] keoki seu <keoki@camelot.physics.wm.edu>
* Make PORTNAME ovverrideable by slave ports again.erwin2003-12-041-1/+1
| | | | This fixes INDEX build
* Introduce the world to PostgreSQL 7.4! By and large this release isseanc2003-12-046-59/+138
| | | | | | | | | | | | | | | 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)
* Set pkg-comment only when there isn't one set yet (make portedwin2003-10-131-1/+1
| | | | master/slave clean)
* Bump the PORTREVISION for the ports directly affected by the gettext upgrade.marcus2003-08-261-0/+1
| | | | Prodded by: kris
* Chase the libintl.so shared lib version.marcus2003-08-251-1/+1
|
* Fix my fault in previous commit: put a pkg-messageosa2003-08-121-0/+0
| | | | | | into right place. Notify from: Palle Girgensohn <girgen@pingpong.net>
* Update to 7.3.4osa2003-08-125-63/+30
| | | | | | | | | | | "In order to address a potentially serious (although rare) server startup failure that was recently reported, we have released PostgreSQL version 7.3.4. This release is critical for users of PostgreSQL version 7.3.3, and highly recommended for all other PostgreSQL users." Submitted by: Palle Girgensohn <girgen@pingpong.net> (maintainer) PR: 55354
* get rid of libgnugetopt dependency for -CURRENT,sf2003-07-141-2/+2
| | | | use USE_GETOPT_LONG instead.
* postgresql slave ports, reduce unnecessary portrevision bumpsdaichi2003-06-191-0/+1
| | | | | PR: 52867 Submitted by: Palle Girgensohn <girgen@pingpong.net> (maintainer)
* The control script that ships with the postgresosa2003-06-111-1/+1
| | | | | | | | | | | port (files/pgsql.sh.tmpl) lacks a parameter in the restart option, causing logs to be send to stdout, instead of the log file. Submitted by: Fernando Schapachnik <fernando@mecon.gov.ar> Approved by: maintainer PR: 53142 Approved by: fjoe (implicit)
* Use ${MASTER_SITE_PGSQL} instead of multiple sitesosa2003-06-111-14/+1
| | | | | | | Submitted by: osa Approved by: maintainer PR: 50397 Approved by: fjoe (implicit)
OpenPOWER on IntegriCloud