pkgsrc/databases
abs 30650166af Update databases/jdbc-postgresql82 to 507 from 504
Version 8.2-507 (2007-12-02)

  * fix When doing batch execution we can have multiple Parse
    and DescribeStatement messages on the wire at the same time.
    When we finally get around to collecting the DescribeStatement
    results we must check whether they still apply to the currently
    parsed query. Otherwise we'll overwrite our type information
    with stale data that will cause failures down the line. (jurka)
    Thanks to Eric Faulhaber.
  * fix CallableStatements with OUT parameters that get executed
    more than prepareThreshold times failed if clearParameters()
    was called in between executions. When we've hit the
    prepareThreshold, we no longer send Parse messages which invoke
    SimpleParameterList.getTypeOID which has side effects required
    to setup the parameters correctly. Add an explicit
    convertFunctionOutParameters method to do this work instead
    that we call in all execution paths. (jurka) Thanks to Ludovico
    Bianchini.
  * fix The driver was incorrectly parsing identifiers that had
    parts that look like dollar quotes. Things like a$b$c are valid
    identifiers, not dollar quotes. When determining if a $ we've
    found is a dollar quote start, look at the preceding character
    and see if it is a valid identifier part to determine if we're
    in the midst of an identifier or are starting a new token.
    (jurka) Thanks to Michael Paesold.
  * fix Multiple calls to XAConnection.getConnection within the
    same user transaction ended up restarting the transaction on
    the server side as a result of manipulating the autocommit
    state. When retrieving a Connection, we must pay attention to
    whether a user transaction is in progress when setting the
    autocommit state. (jurka) Thanks to Heikki Linnakangas.
  * fix Support NULL array elements. (jurka) Thanks to Christian
    Schröder.
  * fix Make code that parses queries for updateable resultsets
    aware of the ONLY clause. (jurka) Thanks to Oleg Vasylenko.
  * fix While custom type maps are not implemented, the code to
    detect the caller trying to use them threw a ClassCastException.
    Correctly detect the attempted use of custom types and bail
    out with a SQLException. (jurka)


Version 8.2-506 (2007-07-31)

  * add Make setObject recognize a parameter of type java.lang.Byte.
    (jurka) Thanks to Boom Roos.
  * update Brazilian Portuguese translation update. (jurka) Thanks
    to Euler Taveira de Oliveira.
  * update Serbian translation updates. (jurka) Thanks to Bojan
    Skaljac.
  * fix Updatable ResultSets did not work when updating bytea
    data and then retrieving it because we send the data to the
    server in binary format, but the ResultSet was expecting to
    read it in text format. So we need to convert the data from
    binary to text format before stuffing it into the ResultSet.
    (jurka) Thanks to Mikko Tiihonen.
  * fix ResultSet.updateNClob(String, Reader) goes into an infinite
    loop. It really meant to call updateNClob(int, Reader), but
    was calling itself instead. (jurka) Thanks to Mikko Tiihonen.
  * fix Do escape processing on batch Statements prior to execution.
    This already worked for PreparedStatements, but not plain
    Statements. (jurka) Thanks to Hui Ye.
  * fix Don't return quotes around identifiers in the results of
    DatabaseMetaData.getIndexInfo even if they would require quoting
    in SQL. (jurka) Thanks to Andrei Badea.
  * fix When retrieving the columns of a function that returns
    a complex type, don't retrieve system columns (like xmin/xmax/...)
    that you'll find if the type is from a table. (jurka)
  * fix The previous fix to try and set a XA based Connection's
    autocommit property correctly didn't quite work. Calling
    XAConnection.getConnection set autocommit to true even if we
    already had a transaction in progress. (jurka) Thanks to Luca
    Ferrari, Heikki Linnakangas.
  * fix Error message was reporting the wrong parameter type
    value in the V3 protocol's SimpleParameterList implementation.
    (jurka) Thanks to Nathan Keynes.
  * fix Explicitly state which source level we are compiling.
    Newer versions of gij/gcj run a 1.5 VM, but default to a 1.4
    source level compile which tricks up our build system. This
    still doens't fix the case of running with a newer VM than
    compiler, but I don't see what we can do about that. (jurka)
    Thanks to Tom Lane, Oliver Jowett.


