summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2001-05-21Use useradd and groupadd on Linux as well as SunOSabs1-2/+2
2001-05-18LDFLAGS is already set to -L... -Wl,-R..., and CFLAGS and LDFLAGS arejlam1-7/+6
already added to CONFIGURE_ENV by bsd.pkg.mk. Also some minor cosmetic changes.
2001-05-18Move the message that informs the user of the possible need to dump thejlam3-10/+17
databases prior to installing a new version of PostgreSQL from PRE-INSTALL time to DEINSTALL time. Remove ${CAT} from the INSTALL file as it's no longer needed in the script.
2001-05-16Fix problem reported by David Brownlee <abs@netbsd.org> where psql isn'tjlam1-3/+1
built with readline support despite linking against libreadline.
2001-05-16Cosmetic change: sort Makefile includesjlam1-2/+2
2001-05-16Update for moved Makefile.getoptabs1-2/+2
2001-05-16The CFLAGS and LDFLAGS settings have migrated to Makefile.common injlam1-4/+1
databases/postgresql.
2001-05-16Adapt postgresql-client to use devel/readline/Makefile.readline insteadjlam3-37/+18
of the one in databases/postgresql. Remove the Makefile.readline in databases/postgresql as it's no longer used by any packages.
2001-05-15Move Makefile.getopt to pkgsrc/devel/libgetopt and cosmetic updatesjlam2-24/+3
to Makefile.readline.
2001-05-15Fix dependencies and post-extract target. "Make build" injlam2-11/+17
databases/postgresql should now correctly trigger the full build and installation of PostgreSQL.
2001-05-14Surround possible empty string in quotes so [ sees an argument.jlam1-2/+2
2001-05-14Generalize some of the code a bit to make it easier to cut-and-paste intojlam1-2/+2
other scripts.
2001-05-14Move database initialization step from the INSTALL script to ajlam2-18/+51
start_precmd in the pgsql rc.d script. This is more correct, since if postgresql-server is installed but never used, then no database really needs to be initialized. As a side-effect, the bulk-builds of postgresql should now leave less crud in the aftermath of deinstalling postgresql.
2001-05-14Update OpenLDAP to 1.2.12.kleink3-16/+5
Changes included in OpenLDAP 1.2.12 CVS Tag: OPENLDAP_REL_ENG_1_2 Fixed slapd sb_max_incoming bug Fixed ldapmodify ldaphost NULL bug Fixed ldapsearch uninitialized fp bug Fixed Pth initialization bug Fixed libldap/add mod_bvalues typo Fixed ldappasswd crypt(3) crash (ITS#598) Fixed slapd/config.c MAXARGS boundary condition bug Fixed cn=monitor/config rdwr lock leak Fixed liblber exception handling bugs Build Environment Remove extra Digital UNIX symbol (ITS#590) Ignore make clean rm failure Fix ud install mode (ITS#633)
2001-05-14Document the package naming scheme for PostgreSQL packages.jlam1-1/+7
2001-05-14Moved p5-pgsql to p5-postgresqljlam1-2/+2
2001-05-14Moved p5-pgsql to p5-postgresql.jlam5-0/+60
2001-05-14Move this package to p5-postgresql for consistency in package names.jlam5-60/+0
2001-05-14Set POSTGRES_HOME to correct value regardless of what postgresql packagesjlam1-3/+2
are installed.
2001-05-14Update postgresql dependencies to look like:jlam5-10/+10
DEPENDS+= postgresql-{6.5.3*,7.0*,lib-*}:../../databases/postgresql-lib
2001-05-14Add and enable the following packages:jlam1-1/+7
postgresql-client, postgresql-docs, postgresql-lib, postgresql-plperl, postgresql-pltcl, postgresql-server
2001-05-14Update tk-postgresql to 7.1.1. There don't appear to be any functionaljlam2-26/+34
changes from version 7.0.3, only that this package is now built from sources found in the PostgreSQL-7.1.1 sources.
2001-05-14Update tcl-postgresql to 7.1.1. There don't appear to be any functionaljlam4-27/+24
changes from version 7.0.3, only that this package is now built from sources found in the PostgreSQL-7.1.1 sources. The PL/Tcl procedural language module has now been split off into a separate package, pgsql-pltcl.
2001-05-14Update py-postgresql to 3.2. Changes from version 3.1 include few bugfixes,jlam5-58/+49
adds a few minor features and makes a few speedups in the code, plus: - Fix some DB-API quoting problems (niall.smart@ebeon.com) - Moved development into PostgreSQL development tree.
2001-05-14Update postgresql to 7.1.1 Pkgsrc changes include splitting into:jlam33-3939/+551
postgresql-lib postgresql-client postgresql-server postgresql-doc with postgresql as a meta-package. Major changes from version 7.1.1 include: Write-ahead Log (WAL) - To maintain database consistency in case of an operating system crash, previous releases of PostgreSQL have forced all data modifications to disk before each transaction commit. With WAL, only one log file must be flushed to disk, greatly improving performance. If you have been using -F in previous releases to disable disk flushes, you may want to consider discontinuing its use. TOAST - Previous releases had a compiled-in row length limit, typically 8 - 32 kB. This limit made storage of long text fields difficult. With TOAST, long rows of any length can be stored with good performance. Outer Joins - We now support outer joins. The UNION/NOT IN workaround for outer joins is no longer required. We use the SQL92 outer join syntax. Function Manager - The previous C function manager did not handle NULLs properly, nor did it support 64-bit CPU's (Alpha). The new function manager does. You can continue using your old custom functions, but you may want to rewrite them in the future to use the new function manager call interface. Complex Queries - A large number of complex queries that were unsupported in previous releases now work. Many combinations of views, aggregates, UNION, LIMIT, cursors, subqueries, and inherited tables now work properly. Inherited tables are now accessed by default. Subqueries in FROM are now supported. Migration to 7.1.1 A dump/restore using pg_dump is required for those wishing to migrate data from any previous release.
2001-05-14Update odbc-postgresql to 7.1.1. There don't appear to be any functionaljlam4-17/+35
changes from version 7.0.3, only that this package is now built from sources found in the PostgreSQL-7.1.1 sources.
2001-05-14postgresql-server: PostgreSQL database backend server programsjlam8-0/+354
This package also has an enhanced rc.d-style startup script that respects rc.conf settings. If you are running NetBSD>=1.5, then add pgsql=YES to /etc/rc.conf, and set pgsql_flags to any options you wish to pass to the postmaster.
2001-05-14postgresql-pltcl: PL/Tcl procedural language for the PostgreSQL backend.jlam4-0/+49
PL/Tcl is a dynamic loadable extension for the PostgreSQL database system that enables the Tcl language to be used to create functions and trigger-procedures. It offers most of the capabilities a function writer has in the C language.
2001-05-14postgresql-plperl: PL/Perl procedural language for the PostgreSQL backend.jlam4-0/+53
PL/Perl allows you to write functions in the Perl programming language that may be used in SQL queries as if they were built into Postgres. The PL/Perl intepreter is a full Perl interpreter. However, certain operations have been disabled in order to maintain the security of the system.
2001-05-14postgresql-lib: PostgreSQL database headers and librariesjlam4-0/+403
2001-05-14postgresql-docs: PostgreSQL HTML documentationjlam3-0/+551
2001-05-14postgresql-client: PostgreSQL client programsjlam4-0/+162
2001-05-14add & enable mytop, remove its entry from TODOzuntum1-1/+2
2001-05-14Initial import of mytop-0.7 - console-based tool for monitoring the threads ↵zuntum4-0/+46
and performance of MySQL mytop was inspired by the system monitoring tool top. I routinely use top on Linux, FreeBSD, and Solaris. You are likely to notice features from each of them here. mytop will connect to a MySQL server and periodically run the SHOW PROCESSLIST and SHOW STATUS commands and attempt to summarize the information from them in a useful format.
2001-05-06Provide the missing libraries required to dynamically link in "-lgd".fredb3-7/+9
Closes PR pkg/12686.
2001-05-04Update to 2.23, provided by Nathan Ahlstrom in pkg/12819.wiz2-5/+5
Ok'd by Alistair. Changes: Many new features, and some bugfixes. Details at http://search.cpan.org/doc/GBARR/perl-ldap-0.23/ChangeLog
2001-05-04Share a common distinfo file with the postgresql package.jlam4-40/+2
2001-05-03Don't continue DEPENDS lines with '\' Instead, insert "DEPENDS+= " inagc1-3/+3
subsequent lines, which makes it easier to search for pre-requisite packages with a "DEPENDS.*pkg" regular expression.
2001-05-02* Rearrange MySQL build structure by providing a Makefile.common that isjlam17-201/+295
included by both mysql-server/Makefile and mysql-client/Makefile. * Remove some unnecessary patches from mysql-client. * Remove build dependency on autoconf as we don't really need to use it. * Improve detection of native readline library. * Provide INSTALL/DEINSTALL scripts to perform initial database setup and to remind the package administrator to remove unnecessary directories upon package removal. * Use complete path to chown in various installed scripts. Fixes pkg/12725. * Install server manpages with the server package. Fixes pkg/12724.
2001-04-26There is no dir entry in the distributed gdbm.info -- delete it afterjtb1-1/+4
extraction so that it gets rebuilt.
2001-04-21Drop remaining uses of DIGEST_FILE (which were bogus, anyway)wiz1-3/+1
2001-04-18Add an INFO_FILES entry.jtb1-1/+2
2001-04-18Move to sha1 digests, and add distfile sizes.agc46-81/+127
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc94-210/+190
+ move the patch digest/checksum values from files/patch-sum to distinfo + include distfile filesizes in distinfo
2001-04-15<mysql/mysql.h> can be found in the mysql-client pkg:hubertf1-1/+2
noon% pkg_info -Fe /usr/pkg/include/mysql/mysql.h mysql-client-3.23.35 Add dependency on that!
2001-04-15fix fatal typo - INSTALhubertf1-4/+4
2001-04-13Update to 1.15. Notable changes:mjl2-4/+4
Added selectrow_arrayref, selectrow_hashref, selectall_hashref Added DBI->connect(..., { dbi_connect_method => 'method' }) Added $h->{ShowErrorStatement}=1 to cause the appending of the relevant Statement text to the RaiseError/PrintError text. Trace method uses warn() if it can't open the new file. Trace shows source line and filename during global destruction. Documentation: Documented $DBI::lasth (which has been there since day 1). Documented SQL_* names. Clarified and extended docs for $h->state Clarified fetchall_arrayref({}) docs Clarified type_info_all re lettercase and index values. Updated DBI::FAQ to 0.38 Added cute bind_columns example Extended docs on \%attr arg to data_sources method. Proxy: Removed debug messages from DBD::Proxy AUTOLOAD Added fix for problem using table_info Added better determination of where to put the pid file Added KNOWN ISSUES section to DBD::Proxy docs Known issues: Perl 5.005 and 5.006 both leak memory doing local($handle->{Foo}). Perl 5.004 doesn't. The leak is not a DBI or driver bug.
2001-04-10Note inclusion by odbc-postgresqljlam1-1/+2
2001-04-06Add a MAINTAINER field.jwise1-1/+2
2001-04-06Add a message file pointing users to the ODBC chapter of the PostgreSQLjwise1-0/+2
documentation.