Commit graph

2757 commits

Author SHA1 Message Date
abs
f56fea9337 2006-02-27 14:47:08 +00:00
ghen
81d0287a22 Remove non-existent http mirror. 2006-02-27 09:17:20 +00:00
joerg
79a124e8c9 Fix build with newer MySQL versions: mysql_shutdown can have two
arguments. Version number borrowed from Ruby adapter.
2006-02-26 16:37:41 +00:00
wiz
0cee97296a Update to 1.39:
1.39 Thu Feb 16 16:27:42 PST 2006
* Allow ORs on left joins
2006-02-26 09:24:36 +00:00
wiz
b1f16338be Add missing file to PLIST. Bump PKGREVISION. 2006-02-22 21:02:47 +00:00
joerg
dce99822b0 Update PostgreSQL 7.4.x to 7.4.12. Take maintainership.
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-21 20:23:49 +00:00
joerg
55d3689cc4 Update PostgreSQL 8.0.x to 8.0.7.
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-21 19:05:06 +00:00
joerg
4b79280fdf Update PostgreSQL to 7.3.14.
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-20 18:34:07 +00:00
darcy
20ab768aaa Update to version 3.8.
- 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-17 17:58:02 +00:00
wiz
1f53f2754c Add missing files to PLIST. Bump PKGREVISION. 2006-02-17 17:52:56 +00:00
wiz
78a612c1aa Add missing rc.d script to PLIST. Bump PKGREVISION. 2006-02-16 23:28:53 +00:00
wiz
2c3b45acdf Add missing file+dir to PLIST, bump PKGREVISION. 2006-02-16 18:18:25 +00:00
wiz
e0d90226ed Add USE_DIRS xdg-1.2, and add missing files to PLIST.
Bump PKGREVISION.
2006-02-16 18:15:52 +00:00
wiz
78b70bbbe0 Add current distfile location to MASTER_SITES.
Install .pyc file too. Bump PKGREVISION.
2006-02-16 18:13:48 +00:00
abs
ffa7e0b943 Update p5-Class-DBI to 3.0.14
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-16 11:21:55 +00:00
abs
33bcda1ea3 Updated databases/p5-DBI to 1.50
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-15 23:09:58 +00:00
abs
cc587c6e8c Update databases/DBD-SQLite to 1.11
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-15 23:06:42 +00:00
drochner
0f0073ae7b update to 3.3.4
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-15 19:50:52 +00:00
joerg
b74252b19f Remove xmysqladmin. Upstream seemingly abandoned it years ago, the
maintainer hasn't used it for ages and the code has serious
security issues.
2006-02-15 15:07:46 +00:00
joerg
317900ae7c Unhook xmysqladmin for removal. 2006-02-15 15:04:59 +00:00
rillig
b5edc9374d Added a patch that prevents unused variables from being treated as
compile-time errors.
2006-02-10 23:32:00 +00:00
hiramatsu
52915e34c9 Updated to 0.9901.
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-10 09:20:53 +00:00
minskim
0b0d3de25a Set DIST_SUBDIR due to the distfile change (.java files were removed). 2006-02-09 22:07:12 +00:00
drochner
be85694592 update to 4.4.2
changes:
-Added support for compiling and linking with BerkeleyDB 4.4.20
-bugfixes
-Wrap the DBEnv.set_tx_timeout method
2006-02-07 21:36:37 +00:00
jdolecek
a35a366556 add fix for the (broken?) PDO configure checks 2006-02-07 17:59:56 +00:00
drochner
7a9aac7329 update to 2.0.9
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-06 15:35:47 +00:00
joerg
5911def816 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
wiz
4892cc8c94 Update to 4.4.20:
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-05 00:12:54 +00:00
wiz
587f08ff33 Remove some unneeded dependencies. Bump PKGREVISION. 2006-02-04 20:43:59 +00:00
wiz
7d72b5bf55 Fix linkage for libgda-postgres.
I didn't bump its PKGREVISION since I updated it 10 minutes ago.
2006-02-04 17:16:46 +00:00
wiz
d42fdee9ac Update to 0.62:
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-04 17:03:30 +00:00
wiz
d634f4451e Update to 1.9.100:
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-04 17:03:16 +00:00
wiz
15ec940107 Remove libgda-sqlite. 2006-02-04 17:02:58 +00:00
wiz
3fe1a98602 Update to 1.9.100 (gnumeric needs >=1.3, and we have no other
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-04 17:02:45 +00:00
taca
0f5e3b8ef4 Bump PKGREVISION of these packages which affected (fixed) by
fix of REPLACE_RUBY, the impact was big or small.
2006-02-03 04:43:47 +00:00
adam
b124e484ac Changes 1.2.12:
* Bug fixes
2006-01-24 22:22:16 +00:00
tonio
94f1e11ee0 Update databases/lbdb to 0.31.1
Minor update, containing mainly fixes to the evolution addressbook plugin
2006-01-24 20:02:37 +00:00
adrianp
2f82cc215a Update to version 4.71
> 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-24 13:37:45 +00:00
wiz
768c589c29 Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 because
of the shlib major bump.
PKGREVISION++ for the dependencies.
2006-01-24 07:31:52 +00:00
xtraeme
3477d29cf4 Commit modified patch missed in previous. 2006-01-23 20:52:26 +00:00
xtraeme
843e6bde82 Update unixodbc-* packages to 2.2.11 (latest stable version).
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-23 20:50:47 +00:00
wiz
c906e62fd2 Update to 3.0002:
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-23 20:18:05 +00:00
xtraeme
6fb57b0209 Update to 3.51.12 (latest stable version).
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-23 18:53:45 +00:00
xtraeme
a83256b22c Add MASTER_SITE_MYSQL with a bunch of mirrors from FreeBSD, and use
it in the mysql packages.
2006-01-23 17:57:47 +00:00
rillig
f6611f884f Fixed pkglint warnings. Because the Perl scripts are now installed with the
correct interpreter, bumped PKGREVISION.
2006-01-22 23:35:29 +00:00
jlam
758d912e33 Update package Makefile now that bsd.pkg.extract.mk is using the
"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-21 18:57:40 +00:00
jmmv
d971a332da Drop maintainership. I can't seriously be the maintainer of so many
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-20 16:15:52 +00:00
schmonz
da51292226 Don't forcibly override CFLAGS and other values pkgsrc might pass to
make(1). Idea from Andrzej Kukula in private mail.
2006-01-19 04:53:44 +00:00
schmonz
9aadcf7d4e Unquote a SUBST_MESSAGE to placate pkglint. 2006-01-19 04:41:09 +00:00
schmonz
8d110db4b1 Add buildlink3.mk. From Andrzej Kukula in private mail, with minor changes
by me.
2006-01-19 04:40:36 +00:00
cjs
03b52a4415 Revert typo: this version conflicts with postgresql74,
not the (non-existent) postgresql84.
2006-01-17 08:11:19 +00:00
minskim
a7567bb435 Update pgpool to 2.7. Based on patches provided by Inseo PARK in
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-15 17:09:50 +00:00
tonio
a18106aa8a Update abook to 0.5.5
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-13 21:20:45 +00:00
joerg
2c3b604cf0 Fix errno. 2006-01-13 13:44:13 +00:00
joerg
83e14808f1 Fix PLIST for update of qdbm. 2006-01-12 17:37:04 +00:00
rillig
eecf69c94a Added tinycdb. 2006-01-12 13:55:40 +00:00
wiz
03ae906ad9 Update to 1.8.40, provided by OBATA Akio in PR 32364.
2006-01-08  Mikio Hirabayashi

	- Configuration for VC++ was to build DLL.
	- Release: 1.8.40

2006-01-04  Mikio Hirabayashi

	- The advanced API was enhanced.
	- Release: 1.8.39

2006-01-01  Mikio Hirabayashi

	- The advanced API was enhanced.
	- Release: 1.8.38

2005-12-26  Mikio Hirabayashi

	- Functions to set the size of the free block pool were added.
	- Commands line tools were enhanced.
	- Release: 1.8.37

2005-12-24  Mikio Hirabayashi

	- Free block pool was enhanced.
	- Commands line tools were enhanced.
	- Release: 1.8.36

2005-11-30  Mikio Hirabayashi

	- The utility API was enhanced.
	- The extended advanced API was enhanced.
	- All stat calls were replaced with lstat calls.
	- Release: 1.8.35
2006-01-11 18:23:01 +00:00
wiz
a855701f89 Make compile with db4-4.4.x. Remove BROKEN. 2006-01-10 21:06:31 +00:00
wiz
b98c2c923b Mark as broken: does not compile against db4-4.4.x, and no
newer version out yet.
2006-01-10 20:22:48 +00:00
wiz
aad7bca9b5 Update patch-aa so this compiles with db4-4.4.x.
No PKGREVISION bump, since there already was one for this.
2006-01-10 20:14:55 +00:00
adrianp
a2dd178ee9 Update to adodb-4.7.0
No available changelog
Does include a fix for a known security issue:

http://secunia.com/advisories/17418/
"disclose system information, execute arbitrary SQL code, and potentially
compromise a vulnerable system."
2006-01-09 20:35:33 +00:00
xtraeme
c7cc54bf62 Update mysql5-{client,server} to 5.0.18.
Too many changes to list... more information via:
http://dev.mysql.com/doc/refman/5.0/en/news-5-0-18.html
2006-01-09 16:25:01 +00:00
cube
c340e3d6ff Update to version 0.27. This is necessary to support bdb 4.4...
0.27  1st Novemver 2005

        * Added support for Berkeley DB 4.4

        * Fixed decondary key issue with recno databases

        * Added libscan to Makefile.PL

        * The logic for set_mutexlocks was inverted when using Berkeley DB 4.x
          Bug spotted by Zefram <zefram@fysh.org>

        * Transactional rename/remove added.
          Patch supplied by Zefram <zefram@fysh.org>
2006-01-09 15:56:03 +00:00
xtraeme
21eec721b8 Remove MYSQL_VERSIONS_ACCEPTED, mysql-4.0.x was removed. 2006-01-09 11:35:45 +00:00
joerg
df8aee99c4 MySQL 4.0 no longer support, remove it to unbreak bulk builds. 2006-01-08 22:13:18 +00:00
xtraeme
eadc9131c8 Bump PKGREVISION due to mysql.buildlink3.mk changes (default mysql
pkg has been changed to 5.x). Reminded by wiz... thanks.
2006-01-08 18:35:08 +00:00
xtraeme
b15a2b15e5 Add missing extra header files, they are needed at least to build
the php-pdo package.

Bump PKGREVISION.
2006-01-08 17:45:23 +00:00
xtraeme
5604b85276 Don't install the extra header files, they are needed to build some
packages so they belong to mysql-client.

Bump PKGREVISION.
2006-01-08 17:43:58 +00:00
abs
6a623f016a conflict with postgres81 2006-01-08 13:41:29 +00:00
abs
634fcd92cb Upgrade postgresql80-client, postgresql80-server, postgresql to 8.0.5
Changes since 8.0.4:

    * Fix race condition in transaction log management
      There was a narrow window in which an I/O operation could be
      initiated for the wrong page, leading to an Assert failure
      or data corruption.
    * Fix bgwriter problems after recovering from errors (Tom)
      The background writer was found to leak buffer pins after
      write errors. While not fatal in itself, this might lead to
      mysterious blockages of later VACUUM commands.
    * Prevent failure if client sends Bind protocol message when
      current transaction is already aborted
    * /contrib/ltree fixes (Teodor)
    * AIX and HPUX compile fixes (Tom)
    * Retry file reads and writes after Windows NO_SYSTEM_RESOURCES
      error (Qingqing Zhou)
    * Fix intermittent failure when log_line_prefix includes %i
    * Fix psql performance issue with long scripts on Windows
    (Merlin Moncure)
    * Fix missing updates of pg_group flat file
    * Fix longstanding planning error for outer joins

      This bug sometimes caused a bogus error "RIGHT JOIN is only
      supported with merge-joinable join conditions".
    * Postpone timezone initialization until after postmaster.pid
    is created

      This avoids confusing startup scripts that expect the pid
      file to appear quickly.
    * Prevent core dump in pg_autovacuum when a table has been dropped
    * Fix problems with whole-row references (foo.*) to subquery results
2006-01-08 12:51:45 +00:00
rillig
1ca651b6a5 databases/mysql-client does not exist anymore. Provide a replacement using
mk/mysql.buildlink3.mk.
2006-01-07 21:41:48 +00:00
wulf
2c945bec78 Disabled bindings for tcl and python. Without it the build
process may fail if these packages are installed and found by the
configure process.
2006-01-07 12:54:15 +00:00
ghen
97c10fcbfe Remove mysql-server and mysql-client packages. Ok by wiz + xtraeme. 2006-01-07 10:56:34 +00:00
ghen
f4789dc22d Remove mysql-server and mysql-client (versions 4.0.26), because
1) they will not be maintained anymore
2) their package directory names where confusing (mysql4-* have a more
   recent version)
