summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2009-01-07Update to 4.7.3:wiz3-7/+13
4.7.3: (Python 2.6 release. First release with Python 3.0 support) * "private" is a keyword in C++. (Duncan Grisby) * setup.py should install "bsddb.h". (Duncan Grisby) * "DB_remove" memory corruption & crash. (Duncan Grisby) * Under Python 3.0, you can't use string keys/values, but bytes ones. Print the right error message. * "DB.has_key()" allowed transactions as a positional parameter. We allow, now, transactions as a keyword parameter also, as documented. * Correct "DB.associate()" parameter order in the documentation. * "DB.append()" recognizes "txn" both as a positional and a keyword parameter. * Small fix in "dbshelve" for compatibility with Python 3.0. * A lot of changes in "dbtables" for compatibility with Python 3.0. * Huge work making the testsuite compatible with Python 3.0. * In some cases the C module returned Unicode strings under Python 3.0. It should return "bytes", ALWAYS. Solved. * Remove a dict.has_key() use to silence a warning raised under Python2.6 -3 parameter. Python SVN r65391, Brett Cannon. * Solve some memory leaks - Neal Norwitz * If DBEnv creation fails, library can crash. (Victor Stinner) * Raising exceptions while doing a garbage collection will kill the interpreter. (Victor Stinner) * Crash in "DB.verify()". Noted by solsTiCe d'Hiver.
2009-01-04Move scrollkeeper/omf.mk to rarian/omf.mk.wiz3-6/+6
scrollkeeper is nowadays included in rarian, so the omf.mk file should be there as well. Adapt all references.
2009-01-04Update ruby-tokyotyrant to 1.2, for tokyotyrant-1.1.10.obache3-9/+9
2009-01-04Update p5-tokyotyrant to 1.4, for tokyotyrant-1.1.10.obache2-6/+6
2009-01-04Update tokyodystopia to 1.1.11.obache4-15/+28
Changes: 2008-12-08 Mikio Hirabayashi <mikio@users.sourceforge.net> * tcrdb.c (tcrdbmisc): the return value of the "getlist" function was modified. * scrext.c (serv_misc): new function. - Release: 1.1.11 2008-12-08 Mikio Hirabayashi <mikio@users.sourceforge.net> * ttutil.c (tcsocksetlife): new function. * scrext.c (scrextnew): "_thnum" parameter was added. * scrext.c (serv_foreach, serv_stashvanish, serv_stashforeach): new functions. * ttserver.c (do_misc): new function. * tculog.c (tculogadbmisc): new function. - Release: 1.1.10
2009-01-04Fixes build failure on NetBSD.obache2-2/+20
pthread_yield() is not in NetBSD's pthread.
2009-01-04Update TokyoCabinet to 1.3.27.obache3-8/+9
Changes: 2009-12-27 Mikio Hirabayashi <mikio@users.sourceforge.net> * tcadb.c (tcadbmisc): the return value of the "getlist" function was modified. - Release: 1.3.27 2008-12-17 Mikio Hirabayashi <mikio@users.sourceforge.net> * tchdb.c (tchdbforeach): global locking was replaced by record locking. * tcbdb.c (tcbdbforeachimpl): cache adjustment was added. * tcadb.c (tcadbmisc): new function. - Release: 1.3.26
2009-01-02Updated databases/rrdtool12 to 1.2.29martti4-16/+14
Features: - a second axis can now be displayed in rrd_graph. look for documentation on second-axis. feature was sponsored by VoltWerk. Bugfixes: - rrd_fetch: is more careful when seeking. it should not try to seek outside the file anymore. - rrd_graph: CDEF:x= raises an error now and does not segfault - rrd_graph: --font TITLE:12: problem fixed (affecting cacti) - rrd_graph: make VDEF work with SHIFT (bug #177) - rrd_xport: make it work when exporting datasources without uniform step size. - rrd_tool: rely on function return values and not on errno. (bug #176)
2009-01-02Updated databases/rrdtool to 1.3.5martti3-10/+8
Features: - a second axis can now be displayed in rrd_graph. look for documentation on second-axis. feature was sponsored by VoltWerk. - win32 port of the source. see WIN32-BUILD-TIPS.txt for details. contributed by exitgames Bugfixes: - rrd_fetch: is more careful when seeking. it should not try to seek outside the file anymore. - rrd_restore: works on platforms where "NaN" is not represented as "NaN" works now (HPUX) - rrd_graph: label ordering in --full-size is correct now. - ruby bindings: fix for last method - perl bindings: fix for build on MacOSX - rrd_update: make sure time stamp of rrd files get updated even on platforms with broken MS_ASYNC implementations (osx and old linux) - rrd_graph: CDEF:x= raises an error now and does not segfault - Solaris isfinite portability improved - rrd_graph: --font TITLE:12: problem fixed (affecting cacti)
2009-01-01Upgrade to 4.0. This is a major release and may risk some backwardsdarcy2-10/+10
incompatibilities. Here are the major changes. - Dropped support for Python below 2.3 and PostgreSQL below 7.4. - Improved performance of fetchall() for large result sets by speeding up the type casts (as suggested by Peter Schuller). - Exposed exceptions as attributes of the connection object. - Exposed connection as attribute of the cursor object. - Cursors now support the iteration protocol. - Added new method to get parameter settings. - Added customizable row_factory as suggested by Simon Pamies. - Separated between mandatory and additional type objects. - Added keyword args to insert, update and delete methods. - Added exception handling for direct copy. - Release the GIL while making a connection (as suggested by Peter Schuller). - If available, use decimal.Decimal for numeric types. - Allow DB wrapper to be used with DB-API 2 connections (as suggested by Chris Hilton). - Made private attributes of DB wrapper accessible. - Dropped dependence on mx.DateTime module. - Support for PQescapeStringConn() and PQescapeByteaConn(); these are now also used by the internal _quote() functions. - Added 'int8' to INTEGER types. New SMALLINT type. - Added a way to find the number of rows affected by a query() with the classic pg module by returning it as a string. For single inserts, query() still returns the oid as an integer. The pgdb module already provides the "rowcount" cursor attribute for the same purpose. - Improved getnotify() by calling PQconsumeInput() instead of submitting an empty command. - Removed compatibility code for old OID munging style. - The insert() and update() methods now use the "returning" clause if possible to get all changed values, and they also check in advance whether a subsequent select is possible, so that ongoing transactions won't break if there is no select privilege. - Added "protocol_version" and "server_version" attributes. - Revived the "user" attribute. - The pg module now works correctly with composite primary keys; these are represented as frozensets. - Removed the undocumented and actually unnecessary "view" parameter from the get() method. - get() raises a nicer ProgrammingError instead of a KeyError if no primary key was found. - delete() now also works based on the primary key if no oid available and returns whether the row existed or not.
2008-12-31Force -ldl on Linux, as this uses dlopen and friends. Also filed bug report:epg1-1/+6
http://www.sqlite.org/cvstrac/tktview?tn=3555
2008-12-20Update from version 0.005nb1 to 0.007.he2-7/+6
Upstream changes: 0.007 4 Dec 2008 * add fuzzify2 feature 0.006 22 Nov 2008 * fix overload bug for Test::More 0.86
2008-12-20Update from version 0.09001 to 0.09002.he2-8/+7
Pkgsrc changes: o Canonicalize HOMEPAGE Upstream changes: # ---------------------------------------------------------- # 0.09002 2008-12-05 # ---------------------------------------------------------- * parsing MySQL CURRENT_TIMESTAMP as scalar ref so it can be produced without quotes (jgoulah) * Add ignore_opts parser arg (to ignore table options) in Parser::MySQL (jgoulah) * Skip tests for buggy Spreadsheet::ParseExcel versions (rbo) * Add support for skip tables parser arg in Parser::DBI::MySQL (jgoulah) * Changed behaviour of ::Producer::Oracle when returning an array of statements to make it compatible to DBI->do() * Fixed a few bugs in ::Producer::Oracle * Applied patch from jgoulah to support mysql's MERGE option * Applied patch from rbo to add support of multiple database events on a trigger * Applied patch from lukes to allow drop if exists in sqlite producer, with version >= 3.3 * Applied patch from rjbs with minor changes, now we support scalar refs in default values! * Fixed SQLite producer to end index statements in newlines, in scalar context * Decreed that all list context statements shall not end in ; or ;\n * Fixed SQLite, Diff and MySQL producers to agree with Decree. * Added support for CREATE VIEW + tests in the Pg producer (wreis) * Added support for CREATE VIEW + tests in the sqlite producer (groditi) * Added proper argument parsing and documentation to MySQL Parser and Producer (ribasushi) * Using DROP VIEW instead of OR REPLACE clause in the Pg producer, as replace only allows replacement with identical set of columns (wreis) * Added support for DROP VIEW and fixed CREATE VIEW statement in the sqlite producer (wreis) * Removed source_db and target_db accessors from Diff (throwback to old version, only output_db is used) * Support for longer varchar fields in MySQL
2008-12-20Updte from version 0.12 to 0.13.he4-21/+93
Pkgsrc changes: o Fix the problem with the sqlite3-using regression test properly; apparently sqlite3 thinks it's an error to drop a nonexistent table. This is a follow-up on CPAN ticket #41769. o Adapt substitution pattern for sqlite3 after upstream change. o Add dependency on p5-IPC-Cmd, as per upstream change. Upstream changes: 0.13 16 Dec 2008 * fixes for Perl 5.10 File::Copy * use IPC::Cmd::run to create db in t/lib/MyDB.pm
2008-12-19sortjnemeth1-2/+2
2008-12-18Add NetBSD-5 support.obache2-1/+26
2008-12-18Update from version 1.19nb1 to 1.22.he2-7/+27
Based on diffs and testing done by Jens Rehsack, while following up on PR#39232, patch also submitted there. Pkgsrc changes: o Support different oracle library options o Add HOMEPAGE using search.cpan.org Upstream changes: Changes in DBD-Oracle 1.21(svn rev 11067) 11th April 2008 ^ Added Notes to README.win32.txt on installing Instant Client 11.1.0.6.0 from John Scoles Added the oci_typecode_name method to get the name rather than just the number of an OCI_TYPECODE from John Scoles Fixed a unreported bug with Embedded Objects from John Scoles Fixes for #34621 & 33791 from RT cpan Added patch to allow faster fetch from REF CURSORs from Biswadeep Chowdhury Updated the Todo file for next version from John Scoles Added support for the 10.2 Data Interface for Persistent LOBs by John Scoles Changed the way pre-fetching is done by John Scoles Added support for Scrollable cursors from John Scoles Changed the max size of cache_rows to a sb4 rather than a int and or a ub4 from John Scoles Added support for Lobs in select of OCI Embedded Objects from John Scoles with a big thankyou to Paul Weiss Fixed for embedded object in object from Paul Weiss Added support for direct insert of large XML data into XMLType fields from Hendrik Fuss & John Scoles Fixed memory leak (not releasing Temp Lob with OCILobFreeTemporary) when created for a bind from John Scoles Added support for bind_param_inout_array for use with execute_array from John Scoles Added enhancement for Embedded Objects handling from Paul G. Weiss Fixed to Makefile.PL let it read makefiles from other makes from Alexander V Alekseev Updated POD to tell users to Avoid Using "SQL Call" from Charles Jardine Updated POD to account for rt.cpan.org #30910: "DBD-Oracle crashes when trying to read empty LOB" from John Scoles Added DBD::Oracle impdata/threads patch from Jeffrey Klein Changes in DBD-Oracle 1.20(svn rev 10517) 11th January 2008 ^ Fixed lob test so it skips the one test that relies on it if v$ session. from Rafael Kitover Fixed // with /* */ in dbdimp.c from John Scoles Fixed for execute_for_fetch in Oracle.pm returning 0 instead of 0E0. from Martin J. Evans Added README.64bit.txt that contains help for compiling on 64 bit boxes from John Scoles Fixed typo in Oracle.pm from Tom R. Added support for ora_charset, ora_ncharset from Stephen J. Smith Fixed Makefile.PL for better handling of empty array in File::Find::find from Slaven Rezic Fixed references to README.clients.txt in Makefile.PL from John Scoles Added PERL_NO_GET_CONTEXT for better multi-threaded support from John Scoles Changed required version of DBI to be 1.51 from John Scoles Fixed bug in 31lob.t from John Scoles Added notes on installing Instantclient .rpm to README.Lunix.txt Added support for OCI array bind from Alexander V Alekseev Added support for select of OCI Embedded Objects from John Scoles Added a tip in README.64bit.txt from cartmanltd Added fix to Makefile.PL for finding SQLplus for Ubuntu Server (but should work for others) from Martin J. Evans Added fix to Makefile.PL for Gentoo AMD64 from Tom R. Added fix to dbdimp.c for speed up of Null-Operations from Andreas Behal Added fix to dbdimp.c for SQLCS_NCHAR index use on varchar2s from Peter J. Holzer
2008-12-18Update from version 2.2.2nb3 to 2.11.7.he2-8/+7
This despite one of the self-tests failing. Pkgsrc changes: o Change HOMEPAGE to using search.cpan.org Upstream changes: 2.11.7 Released December 13, 2008 - Fix placeholder parsing logic (CPAN bug #41582) 2.11.6 Released November 30, 2008 (subversion r12126) - Only set UTF8 flag on array items after UTF8 test. (CPAN bug #41253) [Armando Santos] 2.11.5 Released November 24, 2008 (subversion r12102) - Clear prepared_statement name on failure to prepare: prevents the wrong error when using prepare_cached. [GSM] 2.11.4 Released November 12, 2008 - Don't set LC_MESSAGES unless superuser in tests. Remove all language-specific string checking for tests. (CPAN bug #40604) 2.11.3 Released November 3, 2008 (subversion r12031) - Force LC_MESSAGES to 'C' inside tests (CPAN bug #40604) - Minor compiler tweaks. - Fix small POD error (CPAN bug #40209) - Tweak Perl::Critic policy list (CPAN bug #40130) 2.11.2 Released October 15, 2008 (subversion r11983) - Fix core dump when invalid placeholders used. (CPAN bug #40075) [GSM] 2.11.1 Released October 14, 2008 (subversion r11980) - $sth->{ParamTypes} returns 'TYPE' when possible. 2.11.0 Released October 13, 2008 (subversion r11976) - $sth->{ParamTypes} now returns a hashref per the DBI docs. [GSM] - Adjustment of Makefile.PL to fix problem with Strawberry Perl. Thanks to Martin Evan (martin.evans@easysoft.com) and Brian (elspicyjack@gmail.com) on the dbi-users list. 2.10.7 Released September 22, 2008 (subversion r11869) - Fix test issue when dbname contains dashes. [Rainer Tammer] - Revert META.yml to 1.0, until such time as tools can handle 1.1 (CPAN bug #39461) [Taro Nishino] 2.10.6 Released September 19, 2008 (subversion r11830) - Correctly quote all bytea characters. (CPAN bug #39390) [Rod Taylor] - Prevent core dump when checking $dbh->{standard_conforming_strings} on older servers. [GSM] - Skip unicode tests if server is set to 'LATIN1' [GSM] 2.10.5 Released September 16, 2008 (subversion r11800) - Fix SIGNATURE file 2.10.4 Released September 16, 2008 (subversion r11797) - Force use of math library when compiling. Per report of AIX problems by Rainer Tammer. 2.10.3 Released August 31, 2008 (subversion r11706) - Previous version had wrong SIGNATURE file 2.10.2 Released August 31, 2008 (subversion r11704) - Fix minor problem in t/99_yaml.t 2.10.1 Released August 31, 2008 (subversion r11697) - Minor testing fix. 2.10.0 Released August 26, 2008 (subversion r11678) - Add the 'DBD' trace setting to output only non-DBI trace messages, and allow 'dbd_verbose' as a connection attribute for the same effect. [GSM] - Fix a minor problem with testing against 7.4 databases [GSM] - Allow multi-statement do() calls with parameters to work if pg_server_prepare is set to 0 (CPAN bug #38623) [GSM] 2.9.2 Released August 18, 2008 (subversion r11664) - Empty Postgres arrays should return empty Perl arrays, not undef. (CPAN bug #38552) [David E. Wheeler] 2.9.1 Released August 17, 2008 (subversion r11660) - Return undef when mapping Postgres array to Perl array and the array is empty '{}'. (CPAN bug #38552) [GSM] - Minor documentation improvements. [GSM] 2.9.0 Released August 3, 2008 (subversion r11624) - Add support for database handle attribute "ReadOnly". This allows use of $dbh->{ReadOnly} = 1 to enforce read only mode at the server level. [GSM] - Move PQexec structures to statement handle, to prevent excessive malloc and free within execute function. [GSM] - Add more attribute tests, improve testing system. [GSM] - Many documentation improvements. [GSM] - Win32 build improvements [T.J. Ferraro] 2.8.7 Released July 24, 2008 (subversion r11582) - Modify test scripts to work better on FreeBSD boxes. [GSM] - Much documentation improvement and POD tweaking. [GSM] 2.8.6 Released July 21, 2008 (subversion r11558) - More testing improvements to increase odds of all tests being run, especially when testing as root. [GSM] 2.8.5 Released July 13, 2008 (subversion r11529) - Fix an obscure bug in which a coredump occurs if client_min_messages is set to DEBUG3 or greater, and we then exit without disconnecting while AutoCommit is off. The new behavior is to simply not attempt to output the debugging information about the final 'rollback'. [GSM] - More documentation improvements. [GSM] 2.8.4 Released July 10, 2008 (subversion r11520) - Minor Perl::Critic test adjustments. [GSM] - Documentation enhancements. [GSM] - Yet more minor testing tweaks. [GSM] 2.8.3 Released July 6, 2008 (subversion r11495) - Minor testing functionality tweaks, lots of test cleanups, minor doc enhancements. [GSM] 2.8.2 Released June 29, 2008 (subversion r11466) - Minor testing tweaks, doc fixes. [GSM] 2.8.1 Released June 11, 2008 (subversion r11417) - Force testing to use a custom socket dir, to avoid permission problems. Thanks to Frank Wiegand for help in uncovering this. [GSM] 2.8.0 Released June 1, 2008 (subversion r11366) - Added in payload strings for LISTEN/NOTIFY in 8.4 via $dbh->pg_notifies() [GSM] - Fixed problem preventing some pg_type bind_arrays from working [GSM] - Fix tests in t.04misc.t to handle Windows newlines. (CPAN bug #36237) [Ian Macdonald] - Clean up get_info() information. [GSM] 2.7.2 Released May 14, 2008 (subversion r11269) - Handle embedded commas in quotes properly when destringifying arrays.(CPAN bug #35862) [GSM] - Fix typo in docs with trace_parser_flags() (Martin J. Evans) - More testing tweaks [GSM] 2.7.1 Released May 11, 2008 (subversion r11250) - Yet more minor testing tweaks. [GSM] 2.7.0 Released May 10, 2008 (subversion r11239) - Have $dbh->quote() return E'' when server is >= 8.1 and string contains backslashes. Fixes any problems with standard_conforming_strings. (CPAN bug #27538) [GSM] 2.6.6 Released May 7, 2008 (subversion r11214) - Fix minor problem in t/99_spellcheck.t [GSM] 2.6.5 Released May 7, 2008 (subversion r11209) - Add spell checker to tests. [GSM] - More tweaks to the testing suite. [GSM] 2.6.4 Released May 2, 2008 (subversion r11186) - More tweaks to the test suite. [GSM] 2.6.3 Released May 1, 2008 (subversion r11169) - Minor tweaks to the test suite. [GSM] 2.6.2 Released April 30, 2008 (subversion r11161) - Fix coredump when pg_getcopydata copies 0 rows into a freshly created var. (CPAN bug #35556) [David Harris] - Allow 'make test' create a test database from scratch if it cannot find an existing one to use. [GSM] 2.6.1 Released April 22, 2008 (subversion r11133) - Don't free placeholder section, fixes problem when using more than one named placeholder with the same name. (CPAN bug #35303) [GSM] 2.6.0 Released April 16, 2008 (subversion r11095) - Make pg_notifies a true function, so that you can now use $dbh->pg_notifies instead of $dbh->func('pg_notifies') [GSM] - Various performance improvements [GSM] - Fix minor build and compilation issues with Strawberry Perl [GSM] - Add Bundle::DBD::Pg [GSM] 2.5.1 Released April 7, 2008 (subversion r11056) - Correctly handle negative PID numbers on Win32 systems when generating prepared statement names (CPAN bug # 34738) [GSM] 2.5.0 Released March 23, 2008 (subversion r10990) - Add pg_enum_values to $dbh->column_info() [Dave Rolsky] (CPAN ticket #34351) - Minor test fixes. [GSM] 2.4.0 Released March 21, 2008 (subversion r10974) - Remove problematic and unneeded Test::Warn test from 00basic.t. - Add $sth->{pg_current_row} [GSM] 2.3.0 Released March 19, 2008 (subversion r10951) - Add $sth->{pg_bound} and $sth->{pg_numbound} [GSM] - Fix broken call to $sth->{pg_segments} [GSM]
2008-12-17Update from version 0.08nb1 to 0.12.he3-10/+40
Pkgsrc changes: o Canonicalize HOMEPAGE o Adjust dependencies to match the new requirements o Add substitution so that sqlite3 can be picked up by the tests Upstream changes: 0.12 22 Nov 2008 * add missing req in Makefile.PL * add IPC::Cmd dep so we can test for sqlite3 in tests 0.11 18 Nov 2008 * base controller no longer sets current_view * copy all static/css/crud/*.css files for CX::CRUD::YUI 0.008 0.10 29 Sept 2008 * added missing req to Makefile.PL 0.09 11 Sept 2008 * add real tests with example schema supplied by laust from #catalyst 0.09_05 27 Aug 2008 * fix UTF-8 encoding bug where JSON:XS utf8() flag was incorrectly set to 'on'. * move bulk of the code into smaller packages: CatalystX::CRUD::YUI Rose::HTMLx::Form::Related Rose::DBx::Object::MoreHelpers This refactoring means that DBIC users can use all the YUI interface and RHTMLO goodness as well. * changed the default root/<dir> to 'crud' instead of 'rdgc' IF YOU ARE UPGRADING, you can symlink or rename rdgc => crud 0.09_04 11 Aug 2008 * update .tt and .pm files to support multi-column PKs 0.09_03 31 July 2008 * split up rdgc/footer.tt into yui_footer.tt * add default_sort_by() to Form::Metadata * toggle rowsPerPage via select popup * throw_error if !can_read in autocomplete() * support on* attributes for js in autocomplete * added RDGC::Excel for .xls output * refactor the takes_object_as_argument feature * link_panel now uses same YAHOO ResizePanel widget as addRowPanel * use double ;; in primary_key_uri_escaped() to match CatalystX::CRUD 0.28 0.09_02 30 June 2008 * several small bug fixes with .tt files * allow for related_field mapping at init time * fix autocomplete CSS 0.09_01 13 Jun 2008 * use column as label if not defined in form * add support for file upload fields in form.tt * add support for alternate relationship labels in base Form class * add support for alternate relationship labels in show_relationships.tt * tweek the base RDBO flatten() method * added pseudo_field_labels() method in Form base class * no 'remove' button if in view mode * fix bug in yui_datatable_count.tt where js was getting NaN values if there were no results. * add 'New' link for each related matrix in show_relationships.tt * complete refactor of all .tt code to move much of it into YUI and YUI::DataTable * complete refactor of all generated code to move much of it into real base classes and installed .tt
2008-12-17Uhm, fix the package name to be p5-*.he1-1/+2
Since the timespan this was broken is short, no version bump for this.
2008-12-17Added p5-Rose-DBx-AutoReconnect.he1-1/+2
2008-12-17Import p5-Rose-DBx-AutoReconnect version 0.02.he3-0/+39
Rose::DBx::AutoReconnect is a subclass of Rose::DB. Additional features include: * If using new_or_cached() method, will ping() dbh on every fetch from cache to ensure that the dbh is connected. This extends the basic Rose::DB::Cache behaviour beyond mod_perl/Apache::DBI. * Convenient logger() method for debugging. * Always uses DBI connect_cached() method when creating handles. Rose::DBx::AutoReconnect was written to allow new_or_cached() to work with MySQL's "morning bug" and to allow for restarting your database without restarting your application. See also Rose::DBx::Cache::Anywhere.
2008-12-17Update from version 0.0013nb1 to 0.0014.he2-7/+8
Pkgsrc changes: o Change to Module::Build build method Upstream changes: 1.0014 Jun 13 23:15:00 2008 EST - (This version is compatible with 1.0013) - Fix for RT#36781 (t/44 has an unrequired dependency) - lock() has been aliased to lock_exclusive(). There is now a lock_shared() method. The :flock constants are no longer imported into the DBM::Deep namespace. **** THIS IS AN API CHANGE ****
2008-12-17Update from version 0.01nb1 to 0.02.he2-8/+7
Pkgsrc changes: o Fix obvious typo in HOMEPAGE URL Upstream changes: (uhm, no updated change log available)
2008-12-17Update from version 0.17 to 0.19.he2-6/+6
Upstream changes: 0.19 12 Dec 2008 * fix long-standing issue with passing additional args to load() via CXC::Object::RDBO->read 0.18 11 Dec 2008 * fix logic for mangling sort_by with table prefix. If the sort_by value already has a . (dot) in it, assume the request knew what it was doing.
2008-12-16Changes 3.6.7:adam2-6/+6
* Reorganize the Unix interface in os_unix.c * Added support for "Proxy Locking" on MacOSX. * Changed the prototype of the sqlite3_auto_extension() interface in a way that is backwards compatible but which might cause warnings in new builds of applications that use that interface. * Changed the signature of the xDlSym method of the sqlite3_vfs object in a way that is backwards compatible but which might cause compiler warnings. * Added superfluous casts and variable initializations in order to suppress nuisance compiler warnings. * Fixes for various minor bugs.
2008-12-16Update TokyoCabinet to 1.3.25.obache3-8/+8
Changes: 2008-12-16 Mikio Hirabayashi * tcbdb.c (tcbdbsearchleaf): performance was improved. - Release: 1.3.25
2008-12-15Bump PKGREVISION for tokyocabinet shlib revbump.obache1-1/+2
2008-12-15Update ruby-tokyocabinet to 1.18, for tokyocabinet-1.3.24.obache2-8/+7
2008-12-15Update p5-tokyocabinet to 1.20, for tokyocabinet-1.3.24.obache2-8/+7
2008-12-15Update TokyoCabinet to 1.3.24.obache4-11/+11
Changes: 2008-12-08 Mikio Hirabayashi * tcutil.c (tcmdbforeach, tcmdbforeachimpl): new functions. * tcutil.c (tcndbforeach, tcndbforeachimpl): new functions. * tcutil.c (tctreenew2, tcndbnew2): type of the comparison function was modified. * tcutil.c (tcstrdist, tcstrdistutf): maximum memory usage was limited. * tchdb.c (tchdbforeach, tchdbforeachimpl): new functions. * tchdb.c (tchdboptimizeimpl): performance was improved. * tcbdb.c (tcbdbforeach, tcbdbforeachimpl): new functions. * tcbdb.c (tcbdbsetcmpfunc): BDBCMP was changed to TCCMP. * tcbdb.c (tcbdbcmplexical, tcbdbcmpdecimal, tcbdbcmpint32, tcbdbcmpint64): removed. * tcfdb.c (tcfdbforeach, tcfdbforeachimpl): new functions. * tcadb.c (tcadbomode, tcadbreveal): new functions. - Release: 1.3.24
2008-12-15Update "phpmyadmin" package to version 2.11.9.4. Changes since 2.11.9.3:tron2-6/+6
- [security] possible XSRF on several pages
2008-12-15backout previous - the tests need tcl and the proper test targetmartin1-3/+1
already is provided by sqlite3-tcl
2008-12-15add the test targetmartin1-1/+3
2008-12-11updated to 0.07rhaen3-9/+15
took maintainership added MESSAGE - this package contains deprecated software Changelog: 0.07 14 Nov 2008 * DEPRECATED
2008-12-09Update from version 0.36 to version 0.37seb2-6/+6
Upstream changes: 0.37 8 Dec 2008 * support x-tunneled-method for DELETE in save() calls
2008-12-08Update distinfo, too.taca1-4/+4
2008-12-07Update from version 0.35 to version 0.36.seb1-2/+2
Upstream changes: 0.36 4 Dec 2008 * add cxc-fuzzy2 feature and document both it and cxc-fuzzy.
2008-12-07Add -f to ${RM} as some implementation of ${RM} (e.g. OpenSolairs) are a ↵adrianp1-2/+2
little sensitive when it comes to removing non-existent files.
2008-12-07Revision bump for shlib major bumo of tokyocabinet.obache2-2/+4
2008-12-07Update ruby-tokyotyrant to 1.1, for tokyotyrant-1.1.9.obache4-12/+28
2008-12-07Update p5-tokyotyrant to 1.3, for tokyotyrant-1.1.9.obache2-6/+6
2008-12-07Update tokyotyrant to 1.1.9.obache3-9/+11
2008-12-02 Mikio Hirabayashi * tcrdb.c (tcrdbputshl): new function instead of "tcrdbputrtt". * scrext.c (serv_isect, serv_union): new functions. - Release: 1.1.9 2008-10-30 Mikio Hirabayashi * scrext.c (serv_lock, serv_unlock): new functions. * usherette.lua: new file. - Release: 1.1.8
2008-12-07Update tokyocabinet to 1.3.23.obache5-32/+20
Changes: 2008-12-03 Mikio Hirabayashi * tcbdb.c (tcbdbtranbegin): conbination of non-transaction and transaction became safer. - Release: 1.3.23 2008-11-28 Mikio Hirabayashi * tcutil.c (tcmapput3, tcmdbput3, tcmapputcat3, tcmdbputcat3): new functions. * tcutil.c (tctreeput3, tcndbput3): new functions. * tcadb.c (tcadbput, tcadbputcat): LRU rule is now strictly applied. - Release: 1.3.22
2008-12-03Update from version 0.7 to version 0.8seb2-7/+8
Pkgsrc changes: - Add build dependency on databases/p5-DBIx-Class for test target Upstream changes: 0.08 17 Nov 2008 * add unique_value() method similar to Rose::DBx::Object::MoreHelpers
2008-11-30Update from version 0.02 to version 0.06seb2-7/+6
Upstream changes: 0.03 16 Sept 2008 * flatten now just a thin wrapper around as_tree() core Helper method 0.04 4 Nov 2008 * has_related() now checks if $self can $rel . _count and tries to handle it sanely if _count is not a method 0.05 4 Nove 2008 * oops. fix 0.04 fix to always turn **integer** not object. 0.06 10 Nov 2008 * add moniker() and unique_value() methods
2008-11-30Update from version 0.14 to version 0.17.seb2-7/+6
Upstream changes: 0.15 7 Nov 2008 * (finally) fix load_with to be a real ro_accessor and only used in _get_objects() 0.16 17 Nov 2008 * pass query if present in *_related() query methods 0.17 25 Nov 2008 * added related_load_with() feature and docs for it and load_with().
2008-11-29Update from version 0.31 to version 0.35.seb2-7/+8
Pkgsrc changes: - register all dependencies - add new dependency on devel/p5-Class-Data-Inheritable Upstream changes: 0.32 21 Oct 2008 * use Class::Data::Inheritable to define delegate_class() class accessor in base Model 0.33 22 Nov 2008 * fix Tutorial wrt RT#40846 0.34 24 Nov 2008 * fix make_primary_key_string to return undef if multi-col PK has no values 0.35 24 Nov 2008 * call edit() after initializing object and form with passed in params, so that the init_form() method can have all data already set.
2008-11-29Remove python15.snj1-2/+2
2008-11-28Changes 3.6.6.2:adam2-6/+6
* Fix a bug in the b-tree delete algorithm that seems like it might be able to cause database corruption. The bug was first introduced in version 3.6.6. * Fix a memory leak that can occur following a disk I/O error.