summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2005-04-26update to 1.0.11drochner2-6/+6
changes: minor bugfixes, translation updates
2005-04-26Remove 30 from MYSQL_VERSIONS_ACCEPTED, since mysql3 packages have been removed.wiz1-2/+2
2005-04-22Removed mysql3-{client,server} -- obsoleted by mysql-* and mysql4-*wiz23-803/+1
packages, and the original authors have stopped its maintenance. Thus, there are various vulnerabilities in them now.
2005-04-18needs sqlite3 nowdrochner1-3/+3
2005-04-18update to 1.2.1drochner8-20/+22
changes: bugfixes
2005-04-17Include converters/libiconv/buildlink3.mk to make this pkg buildkristerw1-1/+2
on NetBSD 1.6.
2005-04-16Upgrade to 1.08:kim2-6/+6
- Support 64 bit integers (uses floating point numbers when perl is not compiled with 64 bit int support). This also fixes issues with using sqlite timestamps. - Upgrade to sqlite 3.1.3 - Fix issues of not finding rows when providing a number that perl sees as a string. - Fixes for most current bugs in RT (see http://rt.cpan.org/ to check if your favourite bug got fixed).
2005-04-15Add conflicts between samba and tdb: both install tdbtool and tdbdump.wiz1-1/+4
2005-04-14Update to 3.2.1xtraeme3-9/+7
2005 March 29 (3.2.1) * Fix a memory allocation error in the new ADD COLUMN comment. * Documentation updates 2005 March 21 (3.2.0) * Added support for ALTER TABLE ADD COLUMN. * Added support for the "T" separator in ISO-8601 date/time strings. * Improved support for Cygwin. * Numerous bug fixes and documentation updates. 2005 March 16 (3.1.6) * Fix a bug that could cause database corruption when inserting record into tables with around 125 columns. * sqlite3_step() is now much more likely to invoke the busy handler and less likely to return SQLITE_BUSY. * Fix memory leaks that used to occur after a malloc() failure. 2005 March 11 (3.1.5) * The ioctl on OS-X to control syncing to disk is F_FULLFSYNC, not F_FULLSYNC. The previous release had it wrong. 2005 March 10 (3.1.4) * Fix a bug in autovacuum that could cause database corruption if a CREATE UNIQUE INDEX fails because of a constraint violation. This problem only occurs if the new autovacuum feature introduced in version 3.1 is turned on. * The F_FULLSYNC ioctl (currently only supported on OS-X) is disabled if the synchronous pragma is set to something other than "full". * Add additional forward compatibility to the future version 3.2 database file format. * Fix a bug in WHERE clauses of the form (rowid<'2') * New SQLITE_OMIT_... compile-time options added * Updates to the man page * Remove the use of strcasecmp() from the shell * Windows DLL exports symbols Tclsqlite_Init and Sqlite_Init
2005-04-13fix PLIST for NetBSD - should be handled automatically for other systemsabs1-9/+9
2005-04-13Replace share/postgresql80/timezone/Australia/${OPSYS}abs1-2/+2
with share/postgresql80/timezone/Australia/Darwin to fix non MacOS X machines. overenthusiastic search & replace?
2005-04-12- Update HOMEPAGE.taca1-3/+5
- Add a few sites to MASTER_SITES.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv140-280/+140
2005-04-11Remove postgresql80-lib and postgresql80-docs.kristerw1-3/+1
2005-04-11postgresql80-docs has been merged into the client package.recht3-681/+0
(Forgot to remove this in the previous commit.)
2005-04-11update to PostgreSQL 8.0.2recht17-1393/+1936
While at it do some structual changes to packages and merge the lib and docs package has been merged into the client package. Also enable Rendezvous support on Darwin. Changes * Increment the major version number of all interface libraries (Bruce) This should have been done in 8.0.0. It is required so 7.4.X versions of PostgreSQL client applications, like psql, can be used on the same machine as 8.0.X applications. This might require re-linking user applications that use these libraries. * Add Windows-only wal_sync_method setting of "fsync_writethrough" (Magnus, Bruce) This setting causes PostgreSQL to write through any disk-drive write cache when writing to WAL. This behavior was formerly called "fsync", but was renamed because it acts quite differently from "fsync" on other platforms. * Enable the wal_sync_method setting of "open_datasync" on Windows, and make it the default for that platform (Magnus, Bruce) Because the default is no longer "fsync_writethrough", data loss is possible during a power failure if the disk drive has write caching enabled. To turn off the write cache on Windows, from the Device Manager, choose the drive properties, then Policies. * New cache management algorithm 2Q replaces ARC (Tom) This was done to avoid a pending US patent on ARC. The 2Q code might be a few percentage points slower than ARC for some work loads. A better cache management algorithm will appear in 8.1. * Planner adjustments to improve behavior on freshly-created tables (Tom) * Allow plpgsql to assign to an element of an array that is initially NULL (Tom) Formerly the array would remain NULL, but now it becomes a single-element array. The main SQL engine was changed to handle "UPDATE" of a null array value this way in 8.0, but the similar case in plpgsql was overlooked. * Convert \r\n and \r to \n in plpython function bodies (Michael Fuhr) This prevents syntax errors when plpython code is written on a Windows or Mac client. * Allow SPI cursors to handle utility commands that return rows, such as "EXPLAIN" (Tom) * Fix "CLUSTER" failure after "ALTER TABLE SET WITHOUT OIDS" (Tom) * Reduce memory usage of "ALTER TABLE ADD COLUMN" (Neil) * Fix "ALTER LANGUAGE RENAME" (Tom) * Document the Windows-only register and unregister options of pg_ctl (Magnus) * Ensure operations done during backend shutdown are counted by statistics collector This is expected to resolve reports of pg_autovacuum not vacuuming the system catalogs often enough -- it was not being told about catalog deletions caused by temporary table removal during backend exit. * Change the Windows default for configuration parameter log_destination to "eventlog" (Magnus) By default, a server running on Windows will now send log output to the Windows event logger rather than standard error. * Make Kerberos authentication work on Windows (Magnus) * Allow "ALTER DATABASE RENAME" by superusers who aren't flagged as having CREATEDB privilege (Tom) * Modify WAL log entries for "CREATE" and "DROP DATABASE" to not specify absolute paths (Tom) This allows point-in-time recovery on a different machine with possibly different database location. Note that "CREATE TABLESPACE" still poses a hazard in such situations. * Fix crash from a backend exiting with an open transaction that created a table and opened a cursor on it (Tom) * Fix array_map() so it can call PL functions (Tom) * Several "contrib/tsearch2" and "contrib/btree_gist" fixes (Teodor) * Fix crash of some "contrib/pgcrypto" functions on some platforms (Marko Kreen) * Fix "contrib/intagg" for 64-bit platforms (Tom) * Fix ecpg bugs in parsing of "CREATE" statement (Michael) * Work around gcc bug on powerpc and amd64 causing problems in ecpg (Christof Petig) * Do not use locale-aware versions of upper(), lower(), and initcap() when the locale is C (Bruce) This allows these functions to work on platforms that generate errors for non-7-bit data when the locale is C. * Fix quote_ident() to quote names that match keywords (Tom) * Fix to_date() to behave reasonably when CC and YY fields are both used (Karel) * Prevent to_char(interval) from failing when given a zero-month interval (Tom) * Fix wrong week returned by date_trunc('week') (Bruce) date_trunc('week') returned the wrong year for the first few days of January in some years. * Use the correct default mask length for class D addresses in INET data types (Tom)
2005-04-10Add and enable ruby-activerecord.minskim1-1/+2
2005-04-10Import ruby-activerecord.minskim5-0/+95
Active Record connects business objects and database tables to create a persistable domain model where logic and data is presented in one wrapping. It is an implementation of the object-relational mapping (ORM) pattern by the same name as described by Martin Fowler: "An object that wraps a row in a database table or view, encapsulates the database access, and adds domain logic on that data." Active Records main contribution to the pattern is to relieve the original of two stunting problems: lack of associations and inheritance. By adding a simple domain language-like set of macros to describe the former and integrating the Single Table Inheritance pattern for the latter, Active Record narrows the gap of functionality between the data mapper and active record approach.
2005-04-08These have been folded into the main sources.jwise2-157/+0
2005-04-08Missed commit on update to 1.41.jwise1-6/+4
2005-04-08Update to version 1.41. Changes since 1.22 (the last pkgsrc version):jwise1-3/+2
1.41 - ('Greg' is Greg Sabino Mullane, greg@turnstep.com) - Make sure tests remove all temporary tables. [Frank Bax] - Preserve sqlstate if rolling back on deallocate, fix potential segfault. [Stephen Clouse] - Fix CPAN bug #12004: commit and rollback now return true [Greg] (thanks to ivan-dbdpg@420.am) - Overhaul and update COPY support; use new protocol. New dbh methods: pg_putline, pg_getline, pg_endcopy. [Greg] - Rewrote version detection code. Compiled version and target version are now available via $dbh->{pg_lib_version} and $dbh->{pg_server_version} [Greg] - Set our default type_id to 0, not 1043 (VARCHAR) when possible. Suggested by Abhijit Menon-Sen via David Wheeler. [Greg] - Add $dbh methods pg_savepoint(), pg_rollback_to(), and pg_release() [Stephen Clouse] [Greg] 1.40 Tue Feb 22 06:06:45 UTC 2005 - Raise required DBI version to 1.38 - Execute returns 0 (0E0) not -1 for successful DDL commands. [Robert Treat] - Change all string lengths to use STRLEN [rink@stack.nl] - Added $dbh->pg_server_trace($fh) [Greg Sabino Mullane] - Added $dbh->{pg_errorlevel}. [Greg Sabino Mullane] - Fix utf8 quote() support [Dominic Mitchell <dom@semantico.com>] - Added explicit support for types SQL_BOOLEAN, DATE, TIME, TIMESTAMP, and TIMESTAMPTZ. Return correct values for DATEOID and TIMEOID. [Greg Sabino Mullane] - Added tablespace support for table_info and primary_key_info. [Greg Sabino Mullane] - Added new attributes to $dbh: pg_db, pg_user, pg_pass, pg_host, pg_port, pg_options, pg_socket, pg_pid [Greg Sabino Mullane] - Minor fixes in quote.c, dbdimp.c, and types.h [Christophe Martin: schplurtz at free.fr] - Added support for SQLSTATE via $dbh->state and $sth->state [Greg Sabino Mullane] - Major overhaul of prepare/execute to handle new server-side prepare system. See Pg.pm for details. [Greg Sabino Mullane] - Make the tests honor the DBD_SCHEMA variable instead of assuming that the "public" schema is available. [Rainer Weikusat] - dbdimp.c cleanups: better error messages, ensure commit is only called once after a transaction fails. [Alexey Slynko] - primary_key() returns empty list not undef if no match. [Julian Mehnle] - Added the pg_protocol database handle attribute [Greg Sabino Mullane] - Changed "noprefix" to pg_noprefix 1.32 Wed Feb 25 18:24:18 UTC 2004 - Bugfix for memory allocation problems on win systems [Rafael Kitover <caelum@debian.org>] - Rewrote the foreign_key_info() method to handle multi-column keys. [Greg Sabino Mullane] - Rewrote the primary_key_info() and primary_key() methods to cleanly handle multi-column primary keys. Also added a "pg_onerow" attribute to allow primary_key_info() to return a single row containing multiple-column information. [Greg Sabino Mullane] - Switched commit behavior from commit->execute->begin to begin->execute->commit [xelah-junk@xelah.com] - Made the _pg_use_catalog subroutine use {private_dbgpg}. (CPAN bug #4841) [Greg Sabino Mullane] - Changed strdup to safemalloc/strcpy in dbdimp.c (CPAN bug #4578) [anonymous CPAN user] - Made the data_sources method escape the database names as needed. Added support for databases with spaces in their names. [Greg Sabino Mullane] - Added the "noprefix" attribute to prevent the tables() method from prepending the schema name. [Greg Sabino Mullane] - Rewrote the testing suite. Many more tests are performed. Servers with a low client_min_messages are handled correctly. [Greg Sabino Mullane] - Fixed bug causing '$\d' to be picked up as a placeholder. (CPAN bug #4799) [Greg Sabino Mullane] - pg_notifies now catches and reports when PQconsumeInput fails. (CPAN bug #4027) [nmueller@cs.wisc.edu] - Enabled the "pg_bool_tf" database handle [Greg Sabino Mullane] - Added required fields to the type_info() method: SQL_DATA_TYPE, SQL_DATETIME_SUB, and INTERVAL PRECISION [Greg Sabino Mullane] - Fixed bug where the table_attributes() method was incorrectly removing the NULLABLE column. [Greg Sabino Mullane] - Fixed bug where case was not being preserved by the foreign_key_info() method [Greg Sabino Mullane] - a fetch on any column that had a type that did not have an entry in the type_info array would segfault DBD::Pg. (CPAN bugs #4818,4432) [Rudy Lippan] - Duplicate rows bug with column_info() REMARKS has been fixed. However, support for Postgres 7.1.x which worked briefly for 1.31 has now been dropped for this feature. (Mark Stosberg) - Bumped required Perl version to 5.6.1 in Makefile.PL. We were already already requiring 5.6.1 for Pg.pm since 1.31. - Removed extra "return" statement in quote.c to make Solaris happy (CPAN bug #4419) [Rudy Lippan] - Changed get_info(29) to return (") instead of (\") (CPAN bug #4829) [Greg Sabino Mullane] 1.31 Mon Nov 17 21:21:21 UTC 2003 - $dbh->{TYPE} now returns SQL_TYPE_TIMESTAMP instead of 1114 for timestamp columns. (In 1.31_x {x| x<8} $sth->{TYPE} returned 0 but reported by ["Hirche, Joachim" <Joachim.Hirche@cimconcepts.com>]). - Raised required versions to Perl 5.6.1 and DBI 1.35 - Fix syntax error related to pg_server_version (CPAN bugs #2492,2755,3121) - Cache multiple calls to pg_server_version. - Notice messages generated by the database now use the perl warning mechanism instead of going to stderr. [Dominic Mitchell <dom@semantico.com>] - $dbh->prepare() rewrites the SQL statement into an internal form, striping out comments and whitespace, and if PostgreSQL > 7.3 takes the stripped statement and passes that to Postgres' PREPARE statement, then rewrites the statement as 'EXECUTE "DBD::PG::cached_query n" ($1, $2, ... $n, $n+1)' for DBD::Pg's execute. -- Currently disabled until PREPARE works a little better - Allows the use of :n and :foo bind params. So: (SELECT * FROM foo WHERE 1 = :this and 2 = :that) will now work. - Complains on execute when unbound bind params are submitted (instead of defaulting to NULL) - Switched over to use driver.xst. - pg_error() removes \n's rather than truncating the message on the first \n. - Fixed statement scan problem where the preparse of "SELECT foo[3:33] from bar" was scanning :33 as a placeholder - Moved the quoting of bind values out of execute() and into bind -- as there is no need to requote the value every time execute is called. - :veryverylongplaceholdername == Long walk, short pier -- fixed. - quote() is now in C and uses same code as bind_param. - Quoting and dequoting now use libpq quoting functions where available (I still need to take the libpq functions swiped out of quote.c and move it into libpqswip.c with license info &c., and switch ifndefs to ifdefs) - bind_param() will convert from 1,0 to TRUE/FALSE when pg_type is PGBOOLOID. - Fixed many heap buffer overruns. - Added support for the get_info() method [Greg Sabino Mullane] - Added tests for POD validation [Mark Stosberg] - Several improvements to column_info, including: - Fixed column_info so NULLABLE field shows correctly. [kevin@sysexperts.com] - REMARKS field works now [Mark Stosberg] - COLUMN_DEF fixed - COLUMN_SIZE fixed - pg_constraint column added to display column constraints - additional documentation and tests added - make test is now more intelligent and will bail out early if db connection fails. [Greg Sabino Mullane]
2005-04-06Changes 1.0.24:adam4-24/+13
* Correct a typo which turns a C comment into a C++ comment
2005-04-06Update mysql4-{client,server} to 4.1.11 (Released 1 April 2005)xtraeme5-19/+44
Lots of bugfixes and new functionality was added, more info: http://dev.mysql.com/doc/mysql/en/news-4-1-11.html
2005-04-05Sort.wiz1-121/+121
2005-04-05Convert to bl3, untested.wiz1-3/+2
2005-04-05Add buildlink3 file.wiz1-0/+18
2005-04-04Update "phpmyadmin" to version 2.6.2rc1. Changes sinc version 2.6.1pl2:tron3-11/+38
- MySQL 4.1.x native column comments - MySQL 5.0: Basic detection mechanism for views: o Views are no longer displayed as tables in use o Ability to drop views - MySQL 5.0: Interface fixes and hardcoded virtual relations for information_schema - MySQL 4.1: Better automatic detection for available storage engines - New storage engines overview page o Plugin-like infrastructure for storage engine status monitors o Overview of startup variables and current values o MySQL 5.0 / InnoDB: Buffer pool activity monitor - MySQL 4.1.2+ TIMESTAMP options - Export: Native Microsoft Word 2000 and Excel 2000 formats - PDF schema visual editor: column names now optional - MySQL 5.0.3 new Japanese charsets support (cp932, eucjpms) - Parser: added missing date and time MySQL functions - Documentation: explain all Export options handling - Cookie paths: added / to end of path - Show database comments at more places - Better use of print styles in themes - Bookmarks: sort by label, remove the number before each label - Better protection against possible collation conflicts and out-of-sync errors in PMADB queries - Relation view: removed pmadb-style comments handling (now available just on the Structure page) - FAQ about using HTTP authentication under IIS - New editions for some language files (especially ISO-8859-15) - English messages improvements - Detection of SELECT query to display on multiple submits - PDF schema: missing header - A failed connection was not properly detected - Problem with Japanese language under MySQL 4.1.x - Export o Various errors under mysqli extension o SQL format under Safari browser o Do not offer export modes not available in current MySQL version - Changing the type of a FLOAT unsigned column - Adding field with collation - Calendar popup and TIMESTAMP field under MySQL 4.1.x - PHP 4.1.x: wrong parameter count (mcrypt.lib.php) - Problem when SHOW DATABASES is disabled - Copy table: commands out of sync - User management o Host not changing with editing user o Escaping character removed by error - MySQL 5.0.x: "No database selected" error - Print view: displaying of indexes - Cookie auth: error when blowfish_secret is empty - MySQL 4.1.2: "Reload MySQL" link not seen - MySQL 5 server binlog compatibility - PDF pages generation: wrong documentation - Inserted row id was not always correctly reported - Do not offer unavailable collations - XSS vulnerability on "convcharset" [PMASA-2005-3] - Do not allow to drop information_schema - Undefined offset (on the left panel) - Problem copying InnoDB table with foreign-key constraints to a table in the same database
2005-04-04Remove specifying the version posrgresql since now it configured withtaca1-4/+2
any version of postgresql in current pkgsrc. Bump PKGREVISION.
2005-04-03Update to 0.11mjl2-7/+7
* added support for CREATE TABLE AS SELECT ... and CREATE TABLE AS IMPORT() * added support for in-memory tables and heterogeneous operations * added many new built-in functions see SQL::Statement::Functions.pm * added support for user-defined functions, see SQL::Statement::Functions.pm * added support for column name aliases * added support for comparison to empty string (e.g. WHERE col1='') currently returns the same as WHERE col1 IS NULL * clean up a number of bugs in parentheses parsing and in the predicates IN and BETWEEN as well as speed things up considerably * fixed function detection regex in SQL::Parser::ROW_VALUE to accomodate arbitrary spacing * support concat operator '||' expressions * added following functions to SQL::Statement::Functions: - COALESCE/NVL - DECODE (same as Oracle DECODE) - CONCAT - REPLACE/SUBSTITUTE * fixed/adapted SQL::Statement::get_row_value(), SQL::Statement::SELECT(), for join'ed resultsets * fixed infinite recursion bug with empty IN() predicate * fixed case issues with table aliases in joins * column and table name hashes now default to case sensitive * where() method now supported as per the docs
2005-03-30Fix typo.wiz1-2/+2
2005-03-30Switch from DEPENDS to buildlink3.mk.darcy1-2/+2
2005-03-29Update to 0.16:wiz3-9/+23
shared-mime-info 0.16 (2004-03-22) * Mime Types Changes: - Added application/mathematica - Added application/stuffit - Fixed application/vnd.lotus-1-2-3 and other office types - Added application/vnd.oasis.opendocument - Even more types now inherit from text/plain - Added text/x-gettext-translation - Fixed up text/x-python * Lots of new translations: - bg eo es eu it ja ms nb pl pt pt_BR ru sq uk zh_CN
2005-03-26Disable the odbc module to fix the build on OS X.recht1-1/+3
The odbc module shouldn't be built here anyway. (And looks like it wasn't intended to.)
2005-03-26Update to version 0.9.5.seb4-13/+221
Fix pkglint warnings about whitespace in MESSAGE. Use pax -s instead of rming unwanted files. Changes since last packaged version (0.9.4b) * Version 0.9.5, 2004-12-17 * Notes: This version adds substantial new features and several minor bug fixes as well as PHP5 support! * Changes: - Added PHP5 support using Zend1 compatibility options. - Users can now specify a format string for custom display of DNs in the tree viewer (see $tree_display_format in config.php.example) - If using http auth_type, DNs and passwords are now encrypted int he cookie using blowfish. - If base entry is missing, phpLDAPadmin will prompt you to create it and give you some sane default values to get started. - Added index file for viewing of all PLA icons (see phpldapadmin/images/index.php) - Added custom country flag icons for DNs in the form "c=us" - Added more custom icons (ipNetwork, Device, Room) - Made it easier to create the base entry of an empty tree. - Fixed bug related to predefined search queries with patch from Olivier Mounier - Added a template for mozillaOrgPerson - Improved error handling for non-existent or unreadable template files. - "Create new" now displays at the top *and* bottom of the tree viewer list if there are more than 10 entries in the container (make it easier for users by reducing scrolling) - Optimized several pages by closing the session early if not needed. - By request, reversed the order of first name / last name in the inetOrgPerson template. - Added a login_string feature for admins who have all their users in a single container, so they can specify a string like "uid=,ou=People,dc=example,dc=com" instead of setting up the painful login_attr stuff. - Changed the delete button to be red (like phpMyAdmin) to make it more obvious. - Consolidated the links at the top of the tree viewer to make better use of real estate. - New logo! - Patch from Dimitre to fix unique attrs enforcement. - Templates can now redirect wherever they want using a hidden form input. - Added a "Home" button in the tree viewer to get back to the main PLA page if desired. - PLA now looks up the gidNumber to display group description and name in user accounst. - Improved the hint about structural objectClasses in the custom creation template - Added ability to purge caches (mostly just schema objects) and caches are auto-purged when the schema is viewed in the schema browser. - Changed the arrow icon next to objectClass values to be an information button. - Search results can be displayed in table format now. - Fixes to LDIF import. - Added support for exporting to VCard 2.1 format. - Lots of little session fixes. - Structural objectClasses are now shown in bold in the custom creation template. - Fixed lots of bugs, some big some minor: 1025353 1037715 1029103 1026427 1025353 1020606 1020376 1010576 1009410 1007281 1007132 1004042 1002794 1001941 1000185 999605 999170 996842 995362 995297 995296 994343 993875 992419 991891 989219 984587 983375 981283 979395 977598 974369 973520 973323 965165 964410 962074 959950 958372 957284 954453
2005-03-25Add and enable lbdbkim1-1/+2
2005-03-25Import lbdb-0.29 from Antoine Reilles, heavily modified by me.kim5-0/+116
2005-03-24Don't check for USE_BUILDLINK3 anymore in these files. These are includedjlam1-5/+3
by other package Makefiles, and with the deprecation of USE_BUILDLINK3 support in the infrastructure files, these had the potential to break existing packages.
2005-03-24Update to 1.22.cube2-8/+7
1.22 Mon Jan 24 07:42:46 EST 2005 - Require encode since we require encode. 1.21 - Oracle LOB handling caused us to corrupt item values on update. - Just before inserting things into the database, turn off their utf8 flag. The flag didn't have any positve impact _and_ it can take down recent DBD::Oracle releases. (This is a new failure in DBD::Oracle 1.16) 1.20 Tue Jan 18 08:24:15 EST 2005 - Minor test suite fixes from Ruslan. 1.19 Sat Jan 8 18:22:59 EST 2005 - Performing a search multiple times could result in multiple copies of records in a collection. Uncovered thanks to Kevin Chen and Alex Vandiver. 1.18 - Release the changes from 1.17 1.17_03 - Properly mark BLOB columns in UPDATE calls. (DBD::Oracle 1.16 broke without this) 1.17_02 - Better handling of empty values for SB::Record::_Accessible. ( --Ruslan) 1.17_01 - More record tests from Ruz 1.16 Thu Dec 9 23:49:39 EST 2004 - Fixed a bug in D::SB::R::Cachable that could cause it to load the wrong row from the cache if you were loading by alternate keys and had since changed one of the attributes of a previous row. This was unmasked by a bug that Ruslan Zakirov found in RT 3.3's custom field handling
2005-03-23Add and enable sqlite3-tcl.jmmv1-1/+2
2005-03-23Initial import of sqlite3-tcl, version 3.1.3:jmmv3-0/+32
SQLite is a C library that implements an SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library. SQLite is not a client library used to connect to a big database server. SQLite is the server. The SQLite library reads and writes directly to and from the database files on disk. This package provides the TCL bindings for the SQLite C library.
2005-03-23Remove the 'tcl' option and split the Makefile in two parts to aid in thejmmv4-37/+26
addition of the new sqlite3-tcl package. The TCL bindings can be easily built and installed independently, so it's better to have an standalone package rather than a build-time option. While here, fix PKGCONFIG_OVERRIDE and bump PKGREVISION to 2.
2005-03-23Whitespace.schmonz1-9/+9
2005-03-23Take advantage of mk/djbware.mk.schmonz1-12/+3
2005-03-19bump PKGREVISION for previous patch against CAN-2005-0247jschauma1-2/+2
2005-03-18PostgreSQL doesn't provide *.la files that include the libraryjlam3-3/+11
dependencies needed when linking PostgreSQL clients with -lpq. Define a BUILDLINK_LDADD.${PGSQL_TYPE} variable that lists the full set libraries that would be needed to link with -lpq.
2005-03-18Remove nonsensical comment.jlam1-2/+2
2005-03-17Backport patch fromjschauma2-1/+87
http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpgsql/src/gram.y.diff?r1=1.64.4.1&r2=1.64.4.2 to fix CAN-2005-0247 for postgresql74 Bump PKGREVISION on postgresql74-lib
2005-03-17Backport patch from ↵jschauma3-3/+64
http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpgsql/src/gram.y.diff?r1=1.64.4.1&r2=1.64.4.2 to fix CAN-2005-0247 for postgresql73 Bump PKGREVISION on postgresql73-lib
2005-03-17bump PKGREVISION for security patchjschauma1-2/+2
2005-03-17pull in the patch from ↵jschauma2-1/+72
http://archives.postgresql.org/pgsql-committers/2005-02/msg00049.php which should fix CAN-2005-0247