pkgsrc/databases
uebayasi 8370df5f81 Initial import of PostgreSQL 8.1.3, from pkgsrc-wip.
This is an overview of new features in 8.1.0 against 8.0.x.  8.1.3 includes
many bug fixes since 8.1.0.  Please read documentation of the detailed changes
and procedure of data migration.

Overview

   Major changes in this release:

   Improve concurrent access to the shared buffer cache (Tom)
          Access to the shared buffer cache was identified as a
          significant scalability problem, particularly on multi-CPU
          systems. In this release, the way that locking is done in the
          buffer manager has been overhauled to reduce lock contention and
          improve scalability. The buffer manager has also been changed to
          use a "clock sweep" replacement policy.

   Allow index scans to use an intermediate in-memory bitmap (Tom)
          In previous releases, only a single index could be used to do
          lookups on a table. With this feature, if a query has "WHERE
          tab.col1 = 4 and tab.col2 = 9", and there is no multicolumn
          index on col1 and col2, but there is an index on col1 and
          another on col2, it is possible to search both indexes and
          combine the results in memory, then do heap fetches for only the
          rows matching both the col1 and col2 restrictions. This is very
          useful in environments that have a lot of unstructured queries
          where it is impossible to create indexes that match all possible
          access conditions. Bitmap scans are useful even with a single
          index, as they reduce the amount of random access needed; a
          bitmap index scan is efficient for retrieving fairly large
          fractions of the complete table, whereas plain index scans are
          not.

   Add two-phase commit (Heikki Linnakangas, Alvaro, Tom)
          Two-phase commit allows transactions to be "prepared" on several
          computers, and once all computers have successfully prepared
          their transactions (none failed), all transactions can be
          committed. Even if a machine crashes after a prepare, the
          prepared transaction can be committed after the machine is
          restarted. New syntax includes "PREPARE TRANSACTION" and
          "COMMIT/ROLLBACK PREPARED". A new system view pg_prepared_xacts
          has also been added.

   Create a new role system that replaces users and groups (Stephen Frost)
          Roles are a combination of users and groups. Like users, they
          can have login capability, and like groups, a role can have
          other roles as members. Roles basically remove the distinction
          between users and groups. For example, a role can:

          + Have login capability (optionally)
          + Own objects
          + Hold access permissions for database objects
          + Inherit permissions from other roles it is a member of

          Once a user logs into a role, she obtains capabilities of the
          login role plus any inherited roles, and can use "SET ROLE" to
          switch to other roles she is a member of. This feature is a
          generalization of the SQL standard's concept of roles. This
          change also replaces pg_shadow and pg_group by new role-capable
          catalogs pg_authid and pg_auth_members. The old tables are
          redefined as read-only views on the new role tables.

   Automatically use indexes for MIN() and MAX() (Tom)
          In previous releases, the only way to use an index for MIN() or
          MAX() was to rewrite the query as "SELECT col FROM tab ORDER BY
          col LIMIT 1". Index usage now happens automatically.

   Move /contrib/pg_autovacuum into the main server (Alvaro)
          Integrating autovacuum into the server allows it to be
          automatically started and stopped in sync with the database
          server, and allows autovacuum to be configured from
          "postgresql.conf".

   Add shared row level locks using SELECT ... FOR SHARE (Alvaro)
          While PostgreSQL's MVCC locking allows "SELECT" to never be
          blocked by writers and therefore does not need shared row locks
          for typical operations, shared locks are useful for applications
          that require shared row locking. In particular this reduces the
          locking requirements imposed by referential integrity checks.

   Add dependencies on shared objects, specifically roles (Alvaro)
          This extension of the dependency mechanism prevents roles from
          being dropped while there are still database objects they own.
          Formerly it was possible to accidentally "orphan" objects by
          deleting their owner. While this could be recovered from, it was
          messy and unpleasant.

   Improve performance for partitioned tables (Simon)
          The new constraint_exclusion configuration parameter avoids
          lookups on child tables where constraints indicate that no
          matching rows exist in the child table.

          This allows for a basic type of table partitioning. If child
          tables store separate key ranges and this is enforced using
          appropriate "CHECK" constraints, the optimizer will skip child
          table accesses when the constraint guarantees no matching rows
          exist in the child table.