Version 8.2-505 (2007-04-18)

  * add Initial Serbian translation. (jurka) Thanks to Bojan
    Skaljac.
  * add Implement ResultSet.updateArray by simply mapping it to
    updateObject which now works for arrays. (jurka)
  * fix Statement.getTime, .getDate, and .getTimestamp methods
    which are passed a Calendar object were rotating the timezone
    in the wrong direction. Rewrite this code to use the existing
    TimestampUtils methods to match the working code in ResultSets.
    (jurka) Thanks to Ravi Periasmy.
  * fix Produce the timezone that we send to the server in the
    same format that we can parse. This is important for updatable
    ResultSets as we must be able to parse the format we produce.
    (jurka) Thanks to Leon Do.
  * fix Make Large Object handling work when the oid counter has
    exceeded Integer.MAX_VALUE by handling oids as longs. (jurka)
  * fix Fix persistence of XA datasources. PGObjectFactory wasn't
    aware of PGXADataSource and can't be because of the requirements
    for different build versions. Add a new PGXADataSourceFactory
    to provide this functionality. (jurka) Thanks to Heikki
    Linnakangas.
  * fix Fix the error message generated by a CallableStatement
    not getting results that match the registered out parameters
    to report the correct parameter position. (jurka)
  * fix Interval formatting didn't work for negative seconds
    values greater than -1. It would format it as -.5, but interval
    input doesn't accept this, so write it as -0.5 instead. (jurka)
  * fix Change DatabaseMetaData.getSearchStringEscape to always
    return "\\" instead of "\\\\". Previously it was assuming that
    it would be fed directly into a query and it needed to escape
    itself for the backend's input parser. This doesn't work for
    things like PreparedStatement parameters or DatabaseMetaData
    methods that take patterns. (jurka) Thanks to Valery Meshkov.
  * fix Allow updatable ResultSets to update arrays. (jurka)
    Thanks to Vasylenko.
  * fix In an error message reporting an unparseable timestamp
    value the code was trying to put the unparseable portion into
    the error message, but used the wrong variable to get the
    correct length. (jurka)
  * fix Parse timezones that have offsets in seconds. 8.2 servers
    now return this information so we must be able to handle it.
    (jurka)
