summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2008-06-22Update ruby-sqlite3 package to 1.2.2.taca3-10/+8
Changes: === 1.2.2 / 31 May 2008 * Make the table_info method adjust the returned default value for the rows so that the sqlite3 change in 3.3.8 and greater can be handled transparently [Jamis Buck <jamis@37signals.com>] * Ruby 1.9 compatibility tweaks [Roman Le Negrate <roman2k@free.fr>] * Various performance enhancements [thanks Erik Veenstra] * Correct busy_handler documentation [Rob Holland <rob@inversepath.com>] * Use int_bind64 on Fixnum values larger than a 32bit C int can take. [Rob Holland <rob@inversepath.com>] * Work around a quirk in SQLite's error reporting by calling sqlite3_reset to produce a more informative error code upon a failure from sqlite3_step. [Rob Holland <rob@inversepath.com>] * Various documentation, test, and style tweaks [Rob Holland <rob@inversepath.com>] * Be more granular with time/data translation [Rob Holland <rob@inversepath.com>] * Use Date directly for parsing rather than going via Time [Rob Holland <rob@inversepath.com>] * Check for the rt library and fdatasync so we link against that when needed [Rob Holland <rob@inversepath.com>] * Rename data structures to avoid collision on win32. based on patch by: Luis Lavena [Rob Holland <rob@inversepath.com>] * Add test for defaults [Daniel Rodr?guez Troiti?o] * Correctly unquote double-quoted pragma defaults [?ukasz Dargiewicz <lukasz.dargiewicz@gmail.com>]
2008-06-22Update ruby-mysql package to 2.7.6.taca2-8/+7
2008-06-17 version 2.7.6 * On 64bit machine, Mysql::Stmt#execute raise error on large numeric value(>= 2**30). 2008-03-08 version 2.7.5 * On 64bit machine, Mysql::Stmt#fetch return invalid numeric value. 2007-12-26 version 2.8pre1 * for Ruby 1.9.0 * Incompat: Mysql::Result#each_hash don't create column name string each row. it's shared. * Incompat: Mysql#query with block no longer turn on multi-statements mode automatically. 2007-08-22 version 2.7.4 * BUG: Mysql::Stmt#execute memory leak.
2008-06-22Update databases/ruby-datamapper pacakge to 0.3.2.taca2-6/+6
Changes are unknown.
2008-06-22Add and enable ruby-DBD-sqlite3.taca1-1/+2
2008-06-21Update to 0.40:wiz6-24/+26
shared-mime-info 0.40 (2008-06-11) * Mime-type Changes: - Add Skencil image - Add OpenOffice extension - Add Lilypond music sheets - Add MO3 compressed tracker files - Add text/x-diff alias for patches - Add text/x-c alias for C source files - Add text/rtf for RTF files - Add *.m3u8 glob for M3U files - Fix problems with Matroska audio/video detection - Fix pack200 magic - Fix detection of some message/rfc822 files - Tighten PBM/PPM/PGM magic to avoid false positives - Make "README*" glob very low - Make application/x-gnuplot a subclass of text/plain - Remove useless fnmatch matches - Remove useless gtkrc mime-type * update-mime-database Changes: - Implement glob weights - Implement reverse suffix tree - Implement icon and generic-icon support - Implement compact suffix tree
2008-06-20Sort order with ruby-readline.taca1-2/+2
2008-06-20Update Class-DBI-AbstractSearch to version 0.07.he2-7/+7
Changes: 0.07 Thu Oct 6 02:40:16 UTC 2005 - Fixed test suite for Windows which can't rm files while opening [cpan #14935] 0.06 Tue Aug 23 22:03:22 UTC 2005 - Now uses SQL::Abstract::Limit to allow limit SQL (Thanks to David R. Baird)
2008-06-20Added p5-SQL-Abstract-Limit.he1-1/+2
2008-06-20Import p5-SQL-Abstract-Limit version 0.12.he3-0/+30
SQL-Abstract-Limit is a portability layer for LIMIT emulation.
2008-06-20Update p5-Class-DBI to v3.0.17.he2-6/+6
Changes since v3.0.14 according to the changelog: 3.0.17 Oct 4, 2007 - Fix t/11 to cope with Class::Trigger no longer supporting multiple triggers in one shot 3.0.16 Nov 05, 2006 - Better error reporting from has_a setup failure 3.0.15 Aug 19 2006 - Fix ignorage with mutator_name and accessor_name (Ask Bjørn Hansen)
2008-06-20Update p5-Apache-DBI to version 1.07.he2-6/+6
Changes since 1.06 according to the change log: o PerlCleanupHandler doesn't get called with MP2 (fixed) o Documentation Additions
2008-06-20Changes 8.1.13:adam12-34/+39
* Make pg_get_ruledef() parenthesize negative constants (Tom) Before this fix, a negative constant in a view or rule might be dumped as, say, -42::integer, which is subtly incorrect: it should be (-42)::integer due to operator precedence rules. Usually this would make little difference, but it could interact with another recent patch to cause PostgreSQL to reject what had been a valid "SELECT DISTINCT" view query. Since this could result in pg_dump output failing to reload, it is being treated as a high-priority fix. The only released versions in which dump output is actually incorrect are 8.3.1 and 8.2.7. * Make "ALTER AGGREGATE ... OWNER TO" update pg_shdepend (Tom) This oversight could lead to problems if the aggregate was later involved in a "DROP OWNED" or "REASSIGN OWNED" operation.
2008-06-20Changes 8.2.9:adam6-53/+26
* Make pg_get_ruledef() parenthesize negative constants (Tom) Before this fix, a negative constant in a view or rule might be dumped as, say, -42::integer, which is subtly incorrect: it should be (-42)::integer due to operator precedence rules. Usually this would make little difference, but it could interact with another recent patch to cause PostgreSQL to reject what had been a valid "SELECT DISTINCT" view query. Since this could result in pg_dump output failing to reload, it is being treated as a high-priority fix. The only released versions in which dump output is actually incorrect are 8.3.1 and 8.2.7. * Make "ALTER AGGREGATE ... OWNER TO" update pg_shdepend (Tom) This oversight could lead to problems if the aggregate was later involved in a "DROP OWNED" or "REASSIGN OWNED" operation.
2008-06-20Changes 1.2.14:adam2-15/+14
- Fix typo in configure-replication.sh (missing CR) - Per bug 35, search the Slony share dir for scripts before falling back to the PG share dir on 8.0+ - Change test framework to write out the test name into $TEMPDIR/TestName - Patch that seems to resolve a race condition with ACCEPT_SET - Fix bug 49 - mishandling by slony_logshipper of quotes & backslashes. - Fix bug 50 - slony_logshipper had a variable access *after* memory was freed Changes 1.2.13: - Fixed problem with compatibility with PostgreSQL 8.3; function typenameTypeId() has 3 arguments as of 8.3. - Added in logic to ensure that max number of SYNCs grouped together is actually constrained by config parameter sync_group_maxsize. - Fix to show_slony_configuration - point to proper directory where slon/slonik are actually installed. - Fix to slonik Makefile + slonik.c - Change slonik build to query Postgres for the share directory at runtime - per Dave Page - Removed spurious NOTIFY on "_%s_Confirm"; this is no longer needed
2008-06-20Changes 8.3.3:adam6-52/+27
* Make pg_get_ruledef() parenthesize negative constants (Tom) Before this fix, a negative constant in a view or rule might be dumped as, say, -42::integer, which is subtly incorrect: it should be (-42)::integer due to operator precedence rules. Usually this would make little difference, but it could interact with another recent patch to cause PostgreSQL to reject what had been a valid "SELECT DISTINCT" view query. Since this could result in pg_dump output failing to reload, it is being treated as a high-priority fix. The only released versions in which dump output is actually incorrect are 8.3.1 and 8.2.7. * Make "ALTER AGGREGATE ... OWNER TO" update pg_shdepend (Tom) This oversight could lead to problems if the aggregate was later involved in a "DROP OWNED" or "REASSIGN OWNED" operation.
2008-06-20Update ruby-activerecord to 2.1.0 for rails-2.1.0.minskim3-180/+196
Too many changes since 2.0.2. See CHANGELOG for the complete list.
2008-06-20Add DESTDIR support.joerg36-40/+106
2008-06-19Add name of rrd database to "illegal attempt to update using time..."he3-3/+20
error message, since rrdupdate may update more than one rrd database. Submitted as a feature enhancement request upstream (#162). Bump package revision.
2008-06-19Bump PKGREVISION of rubygem based packages which contain extention libraries.taca1-1/+2
2008-06-19Switch to use vendor_dir with Ruby 1.8.7.taca8-165/+188
Bump PKGREVISION.
2008-06-19Update ruby18-gdbm package to 1.8.7.taca1-2/+2
Since chanes are too much to write here, please refer http://svn.ruby-lang.org/repos/ruby/tags/v1_8_7/NEWS http://svn.ruby-lang.org/repos/ruby/tags/v1_8_7/ChangeLog http://svn.ruby-lang.org/repos/ruby/tags/v1_8_7_17/NEWS http://svn.ruby-lang.org/repos/ruby/tags/v1_8_7_17/ChangeLog
2008-06-18add gramps3gdt1-1/+2
2008-06-18Add gramps 3.0.1. Note that gramps3 has a new database format, sogdt11-0/+2326
gramps2 should remain for a long time. GRAMPS (Genealogical Research and Analysis Management Programming System) is a personal genealogy program. It provides a graphical interface for recording genealogical research. GRAMPS can import GEDCOM format and export to GEDCOM and Web Family Tree. It can generate book reports, ancestor charts, relationship graphs, timelines, Ahnentafel reports, websites, and various other comprehensive reports in various documentation formats. GRAMPS can also include extra media types (like JPEG images and audio files), record sources of information, and keep track of locations (place names).
2008-06-18fix building on SunOS-5.8/sparc and probably other SunOS-5.[6-9]dmcmahill1-1/+9
2008-06-15Changes that should have been committed with recent upgrade to 5.01.gdt4-57/+74
2008-06-15Explain that this is only here because gramps1/gramps2 database formatgdt1-2/+4
is incompatible.
2008-06-14Add DESTDIR support.obache3-5/+38
2008-06-13Update to 5.01. Make installed files owned by root instead of nobody.gdt1-24/+30
Depend on camlp5. wiki syntax in notes, and better save/restore. Author omitted some changes from ${WRKSRC}/CHANGES. Passes cursory testing. WARNING: unclear if there is a binary format change for the database. Back up and export to GEDCOM before upgrading. gwtp in theory handles this.
2008-06-12Add DESTDIR support.joerg58-76/+189
2008-06-09Update openldap packages to 2.4.9. Reviewed by tron.ghen5-14/+24
OpenLDAP 2.4.9 Release (2008/05/07) Fixed libldap to use unsigned port (ITS#5436) Fixed libldap error message for missing close paren (ITS#5458) Fixed libldap_r tpool pause checks (ITS#5364, #5407) Fixed slapcat error checking (ITS#5387) Fixed slapd abstract objectClass inheritance check (ITS#5474) Fixed slapd add operations requiring naming attrs (ITS#5412) Fixed slapd connection handling (ITS#5469) Fixed slapd delta-syncrepl resync (ITS#5378) Fixed slapd frontendDB backend selection (ITS#5419) Fixed slapd pagedresults stale state (ITS#5409) Fixed slapd pointer dereference (ITS#5388) Fixed slapd null argument dereference (ITS#5435) Fixed slapd REP_ENTRY flags (ITS#5340) Fixed slapd sets attribute description parsing (ITS#5402) Fixed slapd syncrepl hang on back-config (ITS#5407) Fixed slapd syncrepl compare_csns crash (ITS#5413) Fixed slapd syncrepl contextCSN update clash (ITS#5426) Fixed slapd syncrepl/glue failure (ITS#5430) Fixed slapd syncrepl crash on empty CSN (ITS#5432) Fixed slapd syncrepl refreshAndPersist (ITS#5454) Fixed slapd syncrepl modrdn processing (ITS#5397) Fixed slapd syncrepl MMR partial refresh (ITS#5470) Fixed slapd value list termination (ITS#5450) Fixed slapd/slapo-accesslog rq mutex usage (ITS#5442) Fixed slapd-bdb ID_NOCACHE handling (ITS#5439) Fixed slapd-bdb entryinfo state if db_lock fails (ITS#5455) Fixed slapd-bdb referral rewrite (ITS#5339) Fixed slapd-config overlay stacking (ITS#5346) Fixed slapd-config attribute publishing (ITS#5383) Fixed slapd-ldap connection handler (ITS#5404) Fixed slapd-ldif file name handling & multi-suffix/dir catch (ITS#5408) Fixed slapd-meta connections on error (ITS#5440) Fixed slapd-meta crash on search (ITS#5481) Fixed slapo-accesslog null callback stack crash (ITS#5490) Fixed slapo-auditlog unnecessary syscall (ITS#5441) Added slapo-dynlist mapping to dynamic attrs generation (ITS#5466) Fixed slapo-refint dnSubtreeMatch (ITS#5427) Fixed slapo-refint global referential integrity (ITS#5428) Fixed slapo-syncprov psearch on closed connection (ITS#5401) Fixed slapo-syncprov psearch task delay (ITS#5405) Fixed slapo-syncprov psearch filter identity (ITS#5418, #5486) Fixed slapo-syncprov/glue contextCSN update (ITS#5433) Fixed slapo-syncprov/glue search ops (ITS#5434) Fixed slapo-syncprov null cookie (ITS#5437,#5444) Fixed slapo-syncprov double-free (ITS#5445) Fixed slapo-syncprov free syncop correctly (ITS#5484) Fixed slapo-syncprov glue deadlock (ITS#5451) Build Environment Fixed leave function naming for OSF1 (ITS#5411) Documentation Fixed slapd.access(5) authz-regexp documented behavior (ITS#5400) Fixed slapd.meta(5) idassert-* documentation (ITS#5406) admin24 delta-syncrepl documentation (ITS#5476) admin24 set documentation (ITS#5278,ITS#5279,ITS#5281) admin24 slapo-ppolicy documentation (ITS#5479) admin24 syncrepl directives update (ITS#5425)
2008-06-08Update "phpmyadmin" package to version 2.11.6. Changes since 2.11.5.2:tron2-6/+6
- bug #1903724 [interface] Displaying of very large queries in error message - bug #1905711 [compatibility] Functions deprecated in PHP 5.3: is_a() and get_magic_quotes_gpc() - bug [lang] catalan wrong accented characters - bug #1893034 [Export] SET NAMES for importing with command-line client + [lang] Russian update - bug #1910485 [core] Unsetting the whitelist during the loop - bug #1906980 [Export] Import of VIEWs fails if temp table exists - bug #1812763 [Copy] Table copy when server is in ANSI_QUOTES sql_mode - bug #1918531 [compatibility] Navigation isn't w3.org valid - bug #1926357 [data] BIT defaults displayed incorrectly - patch #1930057 [auth] colon in password prevents HTTP login on CGI/IIS - patch #1929553 [lang] Don't output BOM character in Swedish language file - patch #1895796 [lang] Typo in Japanese lang files - bug #1935652 [auth] Access denied (show warning about mcrypt on login page) - bug #1906983 [export] Reimport of FUNCTION fails - bug #1919808 [operations] Renaming a database fails to handle functions - bug #1934401 [core] Cannot force a language - bug #1944077 [core] Config file containing a BOM - bug #1947189 [scripts] Missing head tag in scripts/signon.php + [lang] Romanian update
2008-06-07At least some places use tds functions from the libraries and thejoerg3-2/+28
visibility default is messed up, so make them all visible for now. This also fixes the compilation on AMD64 as it doesn't allow text relocations. Bump revision.
2008-06-03+ p5-CDB_Fileghen1-1/+2
2008-06-03Import p5-CDB_File-0.96, based on (and similar to) databases/p5-DB_File.ghen3-0/+28
CDB_File is a module which provides a Perl interface to Dan Berstein's cdb package.
2008-06-01needs intltooltnn1-2/+2
2008-05-31Use pax(1) instead of cp -pr to install the documentation files, becausetnn3-4/+14
cp -pr on Solaris mysteriously and silently fails to copy the entire directory structure. Spotted in bulk build.
2008-05-28Updated databases/p5-DBI to 1.604abs2-9/+11
Changes in DBI 1.604 (svn rev 10994) 24th March 2008 Fixed fetchall_arrayref with $max_rows argument broken in 1.603, thanks to Greg Sabino Mullane. Fixed a few harmless compiler warnings on cygwin. Changes in DBI 1.603 Fixed pure-perl fetchall_arrayref with $max_rows argument to not error when fetching after all rows already fetched. (Was fixed for compiled drivers back in DBI 1.31.) Thanks to Mark Overmeer. Fixed C sprintf formats and casts, fixing compiler warnings. Changed dbi_profile() to accept a hash of profiles and apply to all. Changed gofer stream transport to improve error reporting. Changed gofer test timeout to avoid spurious failures on slow systems. Added options to t/85gofer.t so it's more useful for manual testing. Changes in DBI 1.602 (svn rev 10706) 8th February 2008 Fixed potential coredump if stack reallocated while calling back into perl from XS code. Thanks to John Gardiner Myers. Fixed DBI::Util::CacheMemory->new to not clear the cache. Fixed avg in DBI::Profile as_text() thanks to Abe Ingersoll. Fixed DBD::DBM bug in push_names thanks to J M Davitt. Fixed take_imp_data for some platforms thanks to Jeffrey Klein. Fixed docs tie'ing CacheKids (ie LRU cache) thanks to Peter John Edwards. Expanded DBI::DBD docs for driver authors thanks to Martin Evans. Enhanced t/80proxy.t test script. Enhanced t/85gofer.t test script thanks to Stig. Enhanced t/10examp.t test script thanks to David Cantrell. Documented $DBI::stderr as the default value of err for internal errors. Gofer changes: track_recent now also keeps track of N most recent errors. The connect method is now also counted in stats.
2008-05-28Updated databases/p5-Rose-DB to 0.744abs2-7/+10
0.744 (05.28.2008) - John Siracusa <siracusa@gmail.com> * Added fixup() class method call to auto_load_fixups(). (Suggested by Justin Ellison) * Skip the interactive part of the test suite when the AUTOMATED_TESTING environment variable is set. 0.743 (04.02.2008) - John Siracusa <siracusa@gmail.com> * Fixed some warnings and made nice with the CPAN version extractor. 0.742 (04.01.2008) - John Siracusa <siracusa@gmail.com> * Added warning for ancient DBD::mysql versions. * Support for Rose::DB::Object 0.769.
2008-05-28Updated databases/Rose-DB-Object to 0.770abs2-7/+10
0.770 (05.28.2008) - John Siracusa <siracusa@gmail.com> * Added "iterator" method type, similar to "find", to OneToMany and ManyToMany. (Patch by Peter Karman - peknet@gmail.com) * Updated the Loader documentation to describe an important consideration when regenerating modules with make_modules(). * Improved error propagation in relationship methods. (Suggested by Wiggins d'Anconia) * Skip the interactive part of the test suite when the AUTOMATED_TESTING environment variable is set. * Test suite now accounts for versions of DBD::mysql that predate the mysql_is_auto_increment column attribute. 0.769 (04.01.2008) - John Siracusa <siracusa@gmail.com> * Improved the default singular/plural conversion rules in the Convention Manager. (Suggested by David Brownlee) * Added new join type override syntax for the Manager's with_objects and require_objects parameters. * Added column method naming conventions to the Convention Manager. * Added Manager naming conventions to the Convention Manager and exposed more Manager-related defaults in the Metadata and Manager class. (Patch by Bradley C Bailey, modified by John Siracusa) * Column method names are now allowed at the end of compound Manager query parameters (e.g., "a.b.method") * Clarified column/method query parameter documentation. * Postgres tests are not skipped when DBD::Pg version 2.1.x or 2.2.0 is installed. (Bus error for me in t/deep-joins.t)
2008-05-26Second round of explicit pax dependencies. As reminded by tnn@,joerg2-4/+8
many packages used to use ${PAX}. Use the common way of directly calling pax, it is created as tool after all.
2008-05-25Explicitly add pax dependency in those Makefiles that use it (or havejoerg4-7/+9
patches to add it). Drop pax from the default USE_TOOLS list. Make bsdtar the default for those places that wanted gtar to extract long links etc, as bsdtar can be built of the tree.
2008-05-25Fix indentation.tron1-2/+2
2008-05-25Make destdir ready.dillo1-2/+6
2008-05-25Remove me as maintainer of some package, clame ownership of a few packages.tron1-2/+2
2008-05-25Added sqlitebrowser version 1.3adam1-1/+2
2008-05-25SQLite Database Browser is a freeware, public domain, open sourceadam4-0/+40
visual tool used to create, design and edit database files compatible with SQLite. It is meant to be used for users and developers that want to create databases, edit and search data using a familiar spreadsheet-like interface, without the need to learn complicated SQL commands.
2008-05-25Changes 3.5.9:adam3-21/+7
* Added experimental support for the journal_mode PRAGMA and persistent journal. * Journal mode PERSIST is the default behavior in exclusive locking mode. * Fix a performance regression on LEFT JOIN (see ticket #3015) that was mistakenly introduced in version 3.5.8. * Performance enhancement: Reengineer the internal routines used to interpret and render variable-length integers. * Fix a buffer-overrun problem in sqlite3_mprintf() which occurs when a string without a zero-terminator is passed to "%.*s". * Always convert IEEE floating point NaN values into NULL during processing. * Make sure that when a connection blocks on a RESERVED lock that it is able to continue after the lock is released. * The "configure" scripts should now automatically configure unix systems for large file support. Improved error messages for when large files are encountered and large file support is disabled. * Avoid cache pages leaks following disk-full or I/O errors * And, many more minor bug fixes and performance enhancements...
2008-05-21Update to 0.30:wiz4-15/+15
shared-mime-info 0.30 (2008-05-12) * Mime-type Changes: - Add LZMA archive - Add Eiffel source - Add TTX font - Add EXR image - Add SubViewer subtitle - Add Windows Registry - Add SMAF, XMF and iMelogy ringtones - Add MRML playlists - Add FLTK Fluid - Add NFO info - Add ALZ archive - Add MS Word template - Add GNUNet saved searches - Add MOF - Add CDRDAO TOC - Add magic for KDC Kodak - Add pattern for PCX images - Add pattern for mbox files - Add pattern for AWK scripts - Add more magic for FLAC audio - Add iptables - Add Electronic books - Add Cisco VPN - Add Pack200 archives - Add CMake scripts - Add MS Works document - Update DjVu types - Update Flash video type - Mark RCS files as text/plain - Add an alias for RPM packages - Remove application/x-cgi mime-type - Remove *.exe glob for Unix executables - Remove audio/x-mp3-playlist and make it an alias for MP3 playlists - Remove the useless application/x-dbm type - Remove duplicate *.amr glob from 3GPP files - Add "<Asx" as a pattern for ASX files - Lower XML magic priority so text/html is preferred - Fix magic for application/x-java - Fix up magic for AVI files - Add "*.med" glob to MOD music - Add "*.3gp2" glob for 3GPP audio/video - Fix multiple XML mime-types - Remove duplicate StuffIt archive type - Remove unused text/x-ksysv-log * Other: - Update specification - Add instructions on how to file bugs, and update translations - Update dependencies to GLib 2.6 - Update DTD, require translated comments, require expanded-acronym if acronym is present, require a known value for generic-icon - Small fix to the update-mime-database man page - Ignore unknown fields in update-mime-database - Make sure all the comments are marked for translation - Fix typos in the DTD - Avoid warnings in update-mime-database for the x-content/ mimetypes
2008-05-15update to 4.6.4drochner3-7/+10
The main point of this release is support for the Replication Manager. The testsuite is very improved, also, in speed and coverage.
2008-05-09PR pkg/38616: Hasso Tepper: Fix build on DragonFlyBSD.tnn2-7/+18
The configure script checks for sizeof(FILE), which is an opaque type. It can be argued that it should check for FILE* instead because that's what it uses, but take the shortest path of resistance and disable the check on DragonFly. Upstream is aware of the issue.