2006-03-20 14:45:49 +00:00
..
abook Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
adodb Update to 4.80 2006-03-13 12:18:23 +00:00
bdb-xml Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cdb Conflicts with the to-be-added-shortly tinycdb package: both install 2006-01-07 06:45:45 +00:00
db Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
db3 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
db4 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
dbh Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
edb Fixed typo in USE_LANGUAGES. 2006-03-10 23:24:36 +00:00
freetds Regen hand-edited patch so that the MacOS X patch program can apply it. 2006-03-03 19:34:42 +00:00
gdbm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gdbm_primitive Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
geneweb Fix build with ocaml >= 3.09.0 2006-03-09 10:35:49 +00:00
gnats Fixed pkglint warnings. 2006-03-10 23:26:31 +00:00
gnome-mime-data Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gourmet Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
gq Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gramps Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
gramps2 update to 2.0.10 2006-03-14 20:13:51 +00:00
gtksql Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
guile-pg Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
iodbc Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
java-db3 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
jdb Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE, 2005-09-28 20:52:18 +00:00
jdbc-postgresql73 2006-02-27 14:47:08 +00:00
jdbc-postgresql74 Updated jdbc-postgresql74 to 216 2006-02-27 14:52:08 +00:00
jdbc-postgresql80 Updated jdbc-postgresql74 to 216 2006-02-27 14:52:08 +00:00
jdbc-postgresql81 Updated jdbc-postgresql74 to 216 2006-02-27 14:52:08 +00:00
kmysqladmin Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
krecipes Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
lbdb Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libgda Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
libgda-postgres Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libgnomedb Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
libpqxx Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
libpqxx-doc Update libpqxx{,-doc} to version 2.5.4 2005-06-27 01:57:26 +00:00
lua-sqlite Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
luma Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
mergeant Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
metakit-lib Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
myodbc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
mysql4-client disable assembler stuff on Solaris/x86, because it's likely to work 2006-03-03 04:00:09 +00:00
mysql4-server Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
mysql5-client disable assembler stuff on Solaris/x86, because it's likely to work 2006-03-03 04:00:09 +00:00
mysql5-server Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
mysqlcc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
mytop Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
nss_ldap restructure the getgroupmembership backend to handle merging of 2006-03-15 19:23:47 +00:00
odbc-postgresql Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
openldap Take maintainership. 2006-03-14 16:23:46 +00:00
oraedit Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-AddressBook Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-DBI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-BerkeleyDB Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-DBI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Class-DBI-AbstractSearch Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Data-Table This perl package uses perl5 objects to make it easy for manipulating 2005-11-07 11:29:43 +00:00
p5-DB_File Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBD-CSV Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBD-Google Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBD-mysql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-DBD-Oracle Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBD-postgresql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-DBD-SQLite Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBD-Sybase Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-DBD-XBase Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBI-Shell Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-DBIWrapper Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-DBIx-Abstract Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBIx-ContextualFetch Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBIx-Datasource Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBIx-DBSchema Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBIx-Schema Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-DBIx-SearchBuilder Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-gdbm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Ima-DBI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-MARC Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-MLDBM Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-MLDBM-Sync Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Palm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-perl-ldap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-postgresql Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-qdbm Re-import p5-qdbm into the correct directory. This is a "Perl" 2005-11-23 06:36:56 +00:00
p5-SQL-Abstract Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-SQL-Statement Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-sybperl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pear-DB Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pgaccess Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
pgpool Update pgpool to 2.7. Based on patches provided by Inseo PARK in 2006-01-15 17:09:50 +00:00
pgtcl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-dba Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-dbase Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-dbx Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-filepro Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-ldap Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-mssql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-mysql Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
php-odbc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-pdo add fix for the (broken?) PDO configure checks 2006-02-07 17:59:56 +00:00
php-pdo_dblib Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-pdo_mysql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-pdo_odbc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-pdo_pgsql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-pdo_sqlite Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-pgsql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-sqlite Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
php5-mysqli Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
phpldapadmin Add missing file+dir to PLIST, bump PKGREVISION. 2006-02-16 18:18:25 +00:00
phpmyadmin Fix a few issues reported by "pkglint". 2006-03-09 11:23:25 +00:00
phppgadmin Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
postgresql73 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
postgresql73-client Update PostgreSQL to 7.3.14. 2006-02-20 18:34:07 +00:00
postgresql73-docs Update PostgreSQL to 7.3.14. 2006-02-20 18:34:07 +00:00
postgresql73-lib Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
postgresql73-plperl Update PostgreSQL to 7.3.14. 2006-02-20 18:34:07 +00:00
postgresql73-pltcl Update PostgreSQL to 7.3.14. 2006-02-20 18:34:07 +00:00
postgresql73-server Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
postgresql74 postgresql configure doesn't always correctly detect that it needs 2006-03-08 02:29:06 +00:00
postgresql74-client Update PostgreSQL 7.4.x to 7.4.12. Take maintainership. 2006-02-21 20:23:49 +00:00
postgresql74-contrib Update PostgreSQL 7.4.x to 7.4.12. Take maintainership. 2006-02-21 20:23:49 +00:00
postgresql74-docs Update PostgreSQL 7.4.x to 7.4.12. Take maintainership. 2006-02-21 20:23:49 +00:00
postgresql74-lib Update PostgreSQL 7.4.x to 7.4.12. Take maintainership. 2006-02-21 20:23:49 +00:00
postgresql74-plperl Update PostgreSQL 7.4.x to 7.4.12. Take maintainership. 2006-02-21 20:23:49 +00:00
postgresql74-plpython Update PostgreSQL 7.4.x to 7.4.12. Take maintainership. 2006-02-21 20:23:49 +00:00
postgresql74-server Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
postgresql80 Take maintainership. 2006-03-14 16:23:46 +00:00
postgresql80-client Update PostgreSQL 8.0.x to 8.0.7. 2006-02-21 19:05:06 +00:00
postgresql80-plperl Update PostgreSQL 8.0.x to 8.0.7. 2006-02-21 19:05:06 +00:00
postgresql80-plpython Update PostgreSQL 8.0.x to 8.0.7. 2006-02-21 19:05:06 +00:00
postgresql80-pltcl Update PostgreSQL 8.0.x to 8.0.7. 2006-02-21 19:05:06 +00:00
postgresql80-server Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
postgresql81 Initial import of PostgreSQL 8.1.3, from pkgsrc-wip. 2006-03-20 14:45:49 +00:00
postgresql81-client Initial import of PostgreSQL 8.1.3, from pkgsrc-wip. 2006-03-20 14:45:49 +00:00
postgresql81-plperl Initial import of PostgreSQL 8.1.3, from pkgsrc-wip. 2006-03-20 14:45:49 +00:00
postgresql81-plpython Initial import of PostgreSQL 8.1.3, from pkgsrc-wip. 2006-03-20 14:45:49 +00:00
postgresql81-pltcl Initial import of PostgreSQL 8.1.3, from pkgsrc-wip. 2006-03-20 14:45:49 +00:00
postgresql81-server Initial import of PostgreSQL 8.1.3, from pkgsrc-wip. 2006-03-20 14:45:49 +00:00
pxtools Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-bdb-xml Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-bsddb3 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-gdbm Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-IndexedCatalog Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-ldap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-metakit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-mssql Updated py-mssql to 0.7.4. 2006-03-13 12:52:03 +00:00
py-mysqldb Fix build with newer MySQL versions: mysql_shutdown can have two 2006-02-26 16:37:41 +00:00
py-pgnotify Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-PgSQL Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-postgresql Update to version 3.8. 2006-02-17 17:58:02 +00:00
py-psycopg Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-sqlite Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-sqlite2 import pysqlite-2.0.7, an (incompatible) redesign of pysqlite 2006-03-14 20:17:59 +00:00
py-sybase Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-table Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-ZODB Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
qdbm Update qdbm packages to 1.8.46, provided by OBATA Akio in PR 32655: 2006-03-11 14:07:31 +00:00
qdbm-cgi Import qdbm-cgi from pkgsrc-wip. Packaged by OBATA Akio. 2005-11-23 06:51:57 +00:00
qdbm-plus Fix PLIST for update of qdbm. 2006-01-12 17:37:04 +00:00
quicklist Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
rdb Fixed pkglint warnings. Because the Perl scripts are now installed with the 2006-01-22 23:35:29 +00:00
rrdtool The script interpreter for examples/cgi-demo.cgi had to be corrected, as 2006-03-02 12:23:56 +00:00
ruby-activerecord Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-gdbm Update distinfo for Ruby 1.8.3. 2005-11-02 09:32:28 +00:00
ruby-mysql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-postgresql Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ruby-qdbm Update qdbm packages to 1.8.46, provided by OBATA Akio in PR 32655: 2006-03-11 14:07:31 +00:00
ruby-vapor Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sdbm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
shared-mime-info Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
sqlite Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sqlite3 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sqlite3-tcl update to 3.3.4 2006-02-15 19:50:52 +00:00
sqlitemanager Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
sqlrelay Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
sqsh Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
sqsh-motif Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
sqsh-x11 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
tcl-fbsql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
tcl-gdbm Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE, 2005-09-28 20:52:18 +00:00
tcl-postgresql73 Update PostgreSQL to 7.3.14. 2006-02-20 18:34:07 +00:00
tcl-postgresql74 Update PostgreSQL 7.4.x to 7.4.12. Take maintainership. 2006-02-21 20:23:49 +00:00
tdb Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tinycdb Don't forcibly override CFLAGS and other values pkgsrc might pass to 2006-01-19 04:53:44 +00:00
tk-postgresql73 Update PostgreSQL to 7.3.14. 2006-02-20 18:34:07 +00:00
unixodbc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
unixodbc-DataManager Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
unixodbc-ODBCConfig Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
xmysql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
xsqlmenu Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
yasql Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope-mysql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
Makefile +py-sqlite2 2006-03-14 20:19:27 +00:00