2008-01-07 23:04:56 +00:00
..
abook Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey 2006-04-17 07:07:11 +00:00
adodb Update to 4.96a 2007-11-25 17:53:23 +00:00
bdb-xml PKGREVISION bump for db4 shlib name change. 2007-06-08 12:24:59 +00:00
cdb Conflicts with the to-be-added-shortly tinycdb package: both install 2006-01-07 06:45:45 +00:00
cstore Initial import of cstore-0.2, a "column store" relational database, 2007-11-10 11:33:00 +00:00
db Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
db3 Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
db4 Update to 4.5.20.2: 2007-06-08 12:23:50 +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 Back out previous. Pointed out by uebayasi@ and martti@. 2007-09-25 10:03:52 +00:00
gdbm The package supports installation to DESTDIR (although it uses the 2007-08-26 15:59:24 +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 Make it easier to build and install packages "unprivileged", where 2007-07-04 20:54:31 +00:00
gnome-mime-data Update to 2.18.0, for GNOME-2.18. 2007-04-15 10:36:19 +00:00
gourmet Fix paths for GConf, libglade, libart, libsigc++, lablgtk moves. 2007-09-21 13:03:25 +00:00
gq Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
gramps Fix paths for GConf, libglade, libart, libsigc++, lablgtk moves. 2007-09-21 13:03:25 +00:00
gramps2 update to 2.2.9, from Jeremy C. Reed per PM 2007-11-01 12:52:56 +00:00
gtksql Remove dead mirror sites. From Zafer Aydogan. 2007-06-03 23:28:15 +00:00
guile-pg Add commented out LICENSE line. 2008-01-05 21:37:45 +00:00
iodbc Update iodbc to 3.52.5. 2007-01-12 17:27:20 +00:00
ipa_sdb Should build only shared libraries, pointed out in PR 34860. 2007-01-22 13:10:41 +00:00
java-db3 Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
java-qdbm Update qdbm to 1.8.76. 2007-10-16 14:06:35 +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 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
jdbc-postgresql81 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
jdbc-postgresql82 Update databases/jdbc-postgresql82 to 507 from 504 2008-01-07 23:04:56 +00:00
kmysqladmin Bump PKGREVISION because openexr now depends on ilmbase. 2007-11-30 21:55:01 +00:00
krecipes Bump PKGREVISION because openexr now depends on ilmbase. 2007-11-30 21:55:01 +00:00
lbdb Update databases/lbdb to 0.35.1 2007-06-10 21:12:51 +00:00
ldapvi Full DESTDIR support. 2008-01-04 12:18:27 +00:00
libgda fix PRINT_PLIST_AWK for future print-PLISTs 2007-08-09 19:07:38 +00:00
libgda-mysql Update libgda to 3.0.1 2007-08-04 11:13:37 +00:00
libgda-postgres Update libgda to 3.0.1 2007-08-04 11:13:37 +00:00
libgnomedb libglade2 -> libglade (comment). 2007-10-07 07:39:52 +00:00
libpqxx Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
libpqxx-doc Fixed the deprecated share/doc/html. PKGREVISION++ 2007-02-15 15:36:04 +00:00
lua-sqlite Added documentation. PKGREVISION++ 2007-06-04 07:37:58 +00:00
luma Changes 2.3: 2007-12-16 15:07:18 +00:00
mergeant Fix paths for GConf, libglade, libart, libsigc++, lablgtk moves. 2007-09-21 13:03:25 +00:00
metakit-lib Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
myodbc *BSD dosen't have strndup. 2007-01-14 14:37:44 +00:00
mysql4-client Fix abusers of LOWER_OPSYS to check OPSYS or MACHINE_PLATFORM instead. 2007-10-16 23:48:58 +00:00
mysql4-server Fix for CVE-2007-2691 2007-06-14 21:27:41 +00:00
mysql5-client Remove directory "share/doc/mysql" during deinstallation. Problem noted 2007-12-17 16:30:29 +00:00
mysql5-server Update "mysql5-client" and "mysql5-server" packages to version 5.0.51. 2007-12-14 13:36:52 +00:00
mysqlcc Added "c" to USE_LANGUAGES for packages that use GNU configure scripts, 2006-07-22 04:46:13 +00:00
mytop Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
nss_ldap correctly use shadowLastChange as _days_ since the epoch, from Edgar Fuss 2007-08-10 17:14:40 +00:00
ocaml-mysql Fixed "test ==". 2006-10-14 01:55:03 +00:00
odbc-postgresql Made the code a bit shorter. 2007-02-15 15:45:07 +00:00
openldap Summarize settings with META_PACKAGE=yes (thanks rillig). 2008-01-05 18:03:43 +00:00
openldap-client DESTDIR support for openldap. 2008-01-04 11:42:29 +00:00
openldap-doc DESTDIR support for openldap. 2008-01-04 11:42:29 +00:00
openldap-server DESTDIR support for openldap. 2008-01-04 11:42:29 +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 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-BerkeleyDB Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-DBI Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Class-DBI-AbstractSearch Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Data-Table Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DB_File Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DB_File-Lock Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBD-CSV Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBD-Google Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBD-mysql Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBD-Oracle Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBD-PgPP Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBD-postgresql Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBD-SQLite 1.14 2007-10-29 21:53:25 +00:00
p5-DBD-SQLite2 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBD-Sybase Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBD-XBase Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBI Update to 1.601 2007-11-11 00:58:26 +00:00
p5-DBI-Shell Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBIWrapper Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBIx-Abstract Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBIx-ContextualFetch Update p5-DBIx-ContextualFetch to 1.03. 2007-11-09 02:54:31 +00:00
p5-DBIx-Datasource Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBIx-DBSchema Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBIx-Schema Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-DBIx-SearchBuilder Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-gdbm Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Ima-DBI Update p5-Ima-DBI to 0.35. 2007-11-12 22:37:12 +00:00
p5-MARC Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-MLDBM Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-MLDBM-Sync Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Net-MySQL Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Palm Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-perl-ldap Changes 0.34: 2007-11-02 11:54:57 +00:00
p5-postgresql Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-qdbm Need perl to build. 2007-12-10 01:24:25 +00:00
p5-Rose-DB Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Rose-DB-Object Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-SQL-Abstract Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-SQL-ReservedWords Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-SQL-Statement Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-sybperl Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
palm-db-tools Patch a few bugs: 2007-10-21 03:53:45 +00:00
pear-DB Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
pgadmin3 Mark this officially as broken for now. See PR 30997 for further 2007-01-02 16:49:34 +00:00
pgpool Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
pgtcl Change PostgreSQL default version to 8.1 and bump revision of all 2006-12-28 12:12:57 +00:00
pgtclng ERROR: patches/patch-ab:45: This code must not be included in patches. 2008-01-05 21:01:37 +00:00
php-dba Enable or optionify some handlers, should fixes PR 37255. 2007-11-23 12:34:29 +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 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +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-oci8 Initial import of php-oci8. 2007-12-04 00:31:41 +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-oracle Initial import of php-oracle. 2007-03-11 16:46:17 +00:00
php-pdo allow this package to build properly on Mac OS X as shared extension 2007-09-04 23:21:27 +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 Reset the PKGREVISION in packages that use the version string from php4 or php5 2007-05-08 11:30:49 +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 Reset the PKGREVISION in packages that use the version string from php4 or php5 2007-05-08 11:30:49 +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 Dick Davies can no longer maintain those packages. (by private mail) 2007-10-03 14:45:41 +00:00
phpmyadmin Improve handling of configuration files and don't create obsolete "css" 2007-11-27 23:02:43 +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.15: 2008-01-07 20:14:09 +00:00
postgresql80-client Changes 8.0.15: 2008-01-07 20:14:09 +00:00
postgresql80-plperl perl is also needed as tool now. 2007-12-22 00:06:37 +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.15: 2008-01-07 20:14:09 +00:00
postgresql81 Changes 8.1.11: 2008-01-07 20:14:23 +00:00
postgresql81-client Changes 8.1.11: 2008-01-07 20:14:23 +00:00
postgresql81-plperl perl is also needed as tool now. 2007-12-22 00:06:37 +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.11: 2008-01-07 20:14:23 +00:00
postgresql81-tsearch2 Changes 8.1.6: 2007-01-08 18:55:38 +00:00
postgresql82 Changes 8.2.6: 2008-01-07 20:14:35 +00:00
postgresql82-adminpack Fix name of adminpack loadable shared module. 2007-09-20 21:58:21 +00:00
postgresql82-client Changes 8.2.6: 2008-01-07 20:14:35 +00:00
postgresql82-plperl perl is also needed as tool now. 2007-12-22 00:06:37 +00:00
postgresql82-plpython Changes 8.2.2: 2007-02-05 11:10:02 +00:00
postgresql82-pltcl Changes 8.2.2: 2007-02-05 11:10:02 +00:00
postgresql82-server Changes 8.2.6: 2008-01-07 20:14:35 +00:00
postgresql82-tsearch2 Changes 8.2.6: 2008-01-07 20:14:35 +00:00
pxtools Reset maintainer, ben@ has resigned. 2006-12-15 14:34:18 +00:00
py-bdb-xml Fix build after db4 update, following a hint by obache@ 2007-06-15 23:43:14 +00:00
py-bsddb3 Supports DESTDIR. 2007-10-24 14:39:59 +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 Changes 2.3.0: 2007-12-16 15:34:14 +00:00
py-metakit Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
py-mssql Update py-mssql to 0.8.0. 2007-06-15 16:08:39 +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 pkglint -Wall 2008-01-06 03:38:36 +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 pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
py-sqlite Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 20:46:42 +00:00
py-sqlite2 The self-test requires the package to be installed, and this is not the 2007-11-19 23:10:18 +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 to 1.8.77. 2007-11-16 11:50:45 +00:00
qdbm-cgi Change my mail address to @NetBSD.org. 2007-04-01 01:58:36 +00:00
qdbm-plus Update qdbm to 1.8.76. 2007-10-16 14:06:35 +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 Replace my patch-aa with patch-aa and patch-ab received from the author. 2007-11-21 07:50:14 +00:00
ruby-activerecord Update ruby-activerecord to 1.15.5. 2007-10-16 03:05:38 +00:00
ruby-gdbm Updating Ruby to 1.8.6; ruby18-gdbm 2007-03-15 16:42:06 +00:00
ruby-mysql Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
ruby-postgresql Remove Ex-MASTER_SITE. From Zafer Aydogan. 2007-12-02 11:58:26 +00:00
ruby-qdbm Change my mail address to @NetBSD.org. 2007-04-01 01:58:36 +00:00
ruby-sqlite3 Update ruby-sqlite3 to 1.2.1. 2007-04-01 09:10:34 +00:00
ruby-vapor Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
sdbm Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
shared-mime-info If the fake update-mime-database is invoked with just "-v" let it report 2007-12-06 11:38:26 +00:00
slony1 Update Slony-1 to 1.2.9 version. 2007-04-10 21:59:02 +00:00
sqlite Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
sqlite3 The new thread-safe feature doesn't really work: The py-sqlite2 2007-11-15 14:11:53 +00:00
sqlite3-tcl update to 3.3.10 2007-01-11 19:08:48 +00:00
sqlitemanager Make it easier to build and install packages "unprivileged", where 2007-07-04 20:54:31 +00:00
sqlrelay Use RCD_SCRIPT_SRC instead of copying by hand. 2007-08-30 16:44:59 +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 Modular Xorg support. 2007-01-30 22:38:10 +00:00
tcl-fbsql Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +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 Update to 0.76. From the changelog: 2007-01-18 22:46:12 +00:00
unixodbc Some packages need lex and yacc. Patch by Aleksey Cheusov via 2007-11-17 12:04:11 +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
yap2lc Import new "yap2lc" package: Yet Another Passwd 2 LDIF Converter 2007-08-22 17:32:07 +00:00
yasql Add an explicit run-time dependency on perl because these packages 2006-07-07 22:10:06 +00:00
Makefile +php-oci8 2007-12-04 00:35:28 +00:00