These package directories may be used for meta-pkgs in the future (pulling
in the latest mysql?-* packages).
2006-01-07 10:36:12 +00:00
schmonz
7df1d0fdb5 Initial import of tinycdb-0.75, a very fast and simple package for
creating and reading constant data bases, a data structure introduced
by Dan J. Bernstein in his cdb package. It may be used to speed up
searches in a sequence of (key,value) pairs with very big number
of records. Example usage is indexing a big list of users - where
a search will require linear reading of a large /etc/passwd file,
and for many other tasks. It's usage/API is similar to ones found
in BerkeleyDB, gdbm and traditional *nix dbm/ndbm libraries, and
is compatible in great extent to cdb-0.75 package by Dan Bernstein.

CDB is a constant database, that is, it cannot be updated at a
runtime, only rebuilt. Rebuilding is atomic operation and is very
fast - much faster than of many other similar packages. Once created,
CDB may be queried, and a query takes very little time to complete.
2006-01-07 06:47:10 +00:00
schmonz
5740ce8c75 Conflicts with the to-be-added-shortly tinycdb package: both install
include/cdb.h and lib/libcdb.a.
2006-01-07 06:45:45 +00:00
joerg
4c574bb6e0 Use SUBST framework. 2006-01-06 18:36:52 +00:00
salo
469632ae27 Clean up own directories.
Bump PKGREVISION.
2006-01-06 17:53:11 +00:00
tron
194beddcd6 Install all directories in "libraries" to make e.g. the import
functionality work. Bump package revision because of this fix.

