pkgsrc/databases
abs ca61c6c701 Updated databases/jdbc-postgresql81 to 8.1-480:
Version 8.1-408 (2006-12-01)

  * update Italian translation update. (jurka) Thanks to Giuseppe
    Sacco.
  * update Brazilian Portuguese translation update. (jurka) Thanks
    to Euler Taveira de Oliveira.
  * fix When issuing multiple queries on one statement the driver
    was not clearing some intermediate state between executions.
    When an update, insert, or delete followed a select, the select's
    results were still available and would be returned instead of
    the non-query's affected row count. (jurka) Thanks to Gilles
    Rayrat.
  * fix When the driver asks the server to resolve a type the
    resolved type is stored in the SimpleQuery object. When the
    statement is executed again the driver determines whether the
    existing types match or if it needs to be reprepared by comparing
    the current Statement's settings with the SimpleQuery. The
    Statement will have the unspecified oid while the SimpleQuery
    will have the resolved oid, so there will not be a match and
    the statement will needlessly be reprepared. Allow an unspecified
    oid to match any resolved type. (jurka) Thanks to Akira Sato.
  * fix When creating a ResultSet from a refcursor, respect the
    creating ResultSet's scollability setting. The way the ResultSet
    is created means that it will always be scrollable anyway, so
    there's no downside. We cannot support updatable refcursor
    ResultSets until we get updatable cursors. (jurka)
  * fix Fix a bug in function escape processing. When dealing
    with an invalid escape the code attempted to read until it hit
    the escape end and press on, but it forgot to increment its
    position counter. This lead to an infinite loop that eventually
    resulted in an out of memory error. (jurka)
  * fix Update the documentation to reflect the fact that the
    default prepareThreshold is five, not zero. (jurka)
  * fix Correct error message in CallableStatement to identify
    the mismatch with the registered return type. (jurka)
  * fix Correct escaping of named savepoints which follow
    identifier, not literal rules. (jurka) Thanks to Michael Paesold.


Version 8.1-407 (2006-05-23)

  * update Remove documentation's claim that we don't support
    functions with out parameters. (jurka)
  * update Updated German translation. (jurka) Thanks to Andre
    Bialojahn.
  * fix Using callable statements against older server versions
    (7.4 or 8.0) did not work because of recent changes to output
    parameter handling. 7.4 and 8.0 do not support function output
    parameters, but they still must support the functions return
    value. Every function must have either a return value or an
    output parameter so we force the minimum output parameter count
    to one. (jurka)
  * fix When running against a 8.1+ server with protocol version
    2 we cannot handle output parameters and can only handle the
    traditional function return value. (jurka)

