summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2004-12-16fix URL in MASTER_SITES.grant1-2/+3
2004-12-15the homepage seems to be http://www.phpmyadmin.net/jdolecek1-2/+2
2004-12-14- Update phpmyadmin to 2.6.1-rc1adrianp3-11/+16
- Fix permissions on config file as it could contain sensitive data - Fix missing ChangeLog link - Lots of bugfixes and updates, see ChangeLog for all the details - Inclues security update for PMASA-2004-4
2004-12-14Revert previous -- -current's sched_yield has been fixed.wiz2-17/+6
adam says ok.
2004-12-14Fixed building on NetBSD 2.0 and -currentadam3-18/+29
2004-12-14Teach configure explicitly how to find tcl using buildlink3, so thatminskim1-4/+5
the correct tclsh is used regardless of PATH.
2004-12-14Fix broken version number "2.6.0-pl2" of this package. Package versiontron1-2/+2
numbers must *never* include dashes.
2004-12-05Update p5-DBIx-SearchBuilder from version 1.01 to 1.15.he2-6/+7
Add HOMEPAGE pointing into search.cpan.org. Add DEPENDS on p5-Cache-Simple-TimedExpiry, as that appears to be required to have "make test" complete. Change log: 1.15 Sat Nov 27 13:09:56 EST 2004 - Fix a testsuite bug when DBD::SQLite isn't there 1.14 - Silenced warnings about uninitialized warnings when inserting null cols into the database. - Started adding lowercase method name aliases - Minor refactoring of 'id' method for a stupid, tiny perf improvement - Refactoring of DBIx::SearchBuilder::Record::Cachable for performance improvement - Added a FlushCache method to DBIx::SearchBuilder::Record::Cachable. - Started to flesh out a...test suite - SearchBuilder now truncates strings before inserting them into character types in the database as mysql generally does. Additionally, it truncates things at utf8 character boundaries...as mysql does not. - Fix for an undefined record cache warning on load from Autrijus Tang - Major documentation cleanups --Simon Cavalletto - A few tweaks to the ::Record class to eliminate the hard-coding of the name of the id column --Simon Cavalletto 1.12 - Better error handling for some query build failure cases - Corrected query builder for SQLite - More refactoring. 1.11 - When loading an object whose "id" has been altered, as in the case of RT's "Merge" functionality, the wrong object was returned by the caching layer. Special casing for the "id" method was removed. 1.10 - Identical to 1.10_05 1.10_05 - Reworked the _Accessible mechanism in DBIx::SearchBuilder::Record to remove a horribly crufty old caching mechanism that created a copy of the accessible hash for each and every object instantiated, sometimes quite slowly. 1.10_04 Mon Aug 30 17:33:18 EDT 2004 A query builder fix for an issue that bit RT2: Unsatisfied dependency chain in Joins Users_2 at /usr/local/share/perl/5.8.3/DBIx/SearchBuilder/Handle.pm line 965, line 69. Stack: [/usr/local/share/perl/5.8.3/DBIx/SearchBuilder/Handle.pm:965] [/usr/local/share/perl/5.8.3/DBIx/SearchBuilder.pm:326] [/usr/local/share/perl/5.8.3/DBIx/SearchBuilder.pm:119] [/usr/local/share/perl/5.8.3/DBIx/SearchBuilder.pm:410] 1.10_03 Mon Aug 30 14:31:10 EDT 2004 - Cache Sanity fixes from Autrijus Tang <autrijus@autrijus.org> 1.10_02 Thu Aug 26 13:31:13 EDT 2004 1.10_01 Thu Aug 26 00:08:31 EDT 2004 - Reimplemented DBIx::SearchBuilder:::Record::Cachable to use Cache::Simple::TimedExpiry. This should make it faster and more memory efficient. 1.02_03 Thu Jul 22 13:29:17 EDT 2004 - Additional bullet proofing for joins. Now we default to ALIAS1 being "main" (cubic@acronis.ru) 1.02_02 Tue Jul 20 13:06:06 EDT 2004 - Fixed a join bug that mostly manifests as a 'Dependency chain' error on RT2. 1.02_01 Wed Jul 7 12:28:08 EDT 2004 - magic _Object instantiation from cubic@acronis.ru - make SB::_Handle settable directly (cubic@acronis.ru) - document the above
2004-12-05Update p5-DBI-Shell from version 11.9 to 11.93.he2-6/+6
Change HOMEPAGE to point into search.cpan.org. Change log is almost content-free (version number fixes?)
2004-12-05Update p5-DBI from version 1.41 to 1.46.he2-5/+5
Change log: Changes in DBI 1.46 (svn rev 584), 16th November 2004 Fixed parsing bugs in DBI::SQL::Nano thanks to Jeff Zucker. Fixed a couple of bad links in docs thanks to Graham Barr. Fixed test.pl Win32 undef warning thanks to H.Merijn Brand & David Repko. Fixed minor issues in DBI::DBD::Metadata thanks to Steffen Goeldner. Fixed DBI::PurePerl neat() to use double quotes for utf8. Changed execute_array() definition, and default implementation, to not consider scalar values for execute tuple count. See docs. Changed DBD::File to enable ShowErrorStatement by default, which affects DBD::File subclasses such as DBD::CSV and DBD::DBM. Changed use DBI qw(:utils) tag to include $neat_maxlen. Updated Roadmap and ToDo. Added data_string_diff() data_string_desc() and data_diff() utility functions to help diagnose Unicode issues. All can be imported via the use DBI qw(:utils) tag. Changes in DBI 1.45 (svn rev 480), 6th October 2004 Fixed DBI::DBD code for drivers broken in 1.44. Fixed "Free to wrong pool"/"Attempt to free unreferenced scalar" in FETCH. Changes in DBI 1.44 (svn rev 478), 5th October 2004 Fixed build issues on VMS thanks to Jakob Snoer. Fixed DBD::File finish() method to return 1 thanks to Jan Dubois. Fixed rare core dump during global destruction thanks to Mark Jason Dominus. Fixed risk of utf8 flag persisting from one row to the next. Changed bind_param_array() so it doesn't require all bind arrays to have the same number of elements. Changed bind_param_array() to error if placeholder number <= 0. Changed execute_array() definition, and default implementation, to effectively NULL-pad shorter bind arrays. Changed execute_array() to return "0E0" for 0 as per the docs. Changed execute_for_fetch() definition, and default implementation, to return "0E0" for 0 like execute() and execute_array(). Changed Test::More prerequisite to Test::Simple (which is also the name of the distribution both are packaged in) to work around ppm behaviour. Corrected docs to say that get/set of unknown attribute generates a warning and is no longer fatal. Thanks to Vadim. Corrected fetchall_arrayref() docs example thanks to Drew Broadley. Added $h1->swap_inner_handle($h2) sponsored by BizRate.com Changes in DBI 1.43 (svn rev 377), 2nd July 2004 Fixed connect() and connect_cached() RaiseError/PrintError which would sometimes show "(no error string)" as the error. Fixed compiler warning thanks to Paul Marquess. Fixed "trace level set to" trace message thanks to H.Merijn Brand. Fixed DBD::DBM $dbh->{dbm_tables}->{...} to be keyed by the table name not the file name thanks to Jeff Zucker. Fixed last_insert_id(...) thanks to Rudy Lippan. Fixed propagation of scalar/list context into proxied methods. Fixed DBI::Profile::DESTROY to not alter $@. Fixed DBI::ProfileDumper new() docs thanks to Michael Schwern. Fixed _load_class to propagate $@ thanks to Drew Taylor. Fixed compile warnings on Win32 thanks to Robert Baron. Fixed problem building with recent versions of MakeMaker. Fixed DBD::Sponge not to generate warning with threads. Fixed DBI_AUTOPROXY to work more than once thanks to Steven Hirsch. Changed TraceLevel 1 to not show recursive/nested calls. Changed getting or setting an invalid attribute to no longer be a fatal error but generate a warning instead. Changed selectall_arrayref() to call finish() if $attr->{MaxRows} is defined. Changed all tests to use Test::More and enhanced the tests thanks to Stevan Little and Andy Lester. See http://qa.perl.org/phalanx/ Changed Test::More minimum prerequisite version to 0.40 (2001). Changed DBI::Profile header to include the date and time. Added DBI->parse_dsn($dsn) method. Added warning if build directory path contains whitespace. Added docs for parse_trace_flags() and parse_trace_flag(). Removed "may change" warnings from the docs for table_info(), primary_key_info(), and foreign_key_info() methods. Changes in DBI 1.42 (svn rev 222), 12th March 2004 Fixed $sth->{NUM_OF_FIELDS} of non-executed statement handle to be undef as per the docs (it was 0). Fixed t/41prof_dump.t to work with perl5.9.1. Fixed DBD_ATTRIB_DELETE macro thanks to Marco Paskamp. Fixed DBI::PurePerl looks_like_number() and $DBI::rows. Fixed ref($h)->can("foo") to not croak. Changed attributes (NAME, TYPE etc) of non-executed statement handle to be undef instead of triggering an error. Changed ShowErrorStatement to apply to more $dbh methods. Changed DBI_TRACE env var so just does this at load time: DBI->trace(split '=', $ENV{DBI_TRACE}, 2); Improved "invalid number of parameters" error message. Added DBI::common as base class for DBI::db, DBD::st etc. Moved methods common to all handles into DBI::common. Major tracing enhancement: Added $h->parse_trace_flags("foo|SQL|7") to map a group of trace flags into the corresponding trace flag bits. Added automatic calling of parse_trace_flags() if setting the trace level to a non-numeric value: $h->{TraceLevel}="foo|SQL|7"; $h->trace("foo|SQL|7"); DBI->connect("dbi:Driver(TraceLevel=SQL|foo):...", ...); Currently no trace flags have been defined. Added to, and reworked, the trace documentation. Added dbivport.h for driver authors to use. Major driver additions that Jeff Zucker and I have been working on: Added DBI::SQL::Nano a 'smaller than micro' SQL parser with an SQL::Statement compatible API. If SQL::Statement is installed then DBI::SQL::Nano becomes an empty subclass of SQL::Statement, unless the DBI_SQL_NANO env var is true. Added DBD::File, modified to use DBI::SQL::Nano. Added DBD::DBM, an SQL interface to DBM files using DBD::File. Documentation changes: Corrected typos in docs thanks to Steffen Goeldner. Corrected execute_for_fetch example thanks to Dean Arnold.
2004-12-04Add and enable ruby-DBD-sqlite.taca1-1/+2
2004-12-04Switch to use RUBY_DLEXT as suffix of extention library.taca4-8/+8
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz11-22/+22
Suggested by Roland Illig, ok'd by various.
2004-12-03Reset maintainer, no MX for netbsd-fr.org found.wiz1-2/+2
2004-12-03Update to 0.23. Provided by Greg Troxel in pkgsrc-wip.wiz9-86/+68
Uses guile-1.6 and postgresql-7.4. Four years of development since the previous version: many changes. XXX: This package includes a hack since pgsql.bl3.mk does not provide a way to get the matching -clients package.
2004-12-02RECOMMENDED should be after DEPENDS.wiz1-2/+2
2004-12-02move >=7.4.3 to RECOMMENDED and allow for both postgresql74- andgrant1-2/+3
postgresql- pkgnames in DEPENDS so installations from earlier can still be used if you IGNORE_RECOMMENDED.
2004-12-02Revert previous, ``mysqlhotcopy'' requires p5-DBD-mysql, which requiresxtraeme3-10/+15
mysql*-client! explain which are the required packages to run the script.
2004-12-01* mysql_shutdown() takes two arguments in MySQL >= 4.1.3, fix thisxtraeme3-8/+29
checking MYSQL_VERSION_ID. * Use mysql.bl3.mk and MYSQL_VERSIONS_ACCEPTED=40 41. This fixes the bulk build problem, bump PKGREVISION.
2004-12-01Depend on p5-DBI and p5-File-Temp, required to run the mysqlhotcopyxtraeme2-4/+10
script. Bump PKGREVISION to each package respectively.
2004-11-30Bump PKGREVISION for removal of db3 buildlink3.mk file fromwiz1-2/+2
GConf's buildlink3.mk file. Bump BUILDLINK_DEPENDS where appropriate.
2004-11-29Update p5-BerkeleyDB from version 0.25 to 0.26.he2-5/+5
Change log: 0.26 10th October 2004 * Changed to allow Building with Berkeley DB 4.3 * added cds_lock and associated methods as a convenience to allow safe updaing of database records when using Berkeley DB CDS mode. * added t/cds.t and t/pod.t * Modified the test suite to use "-ErrFile => *STDOUT" where possible. This will make it easier to diagnose build issues. * -Errfile will now accept a filehandle as well as a filename This means that -ErrFile => *STDOUT will get all extended error messages displayed directly on screen. * Added support for set_shm_key & get_shm_key. * Patch from Mark Jason Dominus to add a better error message when an odd number of parameters are passed to ParseParameters. * fixed off-by-one error in my_strdup * Fixed a problem with push, pop, shift & unshift with Queue & Recno when used in CDS mode. These methods were not using a write cursor behind the scenes. Problem reported by Pavel Hlavnicka.
2004-11-29Make ruby-dbm work on Solaris using native ndbm(3).taca1-4/+11
(Not best way, but it works on SunOS 5.8.)
2004-11-29Update abook to 0.5.3.minskim3-39/+5
Changes: - add allcvs filters (Christoph Sobotka) - removed a lefover debug message - fixed mutt import filter nickname cutoff - wrap searches - contrib updates
2004-11-29In case db4 is disallowed by bdb.buildlink3.mk, causing BDB_TYPE to betv1-1/+4
set to "none", skip bdb altogether.
2004-11-28Remove pre-buildlink and post-buildlink as part of getting pkgsrc readyjlam4-10/+16
for pkgsrc-2004Q4. The "buildlink" phase was removed for the last branch, and this is the final cleanup. "post-buildlink" is now "post-wrapper".
2004-11-28Reset maintainer, email bounced.wiz1-2/+2
2004-11-27Update ruby-vapor package to 0.81 migrating to use new framework.taca3-93/+118
Version 0.81 (tagged 22 Nov 2003, revision 279) Bug Fixes: * correct mistake in Usage Example, operator for wildcard searching is ~, not = * raise proper errors on various methods of Persistable when no PersistenceManager is available, instead of NoMethodError Version 0.80 (tagged 19 Nov 2003, revision 275) Features: * transaction logging, record information about time, committer and log message as well as list of objects modified per transaction * basic versioning support, retrieval of historic object states * vaporadmin: removal of classes and all their instances using the "remove" command * vaporadmin: modification of class' metadata using the "update" command * new operator (~) for wildcard searches on Strings Bug Fixes: * allow SQL keywords as names of persistent attributes * fix bug where camelCase variables would not be correctly set on object loading * correctly transfer newly persistent objects back to transient state during rollback(). This bug caused incomprehensible ObjectDeletedErrors when manually or automatically rolling back. * check REXML::Version instead of REXML::VERSION_MAJOR, which does not exist in the REXML version that is included in Ruby 1.8 * minimize number of warnings issued when using `ruby -w', including those from Ruby 1.8.x, that are issued regardless of -w Incompatible Repository Changes: (Repository needs to be recreated from scratch) * repository schema version 3 * add fields and tables for versioning
2004-11-27Migrate ruby-postgresql to use new framework for Ruby packages.taca1-11/+7
2004-11-27Update ruby-mysql package to 2.5.1 migrating to use new frameworktaca3-37/+15
for Ruby packages. 2004-09-20 version 2.5.1 * add Mysql#set_ssl(). 2004-08-31 version 2.5 * correspond to MySQL 4.1.x. * change MysqlRes, MysqlField, MysqlError to Mysql::Result, Mysql::Field, Mysql::Error. * add Mysql.client_version(), Mysql.get_client_version(), Mysql#client_version(), Mysql#get_client_version(), Mysql#server_version(), Mysql#get_server_version(), Mysql#warning_count(), Mysql#commit(), Mysql#rollback(), Mysql#autocommit(). * add Mysql::Field#is_not_null?(), Mysql::Field#is_pri_key?(), Mysql::Field#is_num?(). * add MysqlField::TYPE_VAR_STRING.
2004-11-27Add and enable ruby-dbm.taca1-1/+2
2004-11-27Make ruby-gdbm package into new framework.taca2-14/+13
Since this change PKGBASE, PKGREVISION is reset now.
2004-11-27Initial import of ruby-dbm package. This is part of Ruby distributiontaca3-0/+33
and this package covers both Ruby 1.8 base and 1.6 base. This is a Ruby extension to DBM library (including Berkley DB's DBM compatible one), which is actually a part of the Ruby distribution.
2004-11-27Update phpPgAdmin to 3.5.jdolecek3-9/+19
Changes since 3.4.1: Features: added context-sensitive online help system, better support for 8.0, "sticky" navigation, better grant/revole. syntax highlightling for PL/*, better navigation. Translations: added Romanian, Mongolian, Ukrainian, Hebrew, and updates to others. Bugs * Fix that non-Auto mode import didn't work (Adrian Nida) * Fix inability to drop constraints when using a non-english translation * Work around MSIE's failure to handle downloads in SSL mode * Allow insert, update, delete, references and trigger to be granted and revoked on views. See HISTORY for full new feature list.
2004-11-27The OpenLDAP libraries do NOT include any SLP code, so don't includejlam1-11/+2
openslp/buildlink3.mk. Also, simplify the kerberos/sasl checks.
2004-11-26Correct URL to distfile, from Alexis Robert.sketch1-2/+2
2004-11-26dlopen.buildlink3.mk will automatically include dlcompat/buildlink3.mkjlam1-2/+2
only on Darwin, so remove OPSYS check in dlcompat/buildlink3.mk and make packages include dlopen.buildlink3.mk instead.
2004-11-26Bump the PKGREVISION after changes in patch-ag to honor DL_*.jlam1-2/+2
2004-11-26Teach openldap to use DL_{CFLAGS,LDFLAGS,LIBS} when linking slapd whenjlam2-5/+16
building dynamic backends or when using Cyrus SASL.
2004-11-25Default PTHREAD_AUTO_VARS to the safer value of "no". Most packagesjlam3-12/+3
that use pthreads already implement their own probes for pthreads, so we don't need to auto-add the compiler/linker flags.
2004-11-23* Install my-{huge,large,innodb-heavy-4G,small,medium}.cnf example files.xtraeme6-30/+46
* Use PTHREAD_AUTO_VARS=no to disable linking to libpthread all programs and libraries, which is wrong. * Set USE_LIBTOOL and GNU_CONFIGURE before including bsd.prefs.mk, so the test for _OPSYS_MAX_CMDLEN is not skipped. Bump PKGREVISION to each package respectively (mysql-client and mysql4-client), closes PR pkg/28162 and PR pkg/28222.
2004-11-22USE_LANGUAGES= c c++wiz1-3/+2
Remove USE_PKGLOCALEDIR, the package does not install any locale files.
2004-11-22Revert previous. This should be fixed in mysql*-client/buildlink3.mk orkristerw1-3/+1
mysql_config instead. Noted by Ben Collver.
2004-11-21This package uses pthreads, so we need to include mk/pthread.buildlink3.mk.kristerw1-1/+3
2004-11-19The man pages should refer to the real location of the config files, notjlam3-3/+28
where they were installed (in the example location) during the "install" step. Bump PKGREVISION.
2004-11-18We don't actually want everything to be built with pthreads -- onlyjlam5-4/+41
libldap_r and slurpd. Patch those Makefiles (patch-aj, patch-ak) to pass $(PTHREAD_CFLAGS) and $(PTHREAD_LDFLAGS) to the build. The configure process correctly adds any necessary libraries, so adding $(PTHREAD_LIBS) isn't needed. Bump the PKGREVISION since the LDAP libraries are no longer linked against libpthread. This fixes PR pkg/28259.
2004-11-18Added a note about running mysql_install_db to set up the initial databasejklos1-3/+9
tables, since this isn't automatic.
2004-11-18Added a note about running mysql_install_db to set up the initialjklos1-3/+9
database tables, as this isn't automatic.
2004-11-17Further refinement... if we're using GCC, ignore any -lpthread found onjlam1-2/+4
the system as we don't need it.
2004-11-17Amend the previous commit... we also only care about pthreads if we'rejlam2-5/+14
non-GCC. DB4 uses its own code if we're using GCC instead of 1003.1 mutexes. Ride the previous PKGREVISION bump.