This fixes PR pkg/32466 by Konrad Neuwirth.
2006-01-06 16:37:13 +00:00
wiz
751d30d637 DEPENDS and PKGREVISION bumps because db4's library name changed. 2006-01-06 15:10:01 +00:00
wiz
2ebb45f403 Update to 4.4.16:
New in Berkeley DB 4.4:

  * In-memory replication
  * Client-to-client replication
  * Delayed client synchronization
  * Synchronization throttling
  * Master election speed-ups
  * Hot backup utility
  * Online Btree compaction
  * Online Btree disk space reclamation
  * Online abandoned lock removal
  * Automated recovery serialization
  * Transactional Application Developer's Guide
2006-01-06 15:08:46 +00:00
joerg
23e2f6f67a DragonFly support. 2006-01-05 19:02:36 +00:00
ghen
455345bb5b Change the default for BUILDLINK_DEPMETHOD.qt3-tools from "full" to "build",
without affecting packages that are currently using it.

Packages which previously didn't set BUILDLINK_DEPMETHOD to neither "full" nor
"build" now set it to "full", but should be checked whether they really need it
(comment added).  Packages which previously set it to "build" now don't set it
anymore.

Ok by jlam, wiz.
2006-01-05 10:08:58 +00:00
reed
d6de4cd4a9 Remove "BROKEN_IN=pkgsrc-2005Q4".
This packages fine with recent fixes.
2006-01-04 22:12:00 +00:00
reed
90779908ed Bump PKGREVISION, because location of freetds provided shared library
was changed in recent freetds installation change.

