summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2003-11-05Version the distfile based on our package name, since the distfile changesagc2-4/+5
without modifying a version number (it doesn't seem to have one). Modifications to the distfile reviewed by myself and found to be benign.
2003-11-03Use LIBTOOL_OVERRIDE instead of LTCONFIG_OVERRIDE. Set USE_GCC_SHLIB.gavan1-2/+3
Fixes linking on Solaris.
2003-11-03Set USE_GCC_SHLIB. Fixes compiling on Solaris.gavan1-1/+2
2003-11-02Proper use of buildlink2 frame work, with applying patch from PR pkg/23338taca1-1/+4
by Ron Roskens.
2003-10-20Update db3 to db3-3.11.2nb1.agc3-3/+7
Add db_185 compatibility to databases/db3, from Jeremy Reed in PR 21237.
2003-10-11only test for existance of data directory, rather than the templategrant1-3/+3
databases to determine whether the dbdir has been initialised. fixes PR pkg/21133 from Thomas T. Thai.
2003-10-09Update freetds to 0.61.2, the distfile changed and the previous versionjdolecek2-7/+5
isn't available anymore Changes since 0.61: Version 0.61.2 (August 2003): - fix some memory leaks - fix bug binding parameters with NULL indicator Version 0.61.1 (May 2003): - Fixed segfault on opening log file in append mode - locale initialization? - fix segfault when used with iODBC - better configure script for HP/UX 11
2003-10-07Provide a better package name for Solarisheinz1-1/+2
2003-10-06The distfile primary site moved.jlam1-2/+2
From PR pkg/21554 by Ian Harding <iharding.workstation!tpchd!org>.
2003-10-05Updated mysql-server to 3.23.58martti19-478/+85
A lot of bug and security fixes since 3.23.51...
2003-10-05Update mysql-client to 3.23.58martti7-94/+16
A lot of bug and security fixes since 3.23.51...
2003-09-29Delint, style, whitespace.salo1-35/+42
2003-09-29PKGREVISION++salo3-5/+18
Obey PKG_SYSCONFDIR.
2003-09-29hmm, 'make distinfo' used to ignore the line with $NetBSD$ RCS tag; thisjdolecek1-2/+2
doesn't seem to be the case since distinfo checksum changed for patch-am after it was committed; update distinfo to match
2003-09-29update HOMEPAGE and MASTER_SITES.grant1-3/+3
2003-09-29use ${PKGVERSION} in the PLIST, which is substituted by defaultjdolecek2-4/+3
2003-09-28make mysql 3.23.51 compile on 1.6.x, which uses bundled mit-pthreadsjdolecek4-2/+29
fixes PR pkg/22988 by Adrian Portelli
2003-09-28use PLIST_SUBST with DISTNAME to generate the spec file name in PLIST,jdolecek2-3/+4
so that PLIST wouldn't need to be updated on each pkg update
2003-09-28Back out last change related to moving ncurses/buildlink2.mk tojlam1-2/+2
curses.buildlink2.mk. This was wrong because we _really_ do want to express that we want _n_curses when we include the buildlink2.mk file. We should have a better way to say that the NetBSD curses doesn't quite work well enough. In fact, it's far better to depend on ncurses by default, and exceptionally note when it's okay to use NetBSD curses for specific packages. We will look into this again in the future.
2003-09-28Update mysql-client and mysql-server to 3.23.51nb1 - pkg revision keptjdolecek10-34/+34
set, the packages contain extra security fixes, which are not part of 3.23.51 distribution NOTE: this is the last 3.23.x version with bundled mit-pthreads package; any further upgrade would need some additional efford to keep the package usable on NetBSD 1.6.x and older Highlights of changes: * Add missing <row> tags for mysqldump XML output. * SHOW VARIABLES LIKE 'xxx' is now case-insensitive * InnoDB now allows foreign key constraints to be added through the ALTER TABLE syntax. * InnoDB tables can now be set to automatically grow in size (autoextend). * Changed name of server variables Com_show_master_stat to Com_show_master_status and Com_show_slave_stat to Com_show_slave_status. * Changed handling of gethostbyname() to make the client library thread-safe even if gethostbyname_r doesn't exist. * If we get an overflow when inserting '+11111' for DECIMAL(5,0) UNSIGNED columns, we will just drop the sign. * many bugfixes Full list of changes: 3.23.50: * Fixed buffer overflow problem if someone specified a too long datadir parameter to mysqld * Add missing <row> tags for mysqldump XML output. * Fixed problem with crash-me and gcc 3.0.4. * Fixed that @@unknown_variable doesn't hang server. * Added @@VERSION as a synonym for VERSION(). * SHOW VARIABLES LIKE 'xxx' is now case-insensitive. * Fixed timeout for GET_LOCK() on HP-UX with DCE threads. * Fixed memory allocation bug in the glibc library used to build Linux binaries, which caused mysqld to die in 'free()'. * Fixed SIGINT and SIGQUIT problems in mysql. * Fixed bug in character table converts when used with big ( > 64K) strings. * InnoDB now retains foreign key constraints through ALTER TABLE and CREATE/DROP INDEX. * InnoDB now allows foreign key constraints to be added through the ALTER TABLE syntax. * InnoDB tables can now be set to automatically grow in size (autoextend). * Our Linux RPMS and binaries are now compiled with gcc 3.0.4, which should make them a bit faster. * Fixed some buffer overflow problems when reading startup parameters. * Because of problems on shutdown we have now disabled named pipes on Windows by default. One can enable named pipes by starting mysqld with --enable-named-pipe. * Fixed bug when using WHERE key_column = 'J' or key_column='j'. * Fixed core-dump bug when using --log-bin with LOAD DATA INFILE without an active database. * Fixed bug in RENAME TABLE when used with lower_case_table_names=1 (default on Windows). * Fixed unlikely core-dump bug when using DROP TABLE on a table that was in use by a thread that also used queries on only temporary tables. * Fixed problem with SHOW CREATE TABLE and PRIMARY KEY when using 32 indexes. * Fixed that one can use SET PASSWORD for the anonymous user. * Fixed core dump bug when reading client groups from option files using mysql_options(). * Memory leak (16 bytes per every corrupted table) closed. * Fixed binary builds to use --enable-local-infile. * Update source to work with new version of bison. * Updated shell scripts to now agree with new POSIX standard. * Fixed bug where DATE_FORMAT() returned empty string when used with GROUP BY. 3.23.51: * Fix bug with closing tags missing slash for mysqldump XML output. * Remove end space from ENUM values. (This fixed a problem with SHOW CREATE TABLE.) * Fixed bug in CONCAT_WS() that cut the result. * Changed name of server variables Com_show_master_stat to Com_show_master_status and Com_show_slave_stat to Com_show_slave_status. * Changed handling of gethostbyname() to make the client library thread-safe even if gethostbyname_r doesn't exist. * Fixed core-dump problem when giving a wrong password string to GRANT. * Fixed bug in DROP DATABASE with symlinked directory. * Fixed optimisation problem with DATETIME and value outside DATETIME range. * Removed Sleepycat's BDB doc files from the source tree, as they're not needed (MySQL covers BDB in its own documentation). * Fixed MIT-pthreads to compile with glibc 2.2 (needed for make dist). * Fixed the FLOAT(X+1,X) is not converted to FLOAT(X+2,X). (This also affected DECIMAL, DOUBLE and REAL types) * Fixed the result from IF() is case in-sensitive if the second and third arguments are case sensitive. * Fixed core dump problem on OSF/1 in gethostbyname_r. * Fixed that underflowed decimal fields are not zero filled. * If we get an overflow when inserting '+11111' for DECIMAL(5,0) UNSIGNED columns, we will just drop the sign. * Fixed optimisation bug with ISNULL(expression_which_cannot_be_null) and ISNULL(constant_expression). * Fixed host lookup bug in the glibc library that we used with the 3.23.50 Linux-x86 binaries.
2003-09-27move ncurses/buildlink2.mk to mk/curses.buildlink2.mk, as it providesgrant1-2/+2
support for base system curses/ncurses as well as ncurses itself. suggested by wiz.
2003-09-27Just added a comment into Makefile as a reminder why PKG_SYSCONFBASE isreed1-1/+3
used instead of PKG_SYSCONFDIR. The openldap build defines a ldap_subdir (as /openldap) which is automatically appended (unless using --without-subdir which also breaks share and libexec). (Okay'd by wiz.)
2003-09-27merge back into single Makefilejdolecek2-15/+11
discussed with Thomas Klausner and Michal Pasternak
2003-09-25Split into Makefile and Makefile.common for simpler php4-mysql4 package.wiz2-11/+15
Closes PR 22936 by Michal Pasternak.
2003-09-24Updated to 0.5.0.xtraeme2-8/+9
Update provided by Min Sik Kim <minskim@bawi.org> in PR pkg/22850. Changes: 0.5.0 - tried to work around some problems with readline - some documentation update 20030530 - updated autoconf/automake - updated man page - pine import filter update 20021008 - options.c rewritten (new mutt style rc file support) - palmcsv export filter (Koenraad Heijlen) - added a spec file for rpm support - added --with-readline configure option - merged newtab patch by Sinan Kaan Yerli - new option: add_email_prevent_duplicates - bugfixes 2002-03-11 - readline support - abook can be compiled with g++ - attempt to improve --datafile behavior - html filter update (Morten Brix Pedersen) - store rcfile and addressbook to .abook directory 2002-02-04 - use getopt to parse command line (also new options added) - use strcoll instead of strcmp for sorting entries - html filter fix - bugfixes
2003-09-21This explictly needs pth.jmc1-1/+2
2003-09-19Update HOMEPAGE and/or MASTER_SITESdent1-4/+3
2003-09-19Trivially update to 1.0.0:jmmv2-6/+6
- Fixed #122108 - generating .server is not flexible (tagoh)
2003-09-19Trivially update to 1.0.0:jmmv2-6/+6
- Updated API documentation (rodrigo)
2003-09-19Bumping once is enough, oops.wiz1-2/+2
2003-09-19Do the chown of MYSQL_DATADIR to MYSQL_USER:MYSQL_GROUP automatically inwiz1-2/+2
the install file instead of only mentioning it in MESSAGE. Closes PR 22197. tron says ok.
2003-09-19Do the chown of MYSQL_DATADIR to MYSQL_USER:MYSQL_GROUP automatically inwiz3-9/+7
the install file instead of only mentioning it in MESSAGE. Closes PR 22197. tron says ok. Bump PKGREVISION.
2003-09-19Use .CURDIR variable instead of PKGDIR (for pkglint).wiz1-2/+2
2003-09-18Update to 0.29, closing PR pkg/21907. OK'd by wiz@ and seb@.cube2-9/+16
Add optional dependencies for SASL Authentification mechanisms. Full ChangeLog at the top of the tarball, here's an extract: Release 0.29 Work-a-round a bug in IO::Socket::SSL where it leaves the socket blessed into IO::Socket::SSL when socket_to_SSL fails Fix reference loop problem by hiding the real object behind a tied hash and only using the inner hash internally and the outer hash externally Extended ldap_error_name, ldap_error_text and ldap_error_desc to take Message args Added error_name, error_text and error_desc methods Release 0.28 Fix url host extraction Fix bug in URL parsing when the host contains a port. Change root_dse to return a RootDSE object instead of an Entry Add support for URIs to be passed to ->new. ldap: ldaps: and ldapi: are supported. Change Net::LDAPS and Net::LDAPI to be very thin wrappers over new URI code Support "Notice of Disconnection" Added LDAP Extensions section Call the callback, if any, for a message when its error is explicitly set Check result of client_step is defined or cause SASL auth to terminate Check client_start return value changes now returns an empty array if there were no changes. Added ->disconnect to do explicit disconnects from the server Better handling on IO errors Return schema parse errors Fix VLV response extraction. Patch from Paul Connolly Added information about perl-ldap installation in ActiveState Perl. Changed Messaging Direct to Isode. Added some information about the ResourcePool perl module. Replaced XML::Parse with XML::SAX. Change XML::Parser to XML::SAX::Base Changed decryptkey to keydecrypt for consistency Fixed clone(): update $clone->{changetype} and $clone->{changes}. Added the ablitiy to modify entry information by reading a ldif file. This requires the patch that I submitted for LDAP.pm. Added clone() function to copy an Entry object.
2003-09-18Add missing ../ in path to included file.wiz1-2/+2
2003-09-18Specify the category when including other files and when depending on otherjmmv5-12/+12
packages. From PR pkg/21864 by ccatrian at eml.cc.
2003-09-18Put patch-ad back, probably still needed on sparc64.markd2-1/+127
2003-09-18Update openldap to version 2.1.22.markd8-317/+85
This release contains the following major enhancements: * Transactional backend * Improved Unicode handling * Improved DN handlng * Improved Referral handling * SASL authentication/authorization mapping * SASL in-directory storage of authentication secrets * Enhanced administrative limits/access controls * Meta backend (experimental) * Monitor backend (experimental) * Virtual "glue" backend (experimental) * LDAP C++ API * Updated LDAP C and TCL APIs * LDAPv3 extensions, including: - Enhanced Language Tag/Range Support - 'Who am i?' Extended Operation - 'Matched Values' Control - 'NOOP' Control plus lots of bug fixes. Update (to 2.1.20) from Juan RP in PR pkg/21682 with some tidy up and update to 2.1.22 by Marc Recht and me. Also closes PR pkg/21217 by Jean-Luc Wasmer and PR pkg/20972 by Jeremy Reed.
2003-09-17Update to nb5: Add patch fromwiz3-3/+17
http://lists.netsys.com/pipermail/full-disclosure/2003-September/009819.html against a vulnerability.
2003-09-17get rid of USE_GCC2/3 in pkg Makefiles, and set GCC_REQD orgrant1-2/+2
USE_PKGSRC_GCC as appropriate, as this is handled by compiler.mk now.
2003-09-16Add and enable ruby-vapor.taca1-1/+2
2003-09-16Importing databases/ruby-vapor 0.7.0 pacakge, based on PR pkg/22296taca4-0/+157
by Rasputin <rasputin at idoru dot mine dot nu>. Vapor is a persistent Object-Repository for Ruby, providing transparent persistence of Ruby objects to a PostgreSQL database. It's goal is to provide developers with an easy-to-use persistence framework that does not interfere with the code of classes that are to be persistently stored. Vapor does not require any knowledge about relational databases, so developers can concentrate on the task of writing their application logic. Some of Vapor's general design was inspired by the JDO (Java Data Objects) standard.
2003-09-14hange extension.mk to also install optimized files for distutils packages.recht6-11/+48
Inspired by FreeBSD "ports". Fix the PLISTs accordingly. Also, while at it, remove now obsolete compileall.py calls in post-install targets and insure that extension.mk is in included before builinlinks of other Python modules. Discussed with/ok'ed by drochner@.
2003-09-12kill all references to gcc.buildlink2.mk and compiler.mk, and definegrant1-3/+2
USE_GCC2 or USE_GCC3 where appropriate. the functionality of the old gcc.buildlink2.mk has been rolled into compiler.mk now, which is automatically used. more changes to come later...
2003-09-11Update ruby-mysql pacakge to 2.4.5.taca3-18/+19
Changes from web page: 2003-08-10 2.4.5 * extconf.rb: correspond to MySQL 4.1. * mysql.c.in: correspond to Ruby 1.8. 2003-02-23 2.4.4a * make extconf.rb to correspond to Ruby 1.8.0 2003-01-29 2.4.4 * add Mysql::OPT_LOCAL_INFILE. * add --with-mysql-config option to extconf.rb. * extconf.rb automatically detect typical library. 2003-01-05 2.4.3c * modified English README. Thanks to Paul DuBois. 2002-12-24 2.4.3b * make extconf.rb to correspond to Ruby 1.6.8. 2002-11-07 2.4.3a * fix bug duplicating constant. 2002-09-10 2.4.3 * for error number with prefix ER_ . * get error constant from errmsg.h and mysqld_error.h automatically. 2002-03-31 2.4.2a * change extconf.rb.
2003-09-11Forgot to remove one obsolete line in pre-install.taca1-2/+1
2003-09-11Update ruby-postgres package to 0.7.1.taca2-8/+6
Convert to use buildlink2.mk for postgress dependency. =========================================== Mon Jan 6 2003 version 0.7.1 * async_exec: remove check of PQisBusy. patch supplied byd <m_seki@mva.biglobe.ne.jp> Wed Oct 16 2002 version 0.7.0 * rename README.jp -> README.ja. Thu Oct 10 2002 * get_notify: bug fix Deletes of unnecessary "free(notify);" debian bug report. Wed Oct 9 2002 * query: add pgresult_clear. patch supplied by "Shirai,Kaoru" <shirai@p1jp.com> Sat Sep 28 2002 * PGconn: add methods escape, quote, escape_bytes. patch supplied by MoonWolf <moonwolf@moonwolf.com> Tue Aug 20 2002 * extconf.rb add dir_config('postgres') patch supplied by Nate Haggard <nate@wordplace.com> Mon Jun 3 2002 version 0.7.0-pre2 * not to use fe_getauthname(). patch supplied by Neil Conway <nconway@klamath.dyndns.org> Thu May 30 2002 version 0.7.0-pre1 * Fix to insert_table so that nil values in Ruby are inserted back into the database as nulls. patch supplied by Jeremy Henty <jeremy@chaos.org.uk> * Fix to insert_table to protect characters that Postgres would otherwise interpret specially. patch supplied by Jeremy Henty <jeremy@chaos.org.uk> Wed Apr 24 2002 * Removed unused variables. * Improve notification code. * Add a missing "return Qnil" statement in a function declared to return VALUE. * Fix an minor error in pgconn_loopen(). patch supplied by Neil Conway <nconway@klamath.dyndns.org> Tue Mar 5 2002 * fix pglarge_write return. patch supplied by Noboru Matui <silicon@mx1.freemail.ne.jp> Mon Jan 7 2002 * refer to POSTGRES_INCLUDE and POSTGTRES_LIB environmental variables. patch supplied by Neil Conway <nconway@klamath.dyndns.org> Sun Dec 16 2001 * add methods "getisnull". patch supplied by Jeremy Henty <jeremy@chaos.org.uk> Tue Nov 27 2001 * convert NULL => nil . patch supplied by "Shirai,Kaoru" <shirai@p1jp.com>
2003-09-11Bump PKGREVISION to 2, due to libgda/libgnomedb updates.jmmv1-2/+3
Add explicit dependancy on pkgconfig.
2003-09-11Update to 0.99.0:jmmv5-46/+45
libgnomedb 0.99.0, 2003-09-10 ----------------------------- - Added a (configurable) icon to GnomeDbGrayBar (apg) - Use icons for gnome-database-properties tabs (rodrigo) - Removed ugly BUILD_WITH_GNOME in public headers (daniel) - Updated translations: - ca (jordim) - cs (mitr) - de (cneumair) - es (pablodc) - fi (pvirtane) - fr (redfox) - no (kmaraas) - pl (aflinta) - pt (dnloreto) - sl (minmax) - sr (danilo) - sv (menthos) libgnomedb 0.91.0, 2003-08-06 ----------------------------- - Extended GnomeDbLogin API (rodrigo) - Added a 'Create DSN' button on the GnomeDbLogin widget (rodrigo) - Redid UI for database properties configuration applet (rodrigo) - Fixed #108023 (rodrigo) - Some HIG-ification (apg, rodrigo) - Added query builder widget, to be used in Gnumeric and Abiword (rodrigo) - Extended GnomeDbEditor API (daniel) - More API documentation (rodrigo) - Updated translations: - cs (mitr) - de (cneumair) - es (pablodc) - nl (adrighem) - pl (aflinta) - pt (dnloreto) - sv (menthos) libgnomedb 0.90.0, 2003-07-03 ----------------------------- - Added missing entry points to GnomeDbLoginDialog API (rodrigo) - Removed non-working MIME components (rodrigo) - Added MIME actions component for SQL and connection files (rodrigo) - Removed dependencies on GTK+ 2.2 (rodrigo) - Added missing files to spec file (adam) - Added preloading of GConf keys (rodrigo) - Catched missing translatable strings (baddog) - HIG-ify the error dialog widget (rodrigo) - Updated translations: - be (dmitrym) - cs (mitr) - es (pablodc) - ml (karunakar) - nl (vincent) - pt (dnloreto) - ru (frob) - sv (menthos) - zh_TW (baddog)
2003-09-11Update to 0.99.0:jmmv5-20/+30
libgda 0.99.0, 2003-09-10 ------------------------- - Fixed typo to build the freetds correctly (tagoh) - Added gda_config_save_data_source_info function (rodrigo) - Manage correctly non-SELECT statements in MySQL provider (gonzalo, csilles) - Added Blob API (juan-mariano, gonzalo) - Fixed many issues with GdaXmlDatabase (philippe, rodrigo) - Fixed leaks in PostgreSQL provider (gonzalo) - Added more API documentation (rodrigo) - Added missing SQL support in XML provider (rodrigo) - Updated translations: - ca (jordim) - cs (mitr) - de (cneumair) - es (pablodc) - fi (pvirtane) - fr (redfox) - it (marcoc) - no (kmaraas) - pl (aflinta) - pt (dnloreto) - sl (minmax) - sr (danilo) - sv (menthos) libgda 0.91.0, 2003-08-06 ------------------------- - Renamed default provider to XML and added some missing things (rodrigo) - Fixed #116758 (rodrigo) - Fixed x86-64 bits compilation problems (fcrozat) - Made basic SQL work in GdaSelect class (rodrigo) - Added missing LDAP flags (juergen) - Initial 'delete' support in the SQL parser library (gonzalo) - Removed compilation warnings (gonzalo) - Improved changes management in GdaXmlDatabase (rodrigo) - More API documentation (rodrigo) - Fixed permissions problem in gda_file_save (philippe) - Fixed lexer compilation problems (gonzalo) - Updated translations: - cs (mitr) - de (cneumair) - es (pablodc) - it (marcoc) - nl (adrighem) - pl (aflinta) - pt (dnloreto) - sv (menthos) libgda 0.90.0, 2003-07-03 ------------------------- - Added missing stanzas for MDB and LDAP providers in spec file (adam) - Added version 3 support for the mSQL provider (dschoene) - Added support for unsigned integer values (dschoene) - Added DONT_SHARE option for connections (rodrigo) - Some more documentation (rodrigo) - Updated translations: - cs (mitr) - es (pablodc) - ml (karunakar) - nl (vincent) - pt (dnloreto) - ru (frob) - zh_TW (baddog)