summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2010-01-16Set or updated LICENSEheinz1-1/+2
2010-01-16Remove workaround for compiler bug in gcc2 on sparc64.wiz6-25/+6
2010-01-16Updating databases/p5-ORLite from 1.28nb1 to 1.31sno2-9/+9
pkgsrc changes: - Adjusting dependencies according to META.yml - Adding license definition - Changing module type to Module::Install Upstream changes: 1.31 Sat 2 Jan 2010 - Adding explicit versioned-use lines to the generated code (in case the generated code is used independantly to its creation) 1.30 Sat 2 Jan 2010 - Switching to a production release, CPAN Testers looks ok - Update DBD::SQLite dependency to 1.27. Some of the metadata pragmas have changed, and we don't want to have to support both the old and new versions. - ORLite will now correctly use RaiseError => 1, PrintError => 0 when itself introspecting the schema, so a corrupted SQLite database won't result in silent failure and the larger parent application won't crash in unpredictable ways. 1.29_03 Thu 1 Oct 2009 - Reverse the prune deletion order - Apply recursive delete flag 1.29_02 Tue 29 Sep 2009 - Changed ->load to use selectrow_hashref - Allow ->load calls for multiple-columns primary keys - All connections now explicitly RaiseError => 1 for correctness - All connections now explicitly PrintError => 0 to avoid spewing stuff to STDOUT/STDERR unexpectedly in embedded scenarios. - Remove most explicit error handling and allow the native DBI errors to cascade upwards instead. 1.29_01 Mon 28 Sep 2009 - Adding first experimental implementation of ->load
2010-01-16DBI meanwhile has 3 digit minor version - adjust buildlink3.mksno1-2/+2
2010-01-16Updating databases/p5-DBD-SQLite from 1.25 to 1.29.sno2-9/+10
pkgsrc changes: - Correcting license to ${PERL5_LICENSE} - Updating dependencies - database/sqlite3 isn't used anymore - only the bundled sqlite Upstream changes: 1.29 Fri 8 Jan 2010 - Updated to SQLite 3.6.22 (DUNCAND) 1.28_02 Sun 3 Jan 2010 - Now empty (or comment only) statements won't cause segv or "not an error" errors. Spotted by TOKUHIROM. (ISHIGAKI) - Resolved #52573: previous fix always turned on the AutoCommit flag; it goes along with the behavior of the internal library but broke compat. (ISHIGAKI) - Removed the SQLITE_CORE and SQLITE_PRT_SZ flags at the recommendation of the SQLite mailing list. (ADAMK) 1.28_01 Tue 22 Dec 2009 - Updated to SQLite 3.6.21 (ISHIGAKI) - silence warnings on HP-UX (HMBRAND) - Resolved #52573: Manual Transaction handling seems to be broken (hopefully) (ISHIGAKI) 1.27 Mon 23 Nov 2009 - Switching to a production version 1.26_07 Sun 15 Nov 2009 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Foreign keys support is once again disabled by default. It seems to have a greater impact than we expected and it actually broke things. This feature probably will be enabled by default by the sqlite team in the future, and eventually you'll need to cope with it, but right now we agreed with some discussion to give you more time to be prepared. If you use referential stuff in your schema (which sqlite ignores now) should do extensive testing to ensure that they will work when you issue "PRAGMA foreign_keys = ON". (ISHIGAKI) - Updated to SQLite 3.6.20 (DUNCAND) - Resolved #50935: there remained old "unicode" attribute usage in the pod, spotted by ASHLEY. (ISHIGAKI) 1.26_06 Wed 28 Oct 2009 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Removed undocumented (and most probably unused) reset method from a statement handle (which was only accessible via func().) Simply use "$sth->finish" instead. (ISHIGAKI) - Now DBD::SQLite supports foreign key constraints by default. Long-ignored foreign keys (typically written for other DB engines) will start working. If you don't want this feature, issue a pragma to disable foreign keys. (ISHIGAKI) - Renamed "unicode" attribute to "sqlite_unicode" for integrity. Old "unicode" attribute is still accessible but will be deprecated in the near future. (ISHIGAKI) - You can see file/line info while tracing even if you compile with a non-gcc compiler. (ISHIGAKI) - Major code refactoring. (ISHIGAKI) - Pod reorganized, and some of the missing bits (including pragma) are added. (ISHIGAKI) 1.26_05 Thu 15 Oct 2009 - Updated to SQLite 3.6.19 (ISHIGAKI) 1.26_04 Tue 6 Oct 2009 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Resolved #49716: Fixed $dbh->column_info to work according to the spec in DBI and added support for attached databases. (VLYON) - Fixed $sth->primary_key_info to work according to the spec in DBI and changed the tests in t/27_metadata.t to reflect this. (VLYON) - Tweaked not to hide a real error by a "not an error" issued by another sqlite3 function between the failed sqlite3 function and the sqlite_error to report. Note that this change makes some failures issue two relevant errors at a time. (ISHIGAKI) - Updated to SQLite 3.6.18 (DUNCAND) - Resolved #48393: previous effort was not enough; BegunWork should also be handled properly (ISHIGAKI) - Replaced last DBILOGFP with DBIc_LOGPIO(imp_xxh) (ISHIGAKI) - Tweaked t/08_busy.t not to fail just because it is tested under a very, very slow (virtual) machine. (ISHIGAKI) - Added a code to look for a compiler from Module::Install::Can. (ISHIGAKI) - Added documentation and an 'Escape' attribute for $sth->table_info. (VLYON) 1.26_03 Wed 12 Aug 2009 - Updated to SQLite 3.6.17 (ISHIGAKI) - Switched to use :memory: for most of the tests (ISHIGAKI) - Fixed a memory leak when prepare should fail (ISHIGAKI) - Added support for commit/rollback/update hooks (DAMI) - Added support for set_authorizer (DAMI) - Added support for collation_needed(), and reorganised driver API for user-defined collations (DAMI) - Exported constants from sqlite3.h into DBD::SQLite namespace (DAMI) - Added support in t/lib/Test.pm for checking both versions of driver-private methods ("func" / "sqlite_*") (DAMI) - Removed unused and obsolete "list_tables" from SQLite.xs (DAMI) - Added a default implementation for the REGEXP infix operator (DAMI) - Renamed several internal sqlite3_ functions to sqlite_ for clarity (ISHIGAKI) - Accept empty filename at connect (sqlite will open a tempfile) (DAMI) - Documented the connect() method (DAMI) - Replaced imp_dbh->in_tran with sqlite3_get_autocommit(), hoping this would fix the annoying rollback issues, including #48393 (ISHIGAKI) - META.yml requires is now generated instead of being derived from the (incorrect) PREREQ_PM values by ExtUtils::MakeMaker (ADAMK) 1.26_02 Fri 19 Jun 2009 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Resolved #46831: table_info schema is incorrect and doesn't work with attached databases (VLYON/ISHIGAKI) - Updated to SQLite 3.6.15 (DUNCAND) - Resolved #44882: Use of $h->func() should be deprecated and replaced with calls to driver-private 'installed methods' (ISHIGAKI) - Added access to Online Backup functionality. (TJC) - Added enable_load_extension pod (ISHIGAKI) - Now private methods/functions return true after successful calls (#44871) (ISHIGAKI) - Removed all of the "croak"s (#44871) (ISHIGAKI) 1.26_01 Tue 5 May 2009 - Added ORDINAL_POSITION support for $dbh->column_info (ADAMK) - Applied several fixes from GFUJI to clean up code (#45578) (ISHIGAKI) - Skipped some of the unicode path tests under cygwin (#45166) (JDHEDDEN) - Added some explanation and workarounds for a SQL that compares a return value of a function with a numeric bind value (ISHIGAKI)
2010-01-16Added LDAP authentication as an optionadam2-3/+11
2010-01-16Added LDAP authentication as an optionadam2-3/+11
2010-01-11Match 3.6.20 behaviour & build threadsafe. Fix PR/42515 & issues with ↵abs1-2/+3
firefox. Bump PKGREVISION
2010-01-08Use the modern DES API.joerg2-1/+64
2009-12-23Explicitly request patches to be applied.joerg1-1/+3
2009-12-23MAKE_JOBS_SAFE=no.obache1-1/+4
2009-12-21Update ruby-ldap package to 0.9.9.taca2-8/+8
This is a leaf package and this update solve the build problem with recent OpenLDAP. * pkgsrc change: Switch to use rubyforge.org from sourceforge.net. Thu Jun 11 06:51:30 UTC 2009 Alexey Chebotar <alexey.chebotar@gmail.com> * Version 0.9.9 * Fixed LDAP::VERSION. Thanks to Kouhei Sutou * Gem Packaging Support. Thanks to S. Potter [mbbx6spp] Tue Apr 21 14:46:38 UTC 2009 Alexey Chebotar <alexey.chebotar@gmail.com> * LDAP_OPT_X_TLS_PROTOCOL changed to LDAP_OPT_X_TLS_PROTOCOL_MIN (more information in ITS#5655). Thanks to Milos Jakubicek. Wed Apr 15 11:38:06 UTC 2009 Alexey Chebotar <alexey.chebotar@gmail.com> * Fixed regular expression in LDAP::Schema.attr()
2009-12-19Introduce PKG_OPTIONS for database/tokyocabinet to select compression supportobache8-17/+77
(zlib/bzip2/lzo/lzma and enabled by default for former two). LZO and LZMA supports are exclusive, optional and should be selected by user's use-case (priority of data compression ratio, compression speed, or so on). Furthermore, Tokyocabinet uses archives/lzmalib for lzma support, but lzmalib conflicts with archivers/xz. It means if tokyocabinet is installed with lzma, failed to install xz, and result in failure of "make extract" for packages using .lzma/.xz distfiles. This issue also resolved by optionify lzma support and disabled by default. This changes also make tokyocabinet ABI changes, so bump PKGREVISION and recursive bump. OKed to commit in freeze by wiz@.
2009-12-16Changes 8.2.15:adam6-17/+50
* Protect against indirect security threats caused by index functions changing session-local state * Reject SSL certificates containing an embedded null byte in the common name (CN) field * Fix possible crash during backend-startup-time cache initialization * Prevent signals from interrupting VACUUM at unsafe times * Fix possible crash due to integer overflow in hash table size calculation * Fix very rare crash in inet/cidr comparisons * Ensure that shared tuple-level locks held by prepared transactions are not ignored * Fix premature drop of temporary files used for a cursor that is accessed within a subtransaction * Fix incorrect logic for GiST index page splits, when the split depends on a non-first column of the index * Don't error out if recycling or removing an old WAL file fails at the end of checkpoint * Ensure WAL files aren't repeatedly archived on Windows * Fix PAM password processing to be more robust * Fix processing of ownership dependencies during CREATE OR REPLACE FUNCTION * Fix bug with calling plperl from plperlu or vice versa * Fix session-lifespan memory leak when a PL/Perl function is redefined * Ensure that Perl arrays are properly converted to PostgreSQL arrays when returned by a set-returning PL/Perl function * More...
2009-12-16sync w/ base pkgdrochner3-9/+8
2009-12-16update to 3.6.21drochner2-7/+6
changes: -SQL output resulting from sqlite3_trace() is now modified to include the values of bound parameters -Performance optimizations targetting a specific use case from a single high-profile user -FTS3 extension has undergone a major rework and cleanup -fixed the SQLITE_SECURE_DELETE compile-time option -Improvements to "dot-command" handling in the Command Line Interface -Other minor bug fixes and documentation enhancements
2009-12-16Changes 8.3.9:adam6-16/+48
* Protect against indirect security threats caused by index functions changing session-local state * Reject SSL certificates containing an embedded null byte in the common name (CN) field * Fix possible crash during backend-startup-time cache initialization * Avoid crash on empty thesaurus dictionary * Prevent signals from interrupting VACUUM at unsafe times * Fix possible crash due to integer overflow in hash table size calculation * Fix very rare crash in inet/cidr comparisons * Ensure that shared tuple-level locks held by prepared transactions are not ignored * Fix premature drop of temporary files used for a cursor that is accessed within a subtransaction * Fix memory leak in syslogger process when rotating to a new CSV logfile * Fix Windows permission-downgrade logic * Fix incorrect logic for GiST index page splits, when the split depends on a non-first column of the index * Don't error out if recycling or removing an old WAL file fails at the end of checkpoint * Ensure WAL files aren't repeatedly archived on Windows * Fix PAM password processing to be more robust * Raise the maximum authentication token (Kerberos ticket) size in GSSAPI and SSPI authentication methods * More...
2009-12-16Changes 8.4.2:adam6-15/+19
* Protect against indirect security threats caused by index functions changing session-local state * Reject SSL certificates containing an embedded null byte in the common name (CN) field * Fix hash index corruption * Fix possible crash during backend-startup-time cache initialization * Avoid crash on empty thesaurus dictionary * Prevent signals from interrupting VACUUM at unsafe times * Fix possible crash due to integer overflow in hash table size calculation * Fix crash if a DROP is attempted on an internally-dependent object * Fix very rare crash in inet/cidr comparisons * Ensure that shared tuple-level locks held by prepared transactions are not ignored * Fix premature drop of temporary files used for a cursor that is accessed within a subtransaction * Fix memory leak in syslogger process when rotating to a new CSV logfile * Fix memory leak in postmaster when re-parsing "pg_hba.conf" * Fix Windows permission-downgrade logic * Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries * Fix bug with a WITH RECURSIVE query immediately inside another one * Fix concurrency bug in hash indexes * Fix incorrect logic for GiST index page splits, when the split depends on a non-first column of the index * Fix wrong search results for a multi-column GIN index with fastupdate enabled * More...
2009-12-15Adding the pgxs makefiles using post-install which other packagesfhajny2-3/+33
like PostGIS build against.
2009-12-15Recursive bump for libltdljoerg7-10/+14
2009-12-15Use gmake. Makes it build with openjdk7.tnn1-1/+2
XXX this package is severly outdated, should be replaced by java-db4.
2009-12-14Missing directories.joerg1-2/+2
2009-12-14Missing directory.joerg1-2/+2
2009-12-08Correctly build the module using the libtool approach. It worked more byjoerg3-9/+9
luck than intentional before. Bump revision.
2009-12-07fix building with Sybase libraries that share the name libintl with gettexttez1-1/+3
no PKGREVISION bump because this failed to build previously closes PR#40222
2009-12-06Add & enable p5-ORLite-Migrateseb1-1/+2
2009-12-06Initial import of p5-ORLite-Migrate version 1.05 in the NetBSDseb3-0/+40
Packages Collection. The Perl 5 module ORLite::Migrate is a light weight single class Database Schema Migration enhancement for the module ORLite. It provides a simple implementation of schema versioning within the SQLite database.
2009-12-06Update p5-ORLite from version 1.28 to version 1.28nb1.seb1-1/+4
Pkgsrc changes: - Fix minimum version for dependency databases/p5-DBI - Bump PKGREVISION to 1
2009-12-06Add & enable p5-ORLiteseb1-1/+2
2009-12-06Initial import of p5-ORLite version 1.28 in the NetBSD Packagesseb3-0/+35
Collection. The Perl 5 module ORLite is an object-relation system specifically tailored for SQLite that follows many of the same principles as the ::Tiny series of modules and has a design and feature set that aligns directly to the capabilities of SQLite.
2009-12-06Update p5-Sort-SQL from version 0.07 to version 0.08.seb2-6/+6
Upstream changes: 0.08 29 Nov 2009 - fix regex in SQL-injection filter from 0.07 to allow table prefixes on column names.
2009-12-03Update "phpmyadmin" package to version 2.11.9.6. Changes since 2.11.9.5:tron2-6/+7
- [security] XSS and SQL injection, thanks to Herman van Rink
2009-12-01Update rails packages to 2.3.5. This fixes a cross-site scriptingminskim2-7/+7
vulnerability in ruby-actionpack. Major changes: - Improved compatibility with Ruby 1.9 - RailsXss plugin availability - Fixes for the Nokogiri backend for XmlMini
2009-11-30Pass down includedir, guessing that they want to look for tokyocabinet.joerg2-2/+6
2009-11-30Fix DESTDIR.joerg1-1/+3
2009-11-29Update p5-Sort-SQL from version 0.06 to version 0.07.seb2-7/+7
Pkgsrc changes: - whitesapce fix to placate pkglint Upstream changes: 0.07 20 Nov 2009 - avoid possible SQL injection by skipping any column names that match \W
2009-11-29Update p5-Catalyst-Model-DBIC-Schema from version 0.29nb1 to version 0.31.seb2-7/+7
Upstream changes: 0.31 Sun Oct 18 18:50:00 BST 2009 - update for copyright info 0.30 Sun Oct 18 01:35:36 EDT 2009 - change no sources error to a warning (with a way to turn it off) - write connect_info to Model without a create= option as well
2009-11-29+ ruby-ldapobache1-1/+2
2009-11-29Import ruby-ldap-0.9.8 as databases/ruby-ldap.obache4-0/+57
'Ruby/LDAP' is a Ruby extension library that provides an interface to the LDAP API as described in RFC1823.
2009-11-26Update "mysql5-client" and "mysql5-server" package to version 5.0.88.tron15-221/+147
This release fixes a large number of bugs and security vulnerabilities including SA37372. For detailed list of all the changes since 5.0.67 have a look here, please: http://dev.mysql.com/doc/refman/5.0/en/news-5-0-x.html
2009-11-25add and enable datadrawdmcmahill1-1/+2
2009-11-25Initial import of datadraw-3.1.1dmcmahill5-0/+88
DataDraw is an ultra-fast persistent database for high performance programs written in C. It's so fast that many programs keep all their data in a DataDraw database, even while being manipulated in inner loops of compute intensive applications. DataDraw databases are compiled, and directly link into your C programs. DataDraw databases are resident in memory, making data manipulation even faster than if they were stored in native C data structures (really). DataDraw databases can be persistent. Modifications to persistent data are written to disk as they are made, which of course dramatically slows write times. However, DataDraw databases can also be volatile. Volatile databases exist only in memory, and only for the duration that your program needs it. Volatile databases can be directly manipulated faster than C structures, since data is better organized in memory to optimize cache performance DataDraw supports modular design. An application can have one or more common persistent databases, and multiple volatile databases to support various tools' data structures. Classes in a tool's database can extend classes in the common database. DataDraw is also 64-bit optimized, allowing programs to run much faster and in less memory than standard C programs using 64-bit pointers. This is because DataDraw databases supports over 4 billion objects of a given class with 32-bit object references.
2009-11-25TokyoCabinet related HOMEPAGEs have been moved.obache8-16/+16
2009-11-22Update p5-Jifty-DBI from version 0.58 to version 0.59.seb2-6/+6
Upstream changes: 0.59 Wed Nov 18 20:12:57 EST 2009 - Features: * Support a special value of "all" in set_page_info - Fixes: * Make "default is ''" propagate correctly to ALTER and CREATE TABLE statements - Installation: * Our Module::Install was hilariously out of date
2009-11-21Switch to amalgamation style sqlite3 build. This is the recommendedtnn9-5834/+295
way to build sqlite3 according to upstream. It should give a small performance increase due to static inlining, but more importantly lets us avoid manual maintenance of sqlite3.h. Bump revisions for sqlite3 and sqlite3-tcl.
2009-11-19Update mytop to 1.6fhajny2-9/+10
Too many changes, see HOMEPAGE.
2009-11-18Update from version 0.08112 to version 0.08114.seb3-20/+8
Pkgsrc changes: - Adjust dependencies. - Remove optional dependency on databases/p5-SQL-Translator, as SQL::Translator it is a rather heavy and unperly (wrt to its own dependencies) and only really needed for DBIx::Class authors. Upstream changes: 0.08114 2009-11-14 17:45:00 (UTC) - Preliminary support for MSSQL via DBD::ADO - Fix botched 0.08113 release (invalid tarball) 0.08113 2009-11-13 23:13:00 (UTC) - Fix populate with has_many bug (RT #50828) - Fix Oracle autoincrement broken for Resultsets with scalar refs (RT #50874) - Complete Sybase RDBMS support including: - Support for TEXT/IMAGE columns - Support for the 'money' datatype - Transaction savepoints support - DateTime inflation support - Support for bind variables when connecting to a newer Sybase with OpenClient libraries - Support for connections via FreeTDS with CASTs for bind variables when needed - Support for interpolated variables with proper quoting when connecting to an older Sybase and/or via FreeTDS - bulk API support for populate() - Transaction support for MSSQL via DBD::Sybase - Add is_paged method to DBIx::Class::ResultSet so that we can check that if we want a pager - Skip versioning test on really old perls lacking Time::HiRes (RT #50209) - Fixed on_connect_do/call regression when used with a coderef connector (RT #50003) - A couple of fixes to Ordered to remedy subclassing issues - Fixed another lingering problem with PostgreSQL auto-increment support and its interaction with multiple schemas - Remove some IN workarounds, and require a recent version of SQLA instead - Improvements to populate's handling of mixed scalarref values - Fixed regression losing result_class after $rs->find (introduced in 0.08108) - Fix in_storage() to return 1|0 as per existing documentation - Centralize handling of _determine_driver calls prior to certain ::Storage::DBI methods - Fix update/delete arbitrary condition handling (RT#51409) - POD improvements
2009-11-18Add py-elixir.he1-1/+2
2009-11-18Import databases/py-elixir version 0.7.0,he4-0/+88
submitted in PR#42302 by Fredrik Pettai. Elixir is a declarative layer on top of the SQLAlchemy library.
2009-11-18Update from version 0.4.7p1 to 0.5.6.he3-31/+67
This updates to a new stable branch of SQLAlchemy. The list of changes are too extensive to include verbatim here, the change log for the 0.5.6 release (and the rest of the 0.5 releases) is available at http://www.sqlalchemy.org/trac/browser/sqlalchemy/tags/rel_0_5_6/CHANGES These changes were submitted as PR#42260 by Fredrik Pettai.