Version 8.1-406 (2006-05-22)

  * update Updated German transalation. (jurka) Thanks to Andre
    Bialojahn.
  * fix Fix a couple of bugs in CallableStatement outputs. An
    oversight in the checking of actual results vs. what the caller
    specified for registerOutParameter was checking all register
    parameters against the first out parameter, not the parameter
    it actually corresponded with. Also with a function that has
    an in parameter and an out parameter, the out parameter will
    be registered at position 2, but will be returned in a result
    at position 1 because the first input parameter generates no
    output. The driver needs to correctly map between these two
    parameter offsets. (davec) Thanks to Luis Londono.
  * fix Error messages were not run through MessageFormat if it
    didn't have any parameters. This was a problem because all
    error messages are written expecting to be run through the
    formatter and use two single quotes when only one is desired
    in the output. Without being run through the formatter the two
    quotes appeared in the output. (jurka) Thanks to Giuseppe Sacco.
  * fix Add some more synchronization to the TypeInfoCache. We
    need synchronization around the PreparedStatements because they
    may not be used by two threads at the same time. Additional
    synchronization is applied to the maps to ensure that they are
    in sync with each other. Make _pgNameToSQLType static. (jurka)
    Thanks to Till Toenges.
  * fix An OutOfMemoryError during fe<->be communication leaves
    the protocol in an unknown state. This prevents the caller from
    even closing the connection. Checking every allocation is a
    lot of work, but the most likely error location is going to be
    when receiving large result sets. Put in checks around receiving
    row data to detect memory exhaustion, keep the protocol in a
    known state, and report the failure back to the user. (jurka)
    Thanks to David Blasby.
  * fix When we're unable to parse a timestamp value, the error
    message should print out the bad value. It was printing a char
    array which showed up as a useless [C@xxxx. (jurka) Thanks to
    Oliver Jowett.
  * fix gij/gcj has some JDK1.5 classes in it, but it only supports
    JDK1.4 as the default source level. This confuses older ant
    versions and our build script tries to compile a JDK1.5 version.
    Instead of letting ant detect the java version, let the jvm
    tell us that itself using java.specification.version as suggested
    by Heikki Linnakangas. Also put in a check for a JDK1.6 compile
    attempt and bail out with an explanatory unsupported error
    message instead of just failing at some random point. (jurka)
  * fix When a prepared statement uses different parameter types
    than what the statement was originally prepared for, the driver
    must replan the query for the new types. When doing this in
    batches the driver was not correctly freeing old plans. To
    cleanup prepared statements the driver records a reference to
    a query object in response to the ParseComplete message. The
    problem in this case was that since the driver sends multiple
    Parse messages before a Sync, when the driver receives the
    first ParseComplete message the query object now contains a
    reference to the latest parsed statement, not the first. So it
    was only cleaning up the last parsed statement not all of them.
    (jurka) Thanks to Peter Eisentraut.
  * fix When the Connection retrieved from XAConnection.getConnection()
    is closed we do not want to rollback the transaction because
    the underlying connection is not closed and the transaction is
    being managed by the XAResource, not the Connection. (jurka)
    Thanks to Niels Beekman.
2007-01-13 21:34:40 +00:00
..
abook Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
adodb Update to 4.81 2006-06-11 14:21:31 +00:00
bdb-xml Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
cdb Conflicts with the to-be-added-shortly tinycdb package: both install 2006-01-07 06:45:45 +00:00
db Replace mk/bsd.prefs.mk includes with bsd.fast.prefs.mk includes. 2006-12-12 21:52:34 +00:00
db3 Replace mk/bsd.prefs.mk includes with bsd.fast.prefs.mk includes. 2006-12-12 21:52:34 +00:00
db4 Replace mk/bsd.prefs.mk includes with bsd.fast.prefs.mk includes. 2006-12-12 21:52:34 +00:00
dbh Fixed "test ==". 2006-10-11 19:08:02 +00:00
edb Update to 1.0.5, changes unknown. 2006-07-20 19:00:48 +00:00
freetds Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gdbm Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
gdbm_primitive Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
geneweb Fixed "test ==". 2006-10-22 07:01:38 +00:00
gnats Fixed pkglint warnings. 2006-06-16 09:32:33 +00:00
gnome-mime-data update to 2.4.3 2006-11-14 16:58:13 +00:00
gourmet Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
gq Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
gramps Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
gramps2 minor cleanup: pull in xdg-dirs/gnome-icon-theme 2007-01-05 15:46:12 +00:00
gtksql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
guile-pg I see no reason to force PostgreSQL 7.4 here, so remove the forced 2006-12-28 18:19:00 +00:00
iodbc Update iodbc to 3.52.5. 2007-01-12 17:27:20 +00:00
ipa_sdb Import ipa_sdb version 1.0.1. 2007-01-03 15:06:02 +00:00
java-db3 The package works for me, so remove the BROKEN_IN. 2006-06-26 09:54:45 +00:00
jdb Fixed the paths to the Perl interpreter, which is needed for bulk builds 2006-06-18 12:02:00 +00:00
jdbc-postgresql80 Update databases/jdbc-postgres80 from postgresql-jdbc-8.0-315 to 318 2007-01-13 21:31:18 +00:00
jdbc-postgresql81 Updated databases/jdbc-postgresql81 to 8.1-480: 2007-01-13 21:34:40 +00:00
kmysqladmin Modular Xorg support. 2007-01-13 16:50:12 +00:00
krecipes Modular Xorg support. 2007-01-11 11:37:07 +00:00
lbdb Update databases/lbdb to 0.32 2006-08-13 16:01:21 +00:00
libgda Add a patch in Gnome bug 382933 to make this package build on Darwin. 2006-12-12 21:02:26 +00:00
libgda-postgres Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
libgnomedb Make this package build on Darwin by linking with all required libraries. 2006-12-07 22:10:06 +00:00
libpqxx Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
libpqxx-doc Update libpqxx to 2.5.5. Changes: 2006-08-23 11:45:26 +00:00
lua-sqlite Adapt for lua-5.1.1, bump PKGREVISION. 2006-08-14 22:33:11 +00:00
luma Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
mergeant Update to 0.64: 2006-12-05 10:23:57 +00:00
metakit-lib Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
myodbc Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
mysql4-client Disable i386 assembly optimizations on Darwin to fix a build failure. 2006-10-18 13:22:04 +00:00
mysql4-server This package contains a Perl script, but it is not as important to 2006-10-22 09:32:53 +00:00
mysql5-client Update to 5.0.27: 2006-12-10 04:12:17 +00:00
mysql5-server Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
mysqlcc Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +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 Fixed file ownership to allow for unprivileged builds. 2007-01-02 12:24:00 +00:00
ocaml-mysql Fixed "test ==". 2006-10-14 01:55:03 +00:00
odbc-postgresql Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
openldap Update openldap packages to 2.3.32, the new stable release. 2007-01-10 18:15:36 +00:00
openldap-client Update openldap packages to 2.3.31 (new stable release). 2007-01-02 11:29:15 +00:00
openldap-doc Update openldap packages to 2.3.32, the new stable release. 2007-01-10 18:15:36 +00:00
openldap-server Update openldap packages to 2.3.31 (new stable release). 2007-01-02 11:29:15 +00:00
oraedit Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-AddressBook Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
p5-Apache-DBI Update to 1.01: 2006-07-19 22:28:57 +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 This package actually also needs p5-version. 2006-10-21 20:00:45 +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 Updated databases/p5-Data-Table to 1.50 2006-10-16 09:24:54 +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-DB_File-Lock Add p5-DB_File-Lock, version 0.05: 2006-06-03 11:45:56 +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 Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
p5-DBD-mysql Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
p5-DBD-Oracle Replaced PKG_SKIP_REASON with PKG_FAIL_REASON and included bsd.prefs.mk 2007-01-02 12:13:39 +00:00
p5-DBD-postgresql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
p5-DBD-SQLite Updated to 1.12. 2006-04-20 08:07:08 +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 Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
p5-DBI-Shell Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +00:00
p5-DBIWrapper Over 1200 files touched but no revisions bumped :) 2006-04-06 06:21:32 +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 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +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 Update to 1.43: 2006-07-19 22:33:42 +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 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
p5-postgresql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +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 Updated p5-SQL-Abstract to 1.21. 2006-04-23 14:21:24 +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 Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
pear-DB Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
pgadmin3 Mark this officially as broken for now. See PR 30997 for further 2007-01-02 16:49:34 +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 Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
pgtclng Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
php-dba Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-dbase Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-dbx Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-filepro Update lang/php5 to 5.2.0. 2006-11-06 22:06:35 +00:00
php-ldap Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-mssql Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-mysql Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
php-odbc Mark as broken - unixodbc is threaded and if the module is enabled 2006-10-20 21:53:33 +00:00
php-pdo Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
php-pdo_dblib Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
php-pdo_mysql Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
php-pdo_odbc mark as broken similarily to php-odbc 2006-11-06 21:36:14 +00:00
php-pdo_pgsql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
php-pdo_sqlite Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
php-pgsql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
php-sqlite Rename all PHP 4 packages to php4-*, all PHP 5 packages to php5-*, 2006-06-02 18:27:54 +00:00
php5-mysqli Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv). 2006-06-04 16:26:52 +00:00
phpldapadmin Remove the dependency on php4-domxml/php5-dom, as it is not stricly necessary 2006-11-18 21:46:44 +00:00
phpmyadmin Update "phpmyadmin" package to version 2.9.2rc1. 2007-01-10 12:50:04 +00:00
phppgadmin Update to 3.5.6, which was a very minor bugfix prior to the major 4.0 2006-09-05 17:04:31 +00:00
postgresql80 Changes 8.0.10: 2007-01-08 20:30:42 +00:00
postgresql80-client Changes 8.0.10: 2007-01-08 20:30:42 +00:00
postgresql80-plperl Changes 8.0.10: 2007-01-08 20:30:42 +00:00
postgresql80-plpython Changes 8.0.10: 2007-01-08 20:30:42 +00:00
postgresql80-pltcl Changes 8.0.10: 2007-01-08 20:30:42 +00:00
postgresql80-server Changes 8.0.10: 2007-01-08 20:30:42 +00:00
postgresql81 Fix gettext detection similiar to PostgreSQL 8.2. 2007-01-12 22:49:24 +00:00
postgresql81-client Changes 8.1.6: 2007-01-08 18:55:38 +00:00
postgresql81-plperl Changes 8.1.6: 2007-01-08 18:55:38 +00:00
postgresql81-plpython Changes 8.1.6: 2007-01-08 18:55:38 +00:00
postgresql81-pltcl Changes 8.1.6: 2007-01-08 18:55:38 +00:00
postgresql81-server Changes 8.1.6: 2007-01-08 18:55:38 +00:00
postgresql81-tsearch2 Changes 8.1.6: 2007-01-08 18:55:38 +00:00
postgresql82 fix checksum mismatch onlibintl patch (patch-ao) 2007-01-13 21:26:35 +00:00
postgresql82-client Changes 8.2.1: 2007-01-08 18:16:09 +00:00
postgresql82-plperl Changes 8.2.0: 2006-12-09 16:13:57 +00:00
postgresql82-plpython Changes 8.2.0: 2006-12-09 16:13:57 +00:00
postgresql82-pltcl Changes 8.2.0: 2006-12-09 16:13:57 +00:00
postgresql82-server Changes 8.2.0: 2006-12-09 15:34:13 +00:00
postgresql82-tsearch2 PLIST fix 2007-01-08 18:22:09 +00:00
pxtools Reset maintainer, ben@ has resigned. 2006-12-15 14:34:18 +00:00
py-bdb-xml Needs Python 2.2+ 2006-06-08 12:22:17 +00:00
py-bsddb3 we can't have PYTHON_VERSIONS_ACCEPTED in buildlink3 files because 2006-08-08 16:55:18 +00:00
py-gdbm Fixed pkglint warnings. 2006-06-16 10:58:23 +00:00
py-IndexedCatalog Dependency py-ZODB only available for Python 2.2 and 2.3. 2006-05-28 14:26:34 +00:00
py-ldap Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
py-metakit Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
py-mssql Use PYTHON_VERSIONS_ACCEPTED instead of _REQD, so that the latter 2006-05-28 16:13:11 +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 py-postgressql dependency needs Python 2.2+ 2006-06-07 16:55:34 +00:00
py-PgSQL Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
py-postgresql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
py-psycopg Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
py-psycopg2 Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
py-sqlite Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
py-sqlite2 Needs Python 2.3+ 2007-01-13 00:47:56 +00:00
py-sybase Fixed pkglint warnings. 2006-06-16 10:58:23 +00:00
py-table Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
py-ZODB Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
qdbm Update qdbm and related packages to 1.8.74. 2006-11-03 06:07:43 +00:00
qdbm-cgi Import qdbm-cgi from pkgsrc-wip. Packaged by OBATA Akio. 2005-11-23 06:51:57 +00:00
qdbm-plus Update qdbm and sub packages to 1.8.72. 2006-10-19 13:59:47 +00:00
quicklist BUILD_USE_MSGFMT and USE_MSGFMT_PLURALS are obsolete. Replace with 2006-04-13 18:23:29 +00:00
rdb Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
rrdtool Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
ruby-activerecord Update ruby-activerecord to 1.14.4, which is used by Ruby on Rails 1.1.6. 2006-10-09 06:17:20 +00:00
ruby-gdbm Update ruby-gdbm package to 1.8.5.20061205: 2006-12-06 16:25:26 +00:00
ruby-mysql - Use "--with-mysql-config" option to CONFIGURE_ARGS. 2006-09-13 13:12:54 +00:00
ruby-postgresql Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +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-sqlite3 Merge (almost replace) this package with ruby-sqlite3 in pkgsrc-wip 2006-04-05 15:18:34 +00:00
ruby-vapor Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
sdbm Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
shared-mime-info Instead of setting compiler flags in each package if it uses C99, 2006-12-02 22:32:59 +00:00
slony1 Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
sqlite Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
sqlite3 update to 3.3.10 2007-01-11 19:08:48 +00:00
sqlite3-tcl update to 3.3.10 2007-01-11 19:08:48 +00:00
sqlitemanager Don't duplicate dependency information. 2006-08-21 22:08:28 +00:00
sqlrelay Fix typos: Python backend not included, since I found no easy way to 2006-04-30 16:01:21 +00:00
sqsh Make the package pass the check-headers test. The ${HOME} that appears 2006-11-10 20:04:26 +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 Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
tdb Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
tinycdb Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
unixodbc Change the format of BUILDLINK_ORDER to contain depth information as well, 2006-07-08 23:10:35 +00:00
unixodbc-DataManager Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
unixodbc-ODBCConfig Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
xsqlmenu Mechanically replace all includes of buildlink3.mk of the following 2006-12-15 20:32:52 +00:00
yasql Add an explicit run-time dependency on perl because these packages 2006-07-07 22:10:06 +00:00
zope-mysql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
Makefile +ipa_sdb 2007-01-03 17:24:17 +00:00