Remove subdirectory "freetds" from the buildlink directory used
during build.

Get rid of forced "BUILDLINK_DEPENDS.freetds=freetds-0.61*". This
dated back over two years ago to initial import of this package
which was one month after freetds was updated from 0.60 to 0.61.
This package appears to build and package fine (using py23-sybase-0.36nb3
and python23-2.3.5nb5 today).
2006-01-04 20:58:56 +00:00
reed
2b8a41e2ed Bump PKGREVISION. (The freetds libraries used are in a new location
due to freetds installation changes and may also depend on gettext-lib.)

Include buildlink for gettext-lib, because CTlib.so uses libintl.so
(noticed on build failure on DragonFly and then saw on NetBSD 2.1 too).

Remove freetds subdirectory from the buildlink directory used during build.
(This is because of recent installation changes for freetds.)
2006-01-04 19:39:33 +00:00
reed
49370370d9 Bump PKGREVISION, since location of shared libraries (libtds and libct)
used by this were moved from my recent changes to the freetds
installation.

Fix build by removing the subdirectory "freetds" from the buildlink
directory it uses.
2006-01-04 18:36:50 +00:00
reed
b666cf33a1 In the Makefile.common, remove the freetds subdirectory for the
path to the buildlink files. This is due to changes I made to the freetds
installation.

Fix "man" to PKGMANDIR while I am here.

Bump PKGREVISION for all three packages (as the location
of libct is uses is different due to the freetds change).

I didn't test sqsh-motif packaging, as I couldn't get openmotif
to build at this time.
2006-01-04 18:30:16 +00:00
reed
2b93caa2ab In a configure argument remove the freetds subdirectory reference.
Bump PKGREVISION, since the freetds shared library is in a different place
since my freetds packaging change.

Remove a blank line.
2006-01-04 18:06:25 +00:00
reed
848c8baec5 Do bump PKGREVISION. The shared library it uses is in a different place
since my freetds package changes.
2006-01-04 18:03:26 +00:00
reed
9f0bce4448 For a configure argument, remove freetds subdirectory since my
recent freetds package changes.

Didn't bump PKGREVISION. The resulting library doesn't appear to reference
freetds location.
2006-01-04 17:59:14 +00:00
abs
9702189f76 rename reverted 2006-01-04 11:55:57 +00:00
abs
0feee7f2d4 Import jdbc-postgresql81 into pkgsrc:
This is a pure Java (Type IV) JDBC driver for the PostgreSQL
database.  It allows Java programs to connect to a PostgreSQL
database using standard, database independent Java code.

The driver provides a reasonably complete implementation of the
JDBC 3 specification in addition to some PostgreSQL specific
extensions.
2006-01-04 11:54:38 +00:00
abs
02642e7a67 The trend is too entrenched to buck - switch back to jdbc-postgresl?? 2006-01-04 11:51:49 +00:00
abs
cd0176d910 postgresql80-jdbc / postgresql81-jdbc 2006-01-04 11:49:54 +00:00
abs
49b33b76fc Import postgresql81-jdbc
This is a pure Java (Type IV) JDBC driver for the PostgreSQL
database.  It allows Java programs to connect to a PostgreSQL
database using standard, database independent Java code.

The driver provides a reasonably complete implementation of the
JDBC 3 specification in addition to some PostgreSQL specific
extensions.
2006-01-04 11:48:41 +00:00
abs
8392771a1e Re-import jdbc-postgresql80 as postgresql80-jdbc to match all other
postgresql80-* packages
2006-01-04 11:48:06 +00:00
abs
e380a286ea reduce diffs with (about to be imported) jdbc-postgresl81.
No functional change.
2006-01-04 11:43:25 +00:00
schmonz
42428df5a0 Express these packages' brokenness with BROKEN_IN=pkgsrc-2005Q4
rather than PKG_FAIL_REASON, so that they provide useful error
messages in build logs, and so that they continue to work on platforms
where they aren't broken.
2006-01-04 04:29:05 +00:00
adrianp
1d50cb2788 Remove:
databases/acid
2006-01-03 21:14:38 +00:00
adrianp
83385fbd2d databases/acid has now been replace by security/base.
BASE is a fork of ACID that is under current developement where as ACID has
not had an update for a number of years now and suffers from current security
issues.
2006-01-03 21:13:37 +00:00
wiz
55cc8816eb Bump PKGREVISION for PLIST change. 2006-01-03 19:10:27 +00:00
darcy
74c8e2f0c8 Add missing installed files. No functional change so not bump to PKGREVISION. 2006-01-03 19:03:35 +00:00
darcy
c078665ed0 Add missing files to PLIST. No functional change to package so I did not
bump PKGREVISION.
2006-01-03 18:58:58 +00:00
wiz
711eb873c2 Update to 1.38:
1.38 Thu Dec 29 03:17:54 EST 2005
* Released 1.37 dev series

1.37_01 Thu Dec  8 15:56:50 EST 2005
* Switched Postgres sequence lookups to use CURRVAL, rather than OIDs

1.36 Fri Dec  2 18:04:21 EST 2005

* Change to how we resolve virtual columns to deal with a
  "no such attribute" bug in RT
2006-01-03 18:05:53 +00:00
abs
dd58ee95c0 Add jdbc-postgresql80 2006-01-03 17:54:30 +00:00
abs
a3861bf3d0 Add jdbc-postgresql80-314 to pkgsrc:
This is a pure Java (Type IV) JDBC driver for the PostgreSQL
database.  It allows Java programs to connect to a PostgreSQL
database using standard, database independent Java code.

The driver provides a reasonably complete implementation of the
JDBC 3 specification in addition to some PostgreSQL specific
extensions.

This package installs the official jdbc3 jarfile from jdbc.postgresql.org,
but also download the src to include the README and example java files. As
such it does not require java at build time.
2006-01-03 17:54:09 +00:00
taca
435219cbd2 Bump PKGREVISION by update of ruby18-base package. 2006-01-03 15:07:28 +00:00
taca
58534e38a4 Remove USE_RUBY_DIST_SUBDIR. 2006-01-03 14:44:54 +00:00
taca
dccd827fac Stop handling DIST_SUBDIR default for Ruby based packages.
Second, update distinfo and/or stop using USE_RUBY_DIST_SUBDIR in Makefiles.
2006-01-03 14:25:49 +00:00
veego
4af40222b6 Update to version 0.33:
Bug Fixes
  * Removed superfluous "print" in Net::LDAP::LDIF before _write_attr on writing
  * Base64 encode any value starting with < in Net::LDAP::LDIF
  * Documentation updates
  * Fix case insensitivity issues in contrib/ldifdiff.pl

Enhancements
  * Added Net::LDAP::Extension::WhoAmI
  * Added write_version() and handle() methods to Net::LDAP::LDIF
  * Updated Net::LDAP::Control::ProxyAuth to support new OID from latest rfc-draft
  * Added contrib/recursive-ldap-delete.pl
  * Added ability to do case in comparisons to contrib/ldifsort.pl
2006-01-02 21:50:00 +00:00
joerg
fe509f6135 Add DragonFly support. 2006-01-02 18:08:35 +00:00
joerg
6a79ec3749 Add DragonFly support. 2006-01-02 17:56:18 +00:00
joerg
83a2e850b2 Override config.*. Fix DragonFly support in configure's libtool fragment. 2006-01-02 17:32:13 +00:00
joerg
2ea54794b6 Include sys/time.h to get struct timeval in all cases. 2006-01-02 17:20:18 +00:00
joerg
e42343390b config.* override. 2006-01-02 16:31:34 +00:00
wiz
faf65456ad Remove stuff that was marked for removal after 2005Q4. 2006-01-01 18:53:03 +00:00
wiz
f61c002199 Recursive PKGREVISION bump for gnutls shlib major bump.
Bump BUILDLINK_RECOMMENDED.
2005-12-31 12:32:31 +00:00
jlam
e5101d7251 Per pkgsrc guidelines, move the documentation to be stored under
${PREFIX}/share/doc/${PKGBASE}.  Also, generate the documentation
PLIST entries dynamically since those files are generated from SGML,
and their names can change quite a bit from release to release.

