summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2012-01-24Fix .so usage in man page. Bump revision of effected package.joerg3-2/+17
2012-01-24Recursive dependency bump for databases/gdbm ABI_DEPENDS change.sbd14-27/+28
2012-01-24Use the correct version number for BUILDLINK_ABI_DEPENDS.gdbmsbd1-2/+2
2012-01-24Add gettext-lib buildlink to gdbm's buildlink3.mksbd1-2/+4
Bump ABI_DEPENDS
2012-01-24Pullin gettext-lib buildlink3 so that nls files are built.sbd2-14/+9
Unconditionalise the nls files. Bump PKGREVISION
2012-01-24Fo gdbm 'NLS' seems to mean 'can find _nl_expand_alias', which has aabs2-8/+17
certain Linux flavour to it. Conditionalise the nls files in the PLIST to Linux for now Bump PKGREVISION. Fixes build on at least NetBSD
2012-01-23Really bump PKGREVISIONsbd1-1/+2
2012-01-23readline isn't just a build dependency, if 'ndb_mgm' is built it has asbd1-5/+7
full dependency on readline. Bump PKGREVISION
2012-01-23Add missing LC_MESSAGES files.sbd2-2/+8
Bump PKGREVISION
2012-01-18Revbump after updating db5adam6-21/+23
2012-01-18Changes 5.3.0:adam2-6/+6
* Support Berkeley DB 5.3.x. * Drop support for Berkeley DB 4.2 and Python 2.3. Our reference is Red Had Enterprise Linux 5, until march 2014. * Support for "DBEnv->set_intermediate_dir()", available in Berkeley DB 4.3-4.6. Patch by Garret Cooper. * Support for "DB->set_dup_compare()". Original patches by Nikita M. Kozlovsky and Ben Schmeckpeper. * Fixed a testsuite compatibility problem with BDB 5.2. * If we are running Solaris or derivatives, and 64bit python, try to find the library under "/usr/local/Berkeley.*.*/64/". * Solaris 10 Update 10 exposes a very old race condition in the replication master election tests. Some details in https://forums.oracle.com/forums/thread.jspa?messageID=9902860 . Workaround proposed in a private email from Paula Bingham (Oracle), in 20110929. * When doing the full matrix test for a release, stop the verification if any test failed.
2012-01-18Changes 5.3.15:adam6-51/+148
* Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-17Convert packages with add --libdir=* to CONFIGURE_ARGS to usesbd2-4/+4
GNU_CONFIGURE_LIBDIR or GNU_CONFIGURE_LIBSUBDIR.
2012-01-17Changes 3.7.10:adam7-24/+30
* The default schema format number is changed from 1 to 4. This means that, unless the PRAGMA legacy_file_format=ON statement is run, newly created database files will be unreadable by version of SQLite prior to 3.3.0 (2006-01-10). It also means that the descending indices are enabled by default. * The sqlite3_pcache_methods structure and the SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE configuration parameters are deprecated. They are replaced by a new sqlite3_pcache_methods2 structure and SQLITE_CONFIG_PCACHE2 and SQLITE_CONFIG_GETPCACHE2 configuration parameters. * Added the powersafe overwrite property to the VFS interface. Provide the SQLITE_IOCAP_POWERSAFE_OVERWRITE I/O capability, the SQLITE_POWERSAFE_OVERWRITE compile-time option, and the "psow=BOOLEAN" query parameter for URI filenames. * Added the sqlite3_db_release_memory() interface and the shrink_memory pragma. * Added the sqlite3_db_filename() interface. * Added the sqlite3_stmt_busy() interface. * Added the sqlite3_uri_boolean() and sqlite3_uri_int64() interfaces. * If the argument to PRAGMA cache_size is negative N, that means to use approximately -1024*N bytes of memory for the page cache regardless of the page size. * Enhanced the default memory allocator to make use of _msize() on windows, malloc_size() on Mac, and malloc_usable_size() on Linux. * Enhanced the query planner to support index queries with range constraints on the rowid. * Enhanced the query planner flattening logic to allow UNION ALL compounds to be promoted upwards to replace a simple wrapper SELECT even if the compounds are joins. * Enhanced the query planner so that the xfer optimization can be used with INTEGER PRIMARY KEY ON CONFLICT as long as the destination table is initially empty. * Enhanced the windows VFS so that all system calls can be overridden using the xSetSystemCall interface. * Updated the "unix-dotfile" VFS to use locking directories with mkdir() and rmdir() instead of locking files with open() and unlink(). * Enhancements to the test_quota.c extension to support stdio-like interfaces with quotas. * Change the unix VFS to be tolerant of read() system calls that return less then the full number of requested bytes. * Change both unix and windows VFSes to report a sector size of 4096 instead of the old default of 512. * In the TCL Interface, add the -uri option to the "sqlite3" TCL command used for creating new database connection objects. * Added the SQLITE_TESTCTRL_EXPLAIN_STMT test-control option with the SQLITE_ENABLE_TREE_EXPLAIN compile-time option to enable the command-line shell to display ASCII-art parse trees of SQL statements that it processes, for debugging and analysis. * Bug fix: Add an additional xSync when restarting a WAL in order to prevent an exceedingly unlikely but theoretically possible database corruption following power-loss. * Bug fix: Change the VDBE so that all registers are initialized to Invalid instead of NULL. * Bug fix: Fix problems that can result from 32-bit integer overflow.
2012-01-15Suppress Oracle, from B.ICT A.P. deBROUWER Jr. in PR 45838.dholland1-2/+2
(Someone(TM) might want to prepare an Oracle backend package for this, if it can be done the same way as the Postgres and MySQL ones.)
2012-01-13Recursive bump from audio/libaudiofile, x11/qt4-libs and x11/qt4-tools ABI bump.obache4-8/+8
2012-01-12This package's licence is NOT a "modified BSD" in a common sense.asau1-2/+4
Reset LICENSE, bump package revision.
2012-01-12Changes 5.1.61:adam4-11/+18
* InnoDB Storage Engine: Issuing INSERT...ON DUPLICATE KEY statements for InnoDB tables from concurrent threads could cause a deadlock, particularly with the INSERT...ON DUPLICATE KEY UPDATE form. The fix avoids deadlocks caused by the same row being accessed by more than one transaction. Deadlocks could still occur when multiple rows are inserted and updated simultaneously by different transactions in inconsistent order; those types of deadlocks require the standard error handling on the application side, of re-trying the transaction. * An incorrect InnoDB assertion could cause the server to halt. This issue only affected debug builds. The assertion referenced the source file btr0pcur.ic and the variable cursor->pos_state. * The handle_segfault() signal-handler code in mysqld could itself crash due to calling unsafe functions. * ARCHIVE tables with NULL columns could cause server crashes or become corrupt under concurrent load. * Enabling myisam_use_mmap could cause the server to crash. * Concurrent access to ARCHIVE tables could cause corruption.
2012-01-12Changes 5.5.20:adam3-7/+15
* A new server option, --slow-start-timeout, controls the Windows service control manager's service start timeout. The value is the maximum number of milliseconds that the service control manager waits before trying to kill the MySQL service during startup. The default value is 15000 (15 seconds). If the MySQL service takes too long to start, you may need to increase this value. A value of 0 means there is no timeout. Bugs Fixed: * Important Change: Replication: Setting an empty user in a CHANGE MASTER TO statement caused an invalid internal result and is no longer permitted. Trying to use MASTER_USER='' or setting MASTER_PASSWORD while leaving MASTER_USER unset causes the statement to fail with an error. * Important Change: Replication: Moving the binary log file, relay log file, or both files to a new location, then restarting the server with a new value for --log-bin, --relay-log, or both, caused the server to abort on start. This was because the entries in the index file overrode the new location. In addition, paths were calculated relative to datadir (rather than to the --log-bin or --relay-log values). * InnoDB Storage Engine: When doing a live downgrade from MySQL 5.6.4 or later, with innodb_page_size set to a value other than 16384, now the earlier MySQL version reports that the page size is incompatible with the older version, rather than crashing or displaying a “corruption” error. * InnoDB Storage Engine: Issuing INSERT...ON DUPLICATE KEY statements for InnoDB tables from concurrent threads could cause a deadlock, particularly with the INSERT...ON DUPLICATE KEY UPDATE form. The fix avoids deadlocks caused by the same row being accessed by more than one transaction. Deadlocks could still occur when multiple rows are inserted and updated simultaneously by different transactions in inconsistent order; those types of deadlocks require the standard error handling on the application side, of re-trying the transaction. * An incorrect InnoDB assertion could cause the server to halt. This issue only affected debug builds. The assertion referenced the source file btr0pcur.ic and the variable cursor->pos_state. * Locale information for FORMAT() function instances was lost in view definitions. * The handle_segfault() signal-handler code in mysqld could itself crash due to calling unsafe functions. * Enabling myisam_use_mmap could cause the server to crash. * Concurrent access to ARCHIVE tables could cause corruption.
2012-01-12Uses perl.hans1-2/+2
2012-01-10Change make to $(MAKE), because gmake is required.gdt3-1/+50
Not strictly required for pkgsrc due to wrappers, but necessary in general. No change to generated binary package. To be sent upstream momemtarily.
2012-01-10Update p5-Catalyst-Model-DBIC-Schema to 0.59.hiramatsu2-6/+6
Changes from previous: ---------------------- 0.59 2011-11-01 11:20:46 - update helper deps for new loader 0.58 2011-10-25 19:19:43 - remove ->make_immutable from the PerRequestSchema trait 0.57 2011-10-22 16:01:45 - add POD for PerRequestSchema trait 0.56 2011-10-22 15:34:59 - add PerRequestSchema trait (t0m)
2012-01-10Fixes build with libgdbm.obache1-1/+4
2012-01-09clean up in some cases where the faked "libgnutls-config" scriptdrochner1-2/+2
is not needed anymore
2012-01-09Make Kerberos support optionnal and enabled by default in nss_ldap. Itmanu2-2/+18
is useful to disable it if OpenLDAP was linked with pkgsrc's OpenSSL, since nss_ldap will pull the base system OpenSSL dependency through Kerberos libraries, leading to crashes because of multiple incomaptible libcrypto linked.
2012-01-09Recursive bump from boost-libs shlib bump.obache1-2/+2
2012-01-08Update to 1.5.3 (basically bug fixes since 1.5.1).gdt3-10/+12
PostGIS 1.5.3 2011/06/25 - This is a bug fix release, addressing issues that have been filed since the 1.5.2 release. - Bug Fixes - #1056, produce correct bboxes for arc geometries, fixes index errors (Paul Ramsey) - #1007, ST_IsValid crash - fix requires GEOS 3.3.0+ or 3.2.3+ (Sandro Santilli, reported by Birgit Laggner) - #940, support for PostgreSQL 9.1 beta 1 (Regina Obe, Paul Ramsey, patch submitted by stl) - #845, ST_Intersects precision error (Sandro Santilli, Nicklas Avén) Reported by cdestigter - #884, Unstable results with ST_Within, ST_Intersects (Chris Hodgson) - #779, shp2pgsql -S option seems to fail on points (Jeff Adams) - #666, ST_DumpPoints is not null safe (Regina Obe) - #631, Update NZ projections for grid transformation support (jpalmer) - #630, Peculiar Null treatment in arrays in ST_Collect (Chris Hodgson) Reported by David Bitner - #624, Memory leak in ST_GeogFromText (ryang, Paul Ramsey) - #609, Bad source code in manual section 5.2 Java Clients (simoc, Regina Obe) - #604, shp2pgsql usage touchups (Mike Toews, Paul Ramsey) - #573 ST_Union fails on a group of linestrings Not a PostGIS bug, fixed in GEOS 3.3.0 - #457 ST_CollectionExtract returns non-requested type (Nicklas Avén, Paul Ramsey) - #441 ST_AsGeoJson Bbox on GeometryCollection error (Olivier Courtin) - #411 Ability to backup invalid geometries (Sando Santilli) Reported by Regione Toscana - #409 ST_AsSVG - degraded (Olivier Courtin) Reported by Sdikiy - #373 Documentation syntax error in hard upgrade (Paul Ramsey) Reported by psvensso PostGIS 1.5.2 2010/09/27 - This is a bug fix release, addressing issues that have been filed since the 1.5.1 release. - Bug Fixes - Loader: fix handling of empty (0-verticed) geometries in shapefiles. (Sandro Santilli) - #536, Geography ST_Intersects, ST_Covers, ST_CoveredBy and Geometry ST_Equals not using spatial index (Regina Obe, Nicklas Avén) - #573, Improvement to ST_Contains geography - Loader: Add support for command-q shutdown in Mac GTK build (Paul Ramsey) - #393, Loader: Add temporary patch for large DBF files (Maxime Guillaud, Paul Ramsey) - #507, Fix wrong OGC URN in GeoJSON and GML output (Olivier Courtin) - spatial_ref_sys.sql Add datum conversion for projection SRID 3021 (Paul Ramsey) - Geography - remove crash for case when all geographies are out of the estimate (Paul Ramsey) - #469, Fix for array_aggregation error (Greg Stark, Paul Ramsey) - #532, Temporary geography tables showing up in other user sessions (Paul Ramsey) - #562, ST_Dwithin errors for large geographies (Paul Ramsey) - #513, shape loading GUI tries to make spatial index when loading DBF only mode (Paul Ramsey) - #527, shape loading GUI should always append log messages (Mark Cave-Ayland) - #504 shp2pgsql should rename xmin/xmax fields (Sandro Santilli) - #458 postgis_comments being installed in contrib instead of version folder (Mark Cave-Ayland) - #474 Analyzing a table with geography column crashes server (Paul Ramsey) - #581 LWGEOM-expand produces inconsistent results (Mark Cave-Ayland) - #471 DocBook dtd errors (Olivier Courtin) - Fix further build issues against PostgreSQL 9.0 (Mark Cave-Ayland) - #572 Password whitespace for Shape File to PostGIS Import not supported (Mark Cave-Ayland) - #603: shp2pgsql: "-w" produces invalid WKT for MULTI* objects. (Mark Cave-Ayland) - Enhancement - #513 Add dbf filter to shp2pgsql-gui and allow uploading dbf only (Paul Ramsey)
2012-01-08+ gtkdbfeditorwiz1-1/+2
2012-01-08Initial import of gtkdbfeditor-1.0.4:wiz5-0/+48
GTK DBF Editor is a simple editor for DBF files.
2012-01-08Changes 1.10:adam2-6/+6
* Internationalization This version of GDBM is fully internationalized. The following localizations are available: Finnish, German, Japanese, Polish and Ukrainian. * Support for close-on-exec flag in gdbm_open (see GDBM_CLOEXEC in the docs). * Improve testgdbm command system The testgdbm tool now supports multicharacter commands. * Bugfixes
2012-01-04Our patch doesn't need to check for BSD before using standard headers anddholland3-17/+22
functions. Update that, don't declare own sys_errlist. Fixes Linux build. PKGREVISION -> 2 as a precaution.
2012-01-03Fix to be using gem way PLIST_SUBST.obache1-77/+77
2012-01-01Include databases/gdbm/builtin.mk earlier to stop malformed conditionalsbd1-2/+8
errors because of USE_BUILTIN.gdbm usage.
2012-01-01Use ${MKDIR} not ${PREFIX}/bin/mkdirsbd1-1/+2
2011-12-31Remove pkgsrc's attempt to force using libtool.gdt10-151/+48
Postgresql upstream does not use libtool. pkgsrc used to change postgresql to use libtool, and this package was written to use the pkgsrc-added libtool support. pkgsrc no longer modifies postgresql to use libtool, so postgis did not build. In addition to backing out all the make-postgis-use-libtool packages, this commit adds a patch to add rpath to the PGSQL_FE_LDFLAGS, which upstream hand constructs from pg_config output. PKGREVISION++, but no change in version or functionality (from the previous state, which also didn't build) intended.
2011-12-28Update ruby-ldap to 0.9.12.obache3-39/+87
0.9.12 ----- * On windows, the default ldap library became wldap32; * Fixed compile with ruby 1.9.2. Thank to Hiroki Najima! * Fixed many memory leaks; * Added functions: LDAP::Conn.open_uri(uri); LDAP::explode_dn(dn, notypes); LDAP::explode_rdn(rdn, notypes). Thanks to Marek Veber and Antonio Terceiro! * Fixed bug in ldap/ldif.rb (GH-6). Thanks to bbense. * Fixed LDAP::Mod data corruption. Thanks to Aprotim Sanyal! * Enable client certificate authentication for mozilla ldap 6.0 only. Thanks to Yuri Arabadji!
2011-12-26Remove section about installing "php-mcrypt" as it is a dependency now.tron1-4/+1
2011-12-26Create absolute path names, otherwise build info is mangled upjoerg1-4/+4
2011-12-26Use ${MKDIR} not ${PREFIX}/bin/mkdirsbd1-1/+2
2011-12-23Update "phpmyadmin" package to version 3.4.9. Changes since 3.4.8:tron2-6/+6
- bug #3442028 [edit] Inline editing enum fields with null shows no dropdown - bug #3442004 [interface] DB suggestion not correct for user with underscore - bug #3438420 [core] Magic quotes removed in PHP 5.4 - bug #3398788 [session] No feedback when result is empty (signon auth_type) - bug #3384035 [display] Problems regarding ShowTooltipAliasTB - bug #3306875 [edit] Can't rename a database that contains views - bug #3452506 [edit] Unable to move tables with triggers - bug #3449659 [navi] Fast filter broken with table tree - bug #3448485 [GUI] Firefox favicon frameset regression - [core] Better compatibility with mysql extension - [security] Self-XSS on export options (export server/database/table), see PMASA-2011-20 - [security] Self-XSS in setup (host parameter), see PMASA-2011-19
2011-12-22sortjnemeth1-2/+2
2011-12-21Fix build failure on NetBSD caused by trying to redefine bswap16/32/64.dholland3-3/+30
While here, fix some pkglint.
2011-12-21Whitespace, prompted by pkglint.dholland1-10/+10
2011-12-20Update couchdb to 1.1.1.fhajny6-70/+89
Changes: * Support SpiderMonkey 1.8.5 * Add configurable maximum to the number of bytes returned by _log. * Allow CommonJS modules to be an empty string. * Bump minimum Erlang version to R13B02. * Do not run deleted validate_doc_update functions. * ETags for views include current sequence if include_docs=true. * Fix bug where duplicates can appear in _changes feed. * Fix bug where update handlers break after conflict resolution. * Fix bug with _replicator where include "filter" could crash couch. * Fix crashes when compacting large views. * Fix file descriptor leak in _log * Fix missing revisions in _changes?style=all_docs. * Improve handling of compaction at max_dbs_open limit. * JSONP responses now send "text/javascript" for Content-Type. * Link to ICU 4.2 on Windows. * Permit forward slashes in path to update functions. * Reap couchjs processes that hit reduce_overflow error. * Status code can be specified in update handlers. * Support provides() in show functions. * _view_cleanup when ddoc has no views now removes all index files. * max_replication_retry_count now supports "infinity". * Fix replication crash when source database has a document with empty ID. * Fix deadlock when assigning couchjs processes to serve requests. * Fixes to the document multipart PUT API. * Fixes regarding file descriptor leaks for databases with views.
2011-12-20Add a some missing header files and fix a cast.wiz60-22/+922
Adapt for db4 update post 4.5. Now dies with segfault during build: terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr [1] Abort trap (core dumped) ./cstoreqptest 0...
2011-12-17Update ruby-acts-as-versioned package to 0.6.0.taca3-12/+19
Depends on Ruby on Rails 3 and here is CHANGELOG although it would not be complete one. * (16 Jun 2008) Backwards Compatibility is overrated (big updates for rails 2.1) * Use ActiveRecord 2.1's dirty attribute checking instead [Asa Calow] * Remove last traces of #non_versioned_fields * Remove AR::Base.find_version and AR::Base.find_versions, rely on AR association proxies and named_scope * Remove #versions_count, rely on AR association counter caching. * Remove #versioned_attributes, basically the same as AR::Base.versioned_columns * (5 Oct 2006) Allow customization of #versions association options [Dan Peterson] *0.5.1* * (8 Aug 2006) Versioned models now belong to the unversioned model. @article_version.article.class => Article [Aslak Hellesoy] *0.5* # do versions even matter for plugins? * (21 Apr 2006) Added without_locking and without_revision methods. Foo.without_revision do @foo.update_attributes ... end *0.4* * (28 March 2006) Rename non_versioned_fields to non_versioned_columns (old one is kept for compatibility). * (28 March 2006) Made explicit documentation note that string column names are required for non_versioned_columns. *0.3.1* * (7 Jan 2006) explicitly set :foreign_key option for the versioned model's belongs_to assocation for STI [Caged] * (7 Jan 2006) added tests to prove has_many :through joins work *0.3* * (2 Jan 2006) added ability to share a mixin with versioned class * (2 Jan 2006) changed the dynamic version model to MyModel::Version *0.2.4* * (27 Nov 2005) added note about possible destructive behavior of if_changed? [Michael Schuerig]
2011-12-17Oops, it should not depends on activesupport but activerecord.taca1-2/+2
2011-12-17Make databases/ruby-acts-as-versioned02 package depend on Ruby on Rails 2taca1-4/+4
explicitly. Bump PKGREVISION.
2011-12-17Add and enable ruby-acts-as-versioned02.taca1-1/+2
2011-12-17Importing databases/ruby-acts-as-versioned package version 0.2.3 astaca4-0/+44
databases/ruby-acts-as-versioned02.