summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2006-02-21Update PostgreSQL 7.4.x to 7.4.12. Take maintainership.joerg14-61/+39
The fix for locales and plperl in 7.4.11 might make an REINDEX necessary. Changes from 7.4.8 to 7.4.9: - Fix error that allowed VACUUM to remove ctid chains too soon, and add more checking in code that follows ctid links - Fix CHAR() to properly pad spaces to the specified length when using a multiple-byte character set (Yoshiyuki Asaba) - Fix the sense of the test for read-only transaction in COPY - Fix planning problem with outer-join ON clauses that reference only the inner-side relation - Further fixes for x FULL JOIN y ON true corner cases - Make array_in and array_recv more paranoid about validating their OID parameter - Fix missing rows in queries like UPDATE a=... WHERE a... with GiST index on column a - Improve robustness of datetime parsing - Improve checking for partially-written WAL pages - Improve robustness of signal handling when SSL is enabled - Don't try to open more than max_files_per_process files during postmaster startup - Various memory leakage fixes - Various portability improvements - Fix PL/PgSQL to handle var := var correctly when the variable is of pass-by-reference type - Update contrib/tsearch2 to use current Snowball code Changes from 7.4.9 to 7.4.10: - Fix race condition in transaction log management - Prevent failure if client sends Bind protocol message when current transaction is already aborted - /contrib/ltree fixes (Teodor) - AIX and HPUX compile fixes (Tom) - Fix longstanding planning error for outer joins - Prevent core dump in pg_autovacuum when a table has been dropped Changes from 7.4.10 to 7.4.11: - Fix for protocol-level Describe messages issued outside a transaction or in a failed transaction (Tom) - Fix character string comparison for locales that consider different character combinations as equal, such as Hungarian (Tom) - Set locale environment variables during postmaster startup to ensure that plperl won't change the locale later - Fix longstanding bug in strpos() and regular expression handling in certain rarely used Asian multi-byte character sets (Tatsuo) - Fix bug in /contrib/pgcrypto gen_salt, which caused it not to use all available salt space for MD5 and XDES algorithms (Marko Kreen, Solar Designer) - Fix /contrib/dblink to throw an error, rather than crashing, when the number of columns specified is different from what's actually returned by the query (Joe) Changes from 7.4.11 to 7.4.12: - Fix potential crash in SET SESSION AUTHORIZATION (CVE-2006-0553) - Fix bug with row visibility logic in self-inserted rows (Tom) - Fix race condition that could lead to "file already exists" errors during pg_clog file creation (Tom) - Properly check DOMAIN constraints for UNKNOWN parameters in prepared statements (Neil) - Fix to allow restoring dumps that have cross-schema references to custom operators (Tom) - Portability fix for testing presence of finite and isinf during configure (Tom)
2006-02-21Update PostgreSQL 8.0.x to 8.0.7.joerg9-19/+19
The fix for locales and plperl in 8.0.6 might make an REINDEX necessary. Changes from 8.0.5 to 8.0.6: - Fix Windows code so that postmaster will continue rather than exit if there is no more room in ShmemBackendArray (Magnus) - Fix bug introduced in 8.0 that could allow ReadBuffer to return an already-used page as new, potentially causing loss of recently-committed data (Tom) - Fix for protocol-level Describe messages issued outside a transaction or in a failed transaction (Tom) - Fix character string comparison for locales that consider different character combinations as equal, such as Hungarian (Tom) - Set locale environment variables during postmaster startup to ensure that plperl won't change the locale later - Allow more flexible relocation of installation directories (Tom) - Fix longstanding bug in strpos() and regular expression handling in certain rarely used Asian multi-byte character sets (Tatsuo) - Various fixes for functions returning RECORDs (Tom) - Fix bug in /contrib/pgcrypto gen_salt, which caused it not to use all available salt space for MD5 and XDES algorithms (Marko Kreen, Solar Designer) - Fix /contrib/dblink to throw an error, rather than crashing, when the number of columns specified is different from what's actually returned by the query (Joe) Changes from 8.0.6 to 8.0.7: - Fix potential crash in SET SESSION AUTHORIZATION (CVE-2006-0553) - Fix bug with row visibility logic in self-inserted rows (Tom) - Fix race condition that could lead to "file already exists" errors during pg_clog and pg_subtrans file creation (Tom) - Fix cases that could lead to crashes if a cache-invalidation message arrives at just the wrong time (Tom) - Properly check DOMAIN constraints for UNKNOWN parameters in prepared statements (Neil) - Ensure ALTER COLUMN TYPE will process FOREIGN KEY, UNIQUE, and PRIMARY KEY constraints in the proper order (Nakano Yoshihisa) - Fixes to allow restoring dumps that have cross-schema references to custom operators or operator classes (Tom) - Allow pg_restore to continue properly after a COPY failure; formerly it tried to treat the remaining COPY data as SQL commands (Stephen Frost) - Fix pg_ctl unregister crash when the data directory is not specified (Magnus) - Fix ecpg crash on AMD64 and PPC (Neil) - Recover properly if error occurs during argument passing in PL/python (Neil) - Fix PL/perl's handling of locales on Win32 to match the backend (Andrew) - Fix crash when log_min_messages is set to DEBUG3 or above in postgresql.conf on Win32 (Bruce) - Fix pgxs -L library path specification for Win32, Cygwin, OS X, AIX (Bruce) - Check that SID is enabled while checking for Win32 admin privileges (Magnus) - Properly reject out-of-range date inputs (Kris Jurka) - Portability fix for testing presence of finite and isinf during configure (Tom)
2006-02-20Update PostgreSQL to 7.3.14.joerg12-28/+23
It might be needed to REINDEX indexes or textual coloumns for the issues about plperl and locales in the 7.3.13 changes are present. See the release documentation for further details. Changes from 7.3.10 to 7.3.11: - Fix error that allowed VACUUM to remove ctid chains too soon, and add more checking in code that follows ctid links - Fix CHAR() to properly pad spaces to the specified length when using a multiple-byte character set (Yoshiyuki Asaba) - Fix missing rows in queries like UPDATE a=... WHERE a... with GiST index on column a - Improve checking for partially-written WAL pages - Improve robustness of signal handling when SSL is enabled - Various memory leakage fixes - Various portability improvements - Fix PL/PgSQL to handle var := var correctly when the variable is of pass-by-reference type Changes from 7.3.11 to 7.3.12: - Fix race condition in transaction log management - /contrib/ltree fixes (Teodor) - Fix longstanding planning error for outer joins - Prevent core dump in pg_autovacuum when a table has been dropped Changes from 7.3.12 to 7.3.13: - Fix character string comparison for locales that consider different character combinations as equal, such as Hungarian (Tom) - Set locale environment variables during postmaster startup to ensure that plperl won't change the locale later - Fix longstanding bug in strpos() and regular expression handling in certain rarely used Asian multi-byte character sets (Tatsuo) - Fix bug in /contrib/pgcrypto gen_salt, which caused it not to use all available salt space for MD5 and XDES algorithms (Marko Kreen, Solar Designer) - Fix /contrib/dblink to throw an error, rather than crashing, when the number of columns specified is different from what's actually returned by the query (Joe) Changes from 7.3.13 to 7.3.14: - Fix potential crash in SET SESSION AUTHORIZATION (CVE-2006-0553) - Fix bug with row visibility logic in self-inserted rows (Tom) - Fix race condition that could lead to "file already exists" errors during pg_clog file creation (Tom) - Fix to allow restoring dumps that have cross-schema references to custom operators (Tom) - Portability fix for testing presence of finite and isinf during configure (Tom)
2006-02-17Update to version 3.8.darcy2-8/+7
- Installed new favicon.ico from Matthew Sporleder <mspo@mspo.com> - Replaced snprintf by PyOS_snprintf. - Removed NO_SNPRINTF switch which is not needed any longer - Clean up some variable names and namespace - Add get_relations() method to get any type of relation - Rewrite get_tables() to use get_relations() - Use new method in get_attnames method to get attributes of views as well - Add Binary type - Number of rows is now -1 after executing no-result statements - Fix some number handling - Non-simple types do not raise an error any more - Improvements to documentation framework - Take into account that nowadays not every table must have an oid column - Simplification and improvement of the inserttable() function - Fix up unit tests - The usual assortment of minor fixes and enhancements
2006-02-17Add missing files to PLIST. Bump PKGREVISION.wiz2-22/+36
2006-02-16Add missing rc.d script to PLIST. Bump PKGREVISION.wiz2-3/+4
2006-02-16Add missing file+dir to PLIST, bump PKGREVISION.wiz2-3/+5
2006-02-16Add USE_DIRS xdg-1.2, and add missing files to PLIST.wiz2-3/+6
Bump PKGREVISION.
2006-02-16Add current distfile location to MASTER_SITES.wiz2-5/+15
Install .pyc file too. Bump PKGREVISION.
2006-02-16Update p5-Class-DBI to 3.0.14abs2-9/+8
3.0.14 Jan 03 2006 - Fix breakage with mutator_name (Ask Bj�rn Hansen) 3.0.13 Dec 15 2005 - Use DBI's last_insert_id() where available (David Steinbrunner) - Cope better with deleting through a might_have (Rob Brown) - Allow setting a false value or NULL in a might_have (Brad Bowman) 3.0.12 Nov 04 2005 - Use Clone instead of dclone for cloning meta info to reduce required perl version (Juan Camacho) and allow for closures (RT#15498) - Remove lots of old deprecations 3.0.11 Oct 23 2005 - search through a has_many can now take hash_ref - Fix documentation for SQL wildcards (RT#15145) 3.0.10 Oct 7 2005 - Set Storable::Deparse so that has_a subrefs can be cloned (Will Ross) - Use shorter version of mk_classdata - Include t/24 which was accidentally left out of MANIFEST in 3.0.9 3.0.9 Sep 23 2005 - Fixed bug with shared meta_info (Will Ross) - create() has been renamed to insert() to make it much clearer that it corresponds to an SQL INSERT rather than lots of different ideas as to what create() might mean. create() still (silently) works. It will give 'deprecated' warnings from 3.2.0 and will be removed no earlier than 3.4.0. The before/after create triggers have NOT been renamed yet as I'm rethinking some of that. We'll probably end up with more trigger points. Comments and suggestions welcome. 3.0.8 Sep 20 2005 - constraint exceptions now set their 'data' (Dan Collis Puro) - method created by has_many can now override method in parent class (reported by Christopher H. Laco) - factored out transform_sql for easier modification 3.0.7 Sep 17 2005 - Make Column responsible for accessor() and mutator() so they can be set up declaratively as well as programmatically (this means the second argument to accessor_name and mutator_name is now a Column object rather than its name, so you may need to check your case sensitivity) - Rename accessor/mutator_name to accessor/mutator_name_for - Document that order_by clauses in sort() are passed through - Make one-shot 'Essential' set up slightly more explicit in docs (Adam Kennedy) - Fix HasMany warning typo (argumemt) (Dan Friedman) - Remove obsolete SearchGenerator code which had leaked out 3.0.6 Sep 16 2005 - constrain_column can now take subref constraint - Document DBD::AnyData and FreeTDS issues (Matt Trout) - Factor out database error handling to _db_error() - Switch to Class::Accessor::Fast in Column and Relationship 3.0.5 Sep 14 2005 - has_many can take compile time constraints (Cees Hek) - has_many can take a cascading delete strategy (deprecating the old, undocumented, 'no_cascade_delete' option) - columns() can take Class::DBI::Column objects directly which can now in turn take options, thus allowing things like: __PACKAGE__->columns(dates => Class::DBI::Column->new( tdate => { placeholder => 'IF(1, CURDATE(), ?)' } ) 3.0.4 Sep 13 2005 Pre-Reqs - Note requirement for Scalar::Util 1.08+ (for refaddr) Refactorings - Move to pluggable Search interface (includes reworking of search approach per Tim Bunce) 3.0.3 Sep 11 2005 Bug Fixes - Ensure object is removed from index when delete()d (Tim Bunce) - clear_object_index when new relationship set up (Tim Bunce) - Fixed bug where PK values got auto-vivified (Tatsuhiko Miyagawa, Christopher L. Everett, Tim Bunce) - Removed 'AS' when aliasing tables; some databases don't like that - Properly return -1 from unchanged object updates (Kingsley Kerce) - Fixed problems with overloaded stringification of related classes (Tim Bunce) - Fixed bug where Essential might contain the PK twice Refactorings - Split live_object_key for easy subclassing (Tim Bunce) - Split out _as_hash() to return underlying data hash - Optimised _mk_column_accessors (Maurice Aubrey) - Don't hard-code relationship names (Peter Speltz) Internals - Changed error message when setting up has_a with incorrect column (Drew Taylor) Documentation - Fixed docs for after_update trigger and update (Kingsley Kerce) 3.0.2 Sep 11 2005 Code - No changes Pre-Reqs - Fixed code to explicitly need 5.6 (rather than just Makefile) - Require 'version' for new 3 part versions Tests - Fixed t/01 to check mutator_name better - Added NOT NULL to Primary in t/Blurb to avoid 0.95 regression - Added new Test base class Class::DBI::Test::SQLite - Changed all remaining uses of eq_set() to is_deeply() Documentation - Documented $obj->id() in list context (William McKee) - Documented cascading delete for might_have (Tom Hukins) - Documented MCFK better (plus fixed lots of typos etc) (Tom Hukins) - Documented DBIx::ContextualFetch better - select_val better (Dave Howorth) - Fixed misspelling of Perrin Harkins - Fixed documentation for the year constraint (Andy Lester) - Fixed set_sql documentation to explain when it creates a method - Fixed new_music documentation (Carl Johnstone) - Fixed docs for CD columns to show 'reldate' (Mark Thomas) - Fixed lots of other tiny doc issues - Fixed docs for Essential (defaults to Primary, rather than All) - Fixed docs for what gets passed to triggers (Ryan Tate) 3.0.1 Sep 11 2005 - Code is identical to 0.96 - New section added to documentation on Release Philosophy - Replace eq_set with is_deeply in t/04 to work around Test::More bug
2006-02-15Updated databases/p5-DBI to 1.50abs2-7/+6
Changes in DBI 1.50 (svn rev 2307), 13 December 2005 Fixed Makefile.PL options for gcc bug introduced in 1.49. Fixed handle magic order to keep DBD::Oracle happy. Changed dbi_profile_merge() to be able to recurse and merge sub-trees of profile data. Added documentation for dbi_profile_merge(), including how to measure the time spent inside the DBI for an http request. Changes in DBI 1.49 (svn rev 2287), 29th November 2005 Fixed assorted attribute handling bugs in DBD::Proxy. Fixed croak() in DBD::NullP thanks to Sergey Skvortsov. Fixed handling of take_imp_data() and dbi_imp_data attribute. Fixed bugs in DBD::DBM thanks to Jeff Zucker. Fixed bug in DBI::ProfileDumper thanks to Sam Tregar. Fixed ping in DBD::Proxy thanks to George Campbell. Fixed dangling ref in $sth after parent $dbh destroyed with thanks to il@rol.ru for the bug report #13151 Fixed prerequisites to include Storable thanks to Michael Schwern. Fixed take_imp_data to be more practical. Change to require perl 5.6.1 (as advertised in 2003) not 5.6.0. Changed internals to be more strictly coded thanks to Andy Lester. Changed warning about multiple copies of Driver.xst found in @INC to ignore duplicated directories thanks to Ed Avis. Changed Driver.xst to enable drivers to define an dbd_st_prepare_sv function where the statement parameter is an SV. That enables compiled drivers to support SQL strings that are UTF-8. Changed "use DBI" to only set $DBI::connect_via if not already set. Changed docs to clarify pre-method clearing of err values. Added ability for DBI::ProfileData to edit profile path on loading. This enables aggregation of different SQL statements into the same profile node - very handy when not using placeholders or when working multiple separate tables for the same thing (ie logtable_2005_11_28) Added $sth->{ParamTypes} specification thanks to Dean Arnold. Added $h->{Callbacks} attribute to enable code hooks to be invoked when certain methods are called. For example: $dbh->{Callbacks}->{prepare} = sub { ... }; With thanks to David Wheeler for the kick start. Added $h->{ChildHandles} (using weakrefs) thanks to Sam Tregar I've recoded it in C so there's no significant performance impact. Added $h->{Type} docs (returns 'dr', 'db', or 'st') Adding trace message in DESTROY if InactiveDestroy enabled. Ported DBI::ProfileDumper::Apache to mod_perl2 RC5+ thanks to Philip M. Golluci
2006-02-15Update databases/DBD-SQLite to 1.11abs2-6/+6
1.11 - Make blobs work transparently (without SQLBLOB binding) 1.10 - Fix Unicode support (DOMQ) - Support usleep on all Linux (inc. debian) (DOMQ) - Upgrade to sqlite 3.2.7 - Document how to use BLOBS
2006-02-15update to 3.3.4drochner4-11/+8
changes: adds support for CHECK constraints, DESC indices, separate REAL and INTEGER column affinities, a new OS interface layer design, and many other changes pkgsrc note: a selftest fails on NetBSD/i386: a loss of precision is not detected in the sum() function. Reason is that the code assumes that a "long double" keeps more significant bits than a "long long int" which is not true here. This is not a regression to 3.2.x which did just wrap on int overflows.
2006-02-15Remove xmysqladmin. Upstream seemingly abandoned it years ago, thejoerg5-167/+0
maintainer hasn't used it for ages and the code has serious security issues.
2006-02-15Unhook xmysqladmin for removal.joerg1-2/+1
2006-02-10Added a patch that prevents unused variables from being treated asrillig2-1/+19
compile-time errors.
2006-02-10Updated to 0.9901.hiramatsu2-7/+6
0.9901 08/19/2005 - Fix the versioning blunder of .100 < .99 [Philip M. Gollucci <pgollucci@p6m7g8.com>] - Account for the case of mp1 and mp2 installed in the same perl tree. The evals were not playing nice with modules like Apache::SSI, Apache::SessionManager. Sumitted by: [Frank Maas <frank.maas@cheiron-it.nl>] Tweaked/reviewed by: [Philip M. Gollucci <pgollucci@p6m7g8.com>] 0.100 08/10/2005 - Move $Idx from a file-scoped variable to a connect() scoped variable, which gets passed to other subroutines as needed. This will ensure that the cleanup/rollback feature will work properly when a script uses more than one database handle to the same database. [Joe Thomas <joet@tellme.com>] - Fixed issues relating to changing handle state post connection. Handles now returned in same state as original and incomplete transactions rolled back before re-issuing handle so. Submited by: [Joe Thomas <joet@tellme.com>] Contributed by: [Patrick Mulvany <paddy@firedrake.org>] - Fix a () bug in the connect() determining whether we must ping the database. PingTimeOut = 0 now works as documented. Submited by: [Joe Thomas <joet@tellme.com>] Contributed by: [Patrick Mulvany <paddy@firedrake.org>] 0.99 08/03/2005 - Turn off Debugging by default. Reported by <jonanderson@seren.com> [Philip M. Gollucci <pgollucci@p6m7g8.com>] 0.98 06/30/2005 - Fix MP2 issue with $Apache::Server::Starting Reported by Vincent Moneymaker vbmonymaker@hotmail.com [Philip M. Gollucci <pgollucci@p6m7g8.com>] 0.97 06/27/2005 - Fix minor use strict bug in make test [Philip M. Gollucci <pgollucci@p6m7g8.com>] - Fixed a bug in salt calculation Kevin A. McGrail (ThoughtWorthy Media, Inc.) - Added Auth_DBI_encryption_method configuration. Supports md5 hex, sha1 hex & crypt and will support fallback. Other encryption methods can be added by modifying the subroutine get_passwds_to_check Kevin A. McGrail (ThoughtWorthy Media, Inc.) - MP2/MP1 Constants compatability fixes in AuthDBI Kevin A. McGrail (ThoughtWorthy Media, Inc.) - Added a feature 'Apache::AuthDBI->setProjID(1)' to set a Shared Memory Project ID when using the shared memory caching. Kevin A. McGrail (ThoughtWorthy Media, Inc.) - Fixed an MP2 problem when Debug is set to 2 changing is_main() to main() call Kevin A. McGrail (ThoughtWorthy Media, Inc.) - Added a few more Debug statements including the Semaphore ID in hex to use ipcs Kevin A. McGrail (ThoughtWorthy Media, Inc.) 0.96 04/19/2005 - Account for the recent mod_perl2 API renaming [Philip M .Gollucci <pgollucci@p6m7g8.com>] 0.95 04/01/2005 - Avoid "The object isn't defined" error during "make test" if we can't connect to the test database.
2006-02-09Set DIST_SUBDIR due to the distfile change (.java files were removed).minskim2-11/+12
2006-02-07update to 4.4.2drochner4-51/+10
changes: -Added support for compiling and linking with BerkeleyDB 4.4.20 -bugfixes -Wrap the DBEnv.set_tx_timeout method
2006-02-07add fix for the (broken?) PDO configure checksjdolecek1-1/+4
2006-02-06update to 2.0.9drochner5-24/+43
This release adds many incremental improvements throughout the whole program. This includes command line, document generators, reports, tools, filters, graphical user interface responsiveness, web site generator, import and export, and many other areas with new features and bug fixes. mostly from Jeremy C. Reed
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg156-239/+316
2006-02-05Update to 4.4.20:wiz3-9/+21
Changes since Berkeley DB 4.4.16: 1. Add support for Visual Studio 2005. [#13521] 2. Fix a bug with in-memory transaction logs when files wrapped around the buffer. [#13589] 3. Fix a bug where we needed to close replication's open files during replication initialization. [#13623] 4. Fix a bug which could leave locks in the environment if database compaction was run in a transactional environment on a non-transactional database. This might have also have triggered deadlocks if the database was opened transactionally. [#13680] 5. Fix a bug where setting the DB_REGISTER flag could result in unnecessarily running recovery, or corruption of the registry file on Windows systems. [#13789] 6. Fix a bug in Database.compact that could cause JVM crashes or NullPointerException. [#13791] 7. Fix a bug that would cause a trap if an environment was opened specifying DB_REGISTER and the environment directory could not be found. [#13793] 8. Fix a buffer overflow bug when displaying process and thread IDs in the Berkeley DB statistics output. [#13796] 9. Fix a bug where if there is insufficient memory for a database key in a DBT configured to return a key value into user-specified memory, the cursor is moved forward to the next entry in the database, which can cause applications to skip key/data pairs. [#13815] 10. Fix a bug that could cause the loss of an update to a QUEUE database in a hot backup. [#13823] 11. Fix a bug where retrieval from a secondary index could result in a core dump. [#13843] 12. Fix a bug that could cause part of the free list to become unlinked if a btree compaction was rolled back due to a transaction abort. [#13891] 13. Fix a bug with in-memory logging that could cause a race condition to corrupt the logs. [#13919] [no shlib major bump this time, yay]
2006-02-04Remove some unneeded dependencies. Bump PKGREVISION.wiz1-4/+2
2006-02-04Fix linkage for libgda-postgres.wiz2-4/+4
I didn't bump its PKGREVISION since I updated it 10 minutes ago.
2006-02-04Update to 0.62:wiz10-358/+34
For Release 0.62 ---------------- - Support Mergeant MIME type (Rodrigo) - Build fixes (Rodrigo) - Fixed desktop file installation dir (Rodrigo) - Fixed #311572 (Rodrigo) - Adapted to libgda/libgnomedb 1.3.90 APIs (Vivien) - Updated translations: - en_CA (Adam) - fr (Christophe) - nb (Kjartan) - no (Kjartan) - pt_BR (Raphael) - vi (Clytie) - Added translations: - ne (Pawan) For Release 0.61 ---------------- - Explicitly require libgda/libgnomedb-2.0 (Rodrigo) - Use GType for GObject-based classes, not guint (Vivien) For Release 0.60 ---------------- - Added many command line arguments to specify Mergeant's start configuration (username, password, data source, etc) (Vivien) - Improved connection dialog (Vivien) - Display information about data types synonyms (Vivien) - Added an SQL console to direclty send SQL statements to the DBMS server (Vivien) - Removed bonobo dependencies (Vivien) - Merged the libmergeant library into Libgnomedb (Vivien) - Many GUI improvements (Rodrigo, Vivien) - Many, many small improvements and bug fixes - Updated translations - Added translations: - Lithuanian (Žygimantas Beručka) - Kinyarwanda (Steve Murphy) - Japanese (Takeshi AIHANA) - Norwegian (Kjartan Maraas)
2006-02-04Update to 1.9.100:wiz7-123/+333
libgnomedb 1.9.100, 2005-10-13 ------------------------------ - Fixed #313204 (Rodrigo) - Fixed #314733 (Cygwin ports maintainer) - Require libgda >= 1.9.99 (Juan Manuel) - Updated translations: - es (Francisco Javier) - sv (Christian) libgnomedb 1.9.99, 2005-09-26 ----------------------------- - Compilation fixes (Rodrigo, Stanislav) - Added Mono bindings from GTK# (Dan) - Install plugins in $libdir (Stanislav) - Added SQL console menu item to browser application (Vivien) - Fixed row numbers status messages in browser application (Vivien) - Fixed compilations flags and libs for sample application (Juan Manuel) - Extended GnomeDbSelector API (Vivien) - Adapted to libgda-1.9.99 API changes (Vivien, Rodrigo) - Updated translations: - en_CA (Adam) - eu (Iñaki) - ne (Pawan) - vi (Clytie) libgnomedb 1.3.91, 2005-08-10 ----------------------------- - Depend on libgda >= 1.3.90 (Rodrigo) libgnomedb 1.3.90, 2005-08-07 ----------------------------- - Removed redundant gnome_db_server_stringify_value (Vivien) - Adapted to changes in libgda's GdaValue (Vivien) - Support more numerical types in GnomeDbHandlerNumerical (Vivien) - Renamed GnomeDbGrid's "create_popup_menu" signal to "populate_popup" (Vivien) - GnomeDbTableField API cleanups and improvements (Vivien) - Extended DTD attributes for GNOME_DB_FIELD tag (Vivien) - Added support for browsing through large data sets in the browser application (Vivien) - Clever use of AUTO_INCREMENT's in result sets (Vivien) - Fixed #310396 (M Wood) - Compilation fixes for gtk-doc generated documentation (Andreas) - Fixed #300082 (Kristof) - Changed all type declarations to GNOME_DB_TYPE_* (Vivien) - Make use of the better libgda error reporting to report better messages (Vivien) - Improved SQL parsing and data dictionary (Vivien) - Updated translations: - fi (Ilkka) - nb (Kjartan) - no (Kjartan) - vi (Clytie) libgnomedb 1.3.4, 2005-07-08 ---------------------------- - Use libgnomedb-2.0 for the pkg-config files (Rodrigo) - Fixed wrongly static functions in gnome-db-qf-value.[ch] (Rodrigo) - Use GType instead of guint for GObject types (Andreas) - Compilation fixes (Rodrigo) - Improved boolean data type handler (Vivien) - Replace DSN string entry with list of widgets for all provider parameters (Vivien) - Added GnomeDbDsnSpec widget (Vivien) libgnomedb 1.3.3, 2005-06-06 ---------------------------- - Changed some menu strings to match similar ones in other menus (Rodrigo) libgnomedb 1.3.2, 2005-06-01 ---------------------------- - Fixed several bugs when refreshing data models (Vivien) - Allow multiple selections in the grid widget (Vivien) - Added GnomeDbQfAgg object for aggregate query fields (Vivien) - Added aggregates parsing in query parsing code (Vivien) - Load data asynchromously and by chunks of rows in data proxies (Vivien) - Removed (unused) Bonobo dependencies (Vivien) - Use GtkAbout instead of GnomeAbout (Vivien) - Support for data type synonyms (Vivien) - Removed gnome-db-config API, now gda-config supports all we need (Vivien) - Updated to newest GtkSourceView API for the editor widget (Vivien) - API documentation (Vivien) - Fixed gtk-doc generation (Rodrigo) - Fixed #168937 (Adam) - Updated translations: - rw (Steve) libgnomedb 1.3.1, 2005-03-21 ---------------------------- - Use default libgnomedb dictionary when using NULL GnomeDbDict objects (Vivien) - Added 'Info' button to each GnomeDbGrid entry (Vivien) - Improved GnomeDbDataWidget (Vivien) - Simplified GnomeDbGrid widget (Vivien) - Fixed reverse columns bug in GnomeDbGrid (Vivien) - Fixed title displaying in GnomeDbGrid (Vivien) - Fixed SQL rendering bug in GnomeDbCondition (Vivien) - Fixed date handling problems (Vivien) - Added sample application (Vivien) - Use libgnomedb*-3 as library names, for parallel installation (Rodrigo) - Fixed #166529 (Vivien) - Adapted to GdaDataModelColumn* renaming (Álvaro) - Updated translations: - de (Frank) - en_CA (Adam) - en_GB (David) - it (Alessio) - pt_BR (Raphael)
2006-02-04Remove libgda-sqlite.wiz1-2/+1
2006-02-04Update to 1.9.100 (gnumeric needs >=1.3, and we have no otherwiz18-256/+213
relevant dependencies). Remove libda-sqlite, since it's included in libgda by default. libgda 1.9.100, 2005-10-13 -------------------------- - Fixed #317267 (Rodrigo) - GdaRow API improvements (Vivien) - GdaColumn API improvements (Vivien) - Limit usage of SQLite internal structures (Vivien) - Removed usage of C++ 'new' keyboard as argument (Bas) - Added missing declarations to gda-column.h (Vivien) libgda 1.9.99, 2005-09-26 ------------------------- - Added Mono bindings from GTK# (Dan) - Convert SQLstate to GDA error code in PostgreSQL provider (Juan Manuel) - Don't use scrollkeeper for API docs (Rodrigo) - Improved data types in SQLite provider (Vivien) - API fixes (Vivien, Murray) - Removed unfinished, non-working objects (Vivien) - Blob object fixes (Vivien) - Blob improvements in PostgreSQL provider (Vivien) - Improved test to locate MDB libraries (Vivien) - Added "gda_type_changed" signal to GdaColumn (Vivien) - Updated translations: - eu (Iñaki) - ne (Pawan) - vi (Clytie) libgda 1.3.91, 2005-08-10 ------------------------- - Compilation fixes for 64bit platforms (Rodrigo) - Fixed call to undefined symbol in XML provider (Rodrigo) libgda 1.3.90, 2005-08-07 ------------------------- - Port GdaValue to use GValue (Daniel, Vivien) - Disabled useless test in Firebird provider (Juan Manuel) - GCC 4 compilation fixes (Christopher) - Fixed #311573 (Rodrigo) - GdaClient/GdaConnection API improvements (Vivien) - Renamed GdaError to GdaConnectionEvent, to be used not only for errors, but for any DB event (Vivien, Juan Manuel) - Improved PostgreSQL/SQLite/MySQL error reporting (Vivien, Juan Manuel) - Update to SQLite3 API (Vivien) - Added get_specs method to GdaServerProvider, to get information on arguments for actions (Vivien) - Fixed PostgreSQL libraries detection (Vivien) - Fixed NUMERIC values passing in Oracle provider (Vivien) - Updated translations: - vi (Clytie) libgda 1.3.4, 2005-07-08 ------------------------ - Fixed leak in PostgreSQL provider (Alex) - Use libgda-2.0 for the pkg-config files (Rodrigo) - Fixed #307549 (Rodrigo) - Fixed installation on 64 bit platforms (Bas) - Allow compilation with Berkeley DB > 4.3.x (Bas) - Fixed 64 bit problems on MySQL/PostgreSQL and SQLite providers (Bas) - Fixed return values on some invalid functions (Stanislav) - Building fixes (Stanislav) - Fixed invalid free in MySQL recordsets (Rodrigo) - Some fixes in global config file saving (Vivien) - More API documentation (Vivien) - Use GType for all types, not guint (Vivien) - Tables' fields schema fixes (Vivien) - Fix #309332 (Murray) - Updated translations: - de (Hendrik) libgda 1.3.3, 2005-06-06 ------------------------ - New API additions (Vivien) - Added get_specs_create_database and create_database_params virtual methods for providers (Vivien) - Updated API documentation (Vivien) - Implemented new providers' methods for SQLite, PostgreSQL and MySQL (Vivien) - Build fixes (Rodrigo) libgda 1.3.2, 2005-05-27 ------------------------ - Prevent segfault when running INSERT of UPDATE queries in MySQL provider (Alan) - Improved update of PostgreSQL data models (Bas) - Improved exporting of data models (Vivien) - Added GdaThreader object to make it easy to run threaded operations (Vivien) - Implemented missing schemas in SQLite provider (Vivien) - Fixed GdaXqlUpdate API typo (Murray) - Improved fields schema for PostgreSQL provider (Vivien) - Added procedures schema to MySQL provider (Vivien) - Fixed MySQL value conversion to string (Alan) - Compilation fixes (Dru, Bas, Rodrigo) - Added functions to dump data models (Vivien) - Improved data types schema in MySQL provider (Vivien) - Added synonyms to the data types schema (Vivien) - API documentation (Dru) - Fixed typo in GdaExport signal creation (Mike Kestner) - Changed procedures schema to include more information (Vivien) - Added creation of ~/.libgda directory when it does not exist (Vivien) - Fixed #153292 (Jorge) - Fixed #301480 (Magnus) - Fixed #301485 (Magnus) - Fixed #302158 (Jean) - Fixed #304586 (Mike Fisk) - Updated translations: - es (Jorge) - it (Marco) - rw (Steve) - uk (Maxim) - zw (Steve) libgda 1.3.1, 2005-03-21 ------------------------ - Improved GdaRow API (Vivien) - Fixed #167573 (Rodrigo) - Added gda_xml_database_remove_table function (Álvaro) - Fixed libsql build (Rodrigo) - Upgraded SQLite provider to SQLite3 (Denis) - Install providers in versioned directories for parallel installation (Rodrigo) - Use libgda*-3 as library names (Rodrigo) - Fixed #129153 (Rodrigo) - Renamed GdaDataModelColumnAttributes to GdaColumn (Álvaro) - Renamed GdaDataModelColumnIndexAttributes to GdaColumnAttributes (Álvaro) - Code cleanup for data model classes (Bas) - Cleanup auto* build noise (Bas) - Replace gda_connection_escape_string with more generic gda_connection_value_to_sql_string (Alan) - Updated translations: - cs (Miroslav) - de (Frank) - en_CA (Adam) - en_GB (David) - it (Marco) - pt (Duarte) - pt_BR (Raphael) libgda 1.3.0, 2005-02-07 ------------------------ - Fixed spec includedir (Aaron) - Set missing row number on gda_data_model_hash_append_row (Bas) - Changed GdaDataModel class to be an interface (Vivien) - Data model improvements (Vivien, Bas, Álvaro) - Renamed GdaField to GdaColumn (Vivien) - Improved documentation (Vivien, Bas) - Added full update/remove for MySQL and PostgreSQL data models (Bas) - Fixed build (Rodrigo) - Added methods for creating/droping tables and indices (Bas) - Updated translations: - cs (Miroslav) - de (Frank) - en_CA (Adam) - es (Francisco) - it (Marco) - nl (Vincent) - pt_BR (Raphael)
2006-02-03Bump PKGREVISION of these packages which affected (fixed) bytaca1-2/+2
fix of REPLACE_RUBY, the impact was big or small.
2006-01-24Changes 1.2.12:adam9-120/+118
* Bug fixes
2006-01-24Update databases/lbdb to 0.31.1tonio2-6/+6
Minor update, containing mainly fixes to the evolution addressbook plugin
2006-01-24Update to version 4.71adrianp2-7/+7
> Recommended that all postgresql users upgrade to this version. > Fixes important postgresql security issues problems related > to binary strings. Thx to Andy Staudacher. http://secunia.com/advisories/18575/ > > Also several DSN bugs fixed, including one introduced in 4.70 > that corrupts underscores in the DSN, and in PHP5 DSN's did > not work. Added support for PDO DSN connections. > > Misc bug fixes.
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz23-36/+46
of the shlib major bump. PKGREVISION++ for the dependencies.
2006-01-23Commit modified patch missed in previous.xtraeme1-8/+8
2006-01-23Update unixodbc-* packages to 2.2.11 (latest stable version).xtraeme10-63/+81
See http://www.unixodbc.org/ for the list of changes... sorry but this package was not updated in 5 years, the list might be very large!
2006-01-23Update to 3.0002:wiz2-7/+6
2005-07-07 Patrick Galbraith (3.0002) * Fix to ensure MYSQL_BIND is only defined when mysql client version is >= 4.1.3. Thanks to Tom Parkison, Anup Singh, Sergey Skvortsov, and other users who informed me about this issue. 2005-07-06 Patrick Galbraith (3.0001) * Special Thanks to Steve Hay for his patch to fix windows compiles! * Changed uint argument in safe_sv_fetch to int due to uint not being available on windows unless you include my_globals.h in dbdimp.h, which also breaks on unixen! * Fixed Makefile.PM for windows compiles (thanks to Steve Hay!) * Removed long long type from dbdimp.h * Changed strncasecmp to strncmp (still need a better long-term solution) in dbdimp.c * Modified Makefile.PM to make prepared statements default * Removed // comments from mysql.xs, dbdimp.c (Thanks Bodo Bergmann!) * Fixed runtime bug (when inserting or updating quotes or double quotes) (Thanks to Brad Choate) 2005-06-30 Patrick Galbraith (3.0000) * Release of prepared statement code 2005-04-26 Patrick Galbraith (2.9015_3) * Added patch from Stas Beckman for new DBI feature take_imp_data, needed for DBI::Pool * Fix to Statement.pm for old API call for numfields that caused warnings on 40numrows and akmisc tests * Fix to bind_ph to throw an error if trying to bind a non-numeric value as numeric * Better fix for dealing with error condition in $sth->rows() * Fix to bind_param to throw error when trying to bind a non-numeric as numeric 2005-04-04 Patrick Galbraith (2.9015_2) * Merged all code changes from 2.900x tree from the last 9 months - unsafe bind type guessing patch from Dragonchild - Removed mysql.mtest - Fixed sth->rows to return my_ulongloong and also handle error from client API - Fix to make autocommit work was already part of this version - Auto-reconnect bug fixed in 2.9006 included * Added simple test to 35limit test to check if using malicious code in LIMIT ?, ? placeholders works, which it doesn't. * Fix that sets mysql_server_prepare to 0 if SQL statement is 'SHOW ...' which is not supported by prepared statement API currently 2004-10-28 Rudolf Lippan (2.9015_1) * Merged Makefile.PL from 2.9005_3 * Bumped version number to 2.9015 for release of Dev Branch. Which will become 2.9020 when tested and merged into HEAD. * fixed typo/compiler warning in bind_param_guessing '*testchar' should have been 'testchar'. 2004-10-20 Patrick Galbraith (Dev-2_9 - 2.9005) * merged changes from 2.9005_1 * fix to blob in dbd_st_fetch (Alexey Stroganov ranger@mysql.com) In case of BLOB/TEXT fields we allocate only 8192 bytes in dbd_describe() for data. Here we know real size of field so we should increase buffer size and refetch column value
2006-01-23Update to 3.51.12 (latest stable version).xtraeme5-32/+90
There were zillions of changes... please see the Changelog file. Now it builds with both mysql-4.1.x and mysql-5.1.x. pkgsrc changes: Supported build options: * myodbc-gui: builds the QT widgets library. (disabled) * myodbc-iodbc: uses iodbc for the odbc functions. (enabled) * myodbc-unixodbc: uses unixodbc for the odbc functions. (disabled) Uses MASTER_SITE_MYSQL.
2006-01-23Add MASTER_SITE_MYSQL with a bunch of mirrors from FreeBSD, and usextraeme3-12/+6
it in the mysql packages.
2006-01-22Fixed pkglint warnings. Because the Perl scripts are now installed with therillig1-3/+3
correct interpreter, bumped PKGREVISION.
2006-01-21Update package Makefile now that bsd.pkg.extract.mk is using thejlam1-2/+2
"extract" script for extraction. Many cases where a custom EXTRACT_CMD simply copied the distfile into the work directory are no longer needed. The extract script also hides differences between pax and tar behind a common command-line interface, so we no longer need code that's conditional on whether EXTRACT_USING is tar or pax.
2006-01-20Drop maintainership. I can't seriously be the maintainer of so manyjmmv1-2/+2
packages - specially of packages that I haven't touched for a long while or those that other people can handle better than me.
2006-01-19Don't forcibly override CFLAGS and other values pkgsrc might pass toschmonz2-5/+20
make(1). Idea from Andrzej Kukula in private mail.
2006-01-19Unquote a SUBST_MESSAGE to placate pkglint.schmonz1-2/+2
2006-01-19Add buildlink3.mk. From Andrzej Kukula in private mail, with minor changesschmonz1-0/+19
by me.
2006-01-17Revert typo: this version conflicts with postgresql74,cjs1-2/+2
not the (non-existent) postgresql84.
2006-01-15Update pgpool to 2.7. Based on patches provided by Inseo PARK inminskim3-12/+12
private email. Major changes from 2.5.1: - Allow SERIAL data type replication by issuing table locks automatically. - New directives: child_max_connections and ignore_leading_white_space. - Bug fixes and minor improvements.
2006-01-13Update abook to 0.5.5tonio3-7/+15
0.5.5 - i18n support (Cedric Duval) - French translation (Cedric Duval) - Swedish translation (Susanna Bjorverud) - palmcsv import filter (Marc Tardif) - use better common code for csv filters (Marc Tardif) - translation HOWTO (Cedric Duval) - wanderlust export filter (Josef Schugt) - create a backup at save time - editor undo fix - ui_readline limit fix
2006-01-13Fix errno.joerg8-1/+117
2006-01-12Fix PLIST for update of qdbm.joerg1-2/+1