Bump the PKGREVISION to 3.
2005-12-31 04:05:31 +00:00
joerg
2d0f05081c Add DragonFly support. Add -rpath argument and let libtool generate
a shared library, otherwise other parts of the Makefile gets confused.
2005-12-31 00:53:22 +00:00
jlam
b8c78246e7 Optionally build the ODBC driver for freetds. This will allow ODBC
clients to load the driver to talk to MS SQL Server.
2005-12-30 21:07:42 +00:00
jlam
6516295733 Update databases/iodbc to 3.52.3. Changes from version 2.50.3 include
adding some support for the ODBC 3.x specifications and fixing quite
a lot of bugs.
2005-12-30 21:03:59 +00:00
jlam
06b8122436 Remove some unnecessary patches that removed targets to install the
configuration files.  It's easier just to override the installation
destination during the install phase by setting INSTALL_MAKE_FLAGS.
2005-12-30 16:39:39 +00:00
jlam
f1de2e9253 Update the package description to match the current version. 2005-12-30 16:38:32 +00:00
ghen
0500f7f0af Add (conflicting) "iodbc" and "unixodbc" options to openldap for ODBC support,
from PR#31960.  Ok by jlam and wiz.
2005-12-29 20:10:23 +00:00
joerg
189534dad2 Move DragonFly file handling into Makefile.common, like the other
postgresql packages do. Fixes -pl* at the same time.
2005-12-29 13:33:42 +00:00
jlam
dc9594e09d Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk
automatically detects whether we want the pkginstall machinery to be
used by the package Makefile.
2005-12-29 06:21:30 +00:00
abs
ef11055c81 Revert PKG_FAIL_REASON addition - this package builds perfectly fine
under NetBSD/i386 3.0, including with a completely empty environment.
Any build issue seen is probably due to something in that build
environment.
2005-12-28 01:04:11 +00:00
reed
147ba134c7 Don't install to $PREFIX/freetds anymore.
Discussed with maintainer and tech-pkg in November. (I don't use
this software myself, but initially looked at this to fix the manual
page installation.)

Get rid of BUILDLINK_PASSTHRU_DIRS as not needed now.

Bump PKGREVISION.

BUILDLINK_RECOMMENDED.freetds removed. And BUILDLINK_DEPENDS.freetds
set to this new version.

TODO: allow threadsafe on platforms that support it.
2005-12-27 21:04:23 +00:00
schmonz
463f43526a Mark packages for pkgsrc-2005Q4 that don't build on NetBSD/i386
3.0. If one of these is important to you, please fix it in time
for pkgsrc-2006Q1, or it may be removed.
2005-12-26 23:39:30 +00:00
jlam
0b66c94fae Fix PR pkg/32069 by limiting the FD_SETSIZE used by OpenLDAP to the
maximum value supported by GNU Pth when building against GNU Pth.
2005-12-21 03:54:23 +00:00
wiz
1300bb3710 Fix HOMEPAGE (old one has been domaingrabbed). 2005-12-18 18:06:12 +00:00
jlam
2558c0291d Change my MAINTAINER email address to the one I've been using for
pkgsrc work.
2005-12-17 05:20:21 +00:00
joerg
6e4a0dd799 Bump all motif packages for recent openmotif update. The major version
of the shared libXm has changed.
2005-12-12 21:36:54 +00:00
wiz
140a043762 Fix path on MASTER_SITES (packages use too old version which got moved
into OLD/ subdir).
2005-12-09 20:34:08 +00:00
gdt
ce59777d41 Update to 0.29. Changes since last update:
- 0.29 | 2005-08-25

  - Dropped proc: where-clausifier
  - Dropped proc: tuples-result->table
  - For `gxrepl', results are now printed with " | " field separator
  - All (database postgres) procs now tested
  - Support files guile.m4 and modsup.h synched with Guile 1.4.1.106


- 0.28 | 2005-05-09

  - Bugfix: array reference handling in (database postgres-qcons)
  - FSF street address updated in copyright notices


- 0.27 | 2005-03-02

  - Result objects print without redundant "PGRES_" prefix
  - New command for (database postgres-table) proc `pgtable-manager'
  - New (database postgres-resx) proc: result->object-rows
  - Changes to module (database postgres-qcons)

- 0.26 | 2005-02-24

  - Expiration date set for opaque string support
  - Expiration date set for two (database postegres-table) procs
  - Dropped (database postgres-types) proc: dbcoltype:name
  - New type converters in module (database postgres-types)
  - New module: (database postgres-qcons)
  - New module: (database postgres-resdisp)
  - New module: (database postgres-gxrepl)


- 0.25 | 2005-01-02

  - New (database postgres) proc: pg-result-error-message

- 0.24 | 2004-11-24

  - New (database postgres) proc: pg-set-nonblocking!
  - New (database postgres) proc: pg-is-nonblocking?
2005-12-09 16:01:10 +00:00
tron
67af8f5b51 Update "phpmyadmin" package to version 2.7.0pl1. Changes since version
2.6.4-pl4:
- New plugin-based import module
- Some pages now use fieldsets for better look
- Better support for information_schema
- Upgrade script new options
- Better displaying of privileges when there are differences between the
  various user definition tables
- Structure: count unique value for each field
- Can now limit the list of shown languages
- User-specific upload and save server directories
- Remove Drop tab for mysql database
- New transformation: SQL pretty printing
- Ability to limit maximum size of extended insert
- Support for searching in the foreign key window
- Can now replace an existing bookmark
- New shortcuts for IP rules
- Detect lack of privileges for "Create new table"
- Wrong display of localized MySQL error messages
- Need to select the primary key for MIME-based print view
- Handling of ENTER key when adding fields
- InnoDB: truncating icon and exact row count
- After dropping a db, links were missing
- Strict mode and auto-increment fields insertion
- Collation change for ENUM and SET
- Display problems on special characters in column name
- Links for MySQL documentation
- Escaping of "_"
- Could not edit privileges when different host in db and user
- Changing auto-increment value for InnoDB
- Correct sort order for foreign-key dropdowns
- Group database by rightmost separator
- Performance problem when inserting huge BLOBs
- Calendar popup and time beginning by 0

This update fixes the security vulnerabilities reported in PMASA-2005-8
and PMASA-2005-9.
2005-12-09 13:49:21 +00:00
joerg
6f526a58c8 DragonFly support. 2005-12-06 19:31:24 +00:00
rillig
579e977969 Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
2005-12-05 23:55:01 +00:00
rillig
b71a1d488b Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in

    http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-12-05 20:49:47 +00:00
jdolecek
7d3c288427 Update the PHP PDO to latest available PECL versions (1.0/1.0.1/1.0.2).
Changes are bugfixes mostly.

Also rework php-pdo/module.mk somewhat, so that the base php-pdo package
can use it too.
2005-12-03 17:24:28 +00:00
joerg
bcc90cdce0 Override config.guess and config.sub for DragonFly. 2005-12-02 21:46:50 +00:00
joerg
500dbef42b Merge DragonFly pre-configure merging back into Makefile.common's
post-extract.
2005-12-02 21:01:34 +00:00
joerg
1754c04ba1 DragonFly support. 2005-12-02 20:00:18 +00:00
joerg
660b0ddbce Update PLIST for DragonFly addition. Bump revision. 2005-12-02 19:46:40 +00:00
joerg
b53917110c Allow build on DragonFly. 2005-12-02 19:41:18 +00:00
joerg
1cebc7c947 Add case for DragonFly and modify -lpthread detection to check for
-pthread as well. This can be simplified once PTHREAD_* on NetBSD
is fixed.
2005-12-02 19:39:23 +00:00
wiz
0e13ea6153 Convert to options framework. 2005-12-02 17:28:37 +00:00
xtraeme
dca19f677a Update to 5.0.16.
For information about changes please see:
http://dev.mysql.com/doc/refman/5.0/en/news-5-0-16.html
2005-12-02 08:13:26 +00:00
joerg
60d0f964ac Since the configure script is in a non-standard location, override
location of config.sub and config.guess as well.
2005-11-29 06:45:28 +00:00