summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2005-01-17Update mysql4-{client,server} to 4.1.9.xtraeme9-83/+42
Functionality added or changed: * The Mac OS X 10.3 installation disk images now include a MySQL Preference Pane for the Mac OS X Control Panel that enables the user to start and stop the MySQL server via the GUI and activate and deactivate the automatic MySQL server startup on bootup. * Seconds_Behind_Master will be NULL (which means ``unknown'') if the slave SQL thread is not running, or if the slave I/O thread is not running or not connected to master. It will be zero if the SQL thread has caught up with the I/O thread. It no longer grows indefinitely if the master is idle. * InnoDB: Do not acquire an internal InnoDB table lock in LOCK TABLES if AUTOCOMMIT=1. This helps in porting old MyISAM applications to InnoDB. InnoDB table locks in that case caused deadlocks very easily. * InnoDB: Print a more descriptive error and refuse to start InnoDB if the size of `ibdata' files is smaller than what is stored in the tablespace header; innodb_force_recovery overrides this. * The MySQL server aborts immediately instead of simply issuing a warning if it is started with the --log-bin option but cannot initialize the binary log at startup (that is, an error occurs when writing to the binary log file or binary log index file). * The binary log file and binary log index file now behave like MyISAM when there is a "disk full" or "quota exceeded" error. See section A.4.3 How MySQL Handles a Full Disk. Many bugfixes were fixed... see http://dev.mysql.com/doc/mysql/en/News-4.1.9.html
2005-01-17Fix build with mysql >= 4.1.3.markd2-1/+27
2005-01-17some older versions of SGI don't define "sgi", but both older and newerjschauma2-1/+15
versions define "__sgi", so use that. This should fix PR pkg/28819.
2005-01-16Add 24pth to accepted python versions.markd1-2/+2
2005-01-16+sqlite3tv1-1/+2
2005-01-16Import sqlite3-3.0.8, the next major release of sqlite. Resides in paralleltv5-0/+65
with sqlite version 2 (everything in this package ends in `3'). DESCR: SQLite is a C library that implements an SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library. SQLite is not a client library used to connect to a big database server. SQLite is the server. The SQLite library reads and writes directly to and from the database files on disk.
2005-01-15Reset maintainer to tech-pkg@; Benedikt Meurer cannot handle these any more.jmmv1-2/+2
2005-01-14Create a pam.buildlink3.mk file that is used by PAM-using packages.jlam2-4/+4
It includes the correct buildlink3.mk file from either Linux-PAM (security/PAM) or OpenPAM (security/openpam) and eventually will support solaris-pam. pam.buildlink3.mk will: * set PAMBASE to the base directory of the PAM files; * set PAM_TYPE to the PAM implementation used. There are two variables that can be used to tweak the selection of the PAM implementation: PAM_DEFAULT is a user-settable variable whose value is the default PAM implementation to use. PAM_ACCEPTED is a package-settable list of PAM implementations that may be used by the package. Modify most packages that include PAM/buildlink3.mk to include pam.buildlink3.mk instead.
2005-01-12Change a = to a += so that all of the necessary OWN_DIRS_PERMS arejlam1-2/+3
created. This is needed for slapd to start properly with a default install. Bump the PKGREVISION to 1.
2005-01-12Be a bit more descriptive about why the bdb option is enabled byxtraeme1-1/+5
default, suggested by jlam@.
2005-01-12If dynamic and bdb options are used, the hdb module is built, but notxtraeme2-3/+8
if bdb is disabled, so only build it when the bdb option has been enabled.
2005-01-11Forgot to remove the ranlib call for libmystrings, which is not installedxtraeme2-6/+14
by mysql-client. This should fix problem reported by Stoned Elipot.
2005-01-10Update mysql4-* to 4.1.8a.xtraeme22-198/+211
Please check http://dev.mysql.com/doc/mysql/en/News-4.1.8.html to see the list of changes, new features added and a bunch of bugs were fixed.
2005-01-08Add CONFIGURE_ENV for Python executible name. Should fix bulk build.darcy1-1/+3
2005-01-06Changes 2.2.20:adam2-7/+6
Fixed slapd sanity check on protocol in authz-regexp URI (ITS#3411) Fixed slapd ID to DN mapping when values need DN escaping (ITS#3419) Fixed slapd sl_realloc memory overrun (ITS#3420, #3404, #3296) Fixed slapd syncrepl bugs (ITS#3423, #3425, #3443, #3448) Fixed slapd bad tag handling Fixed slapd error return for modrdn invalid access (ITS#3450) Fixed back-bdb locks in backend_group (ITS#3263, #3365) Fixed back-bdb/back-hdb listing of permissive control (ITS#3453) Fixed back-ldap failed connection retry (ITS#3217) Fixed back-ldap/back-meta memory handling in attr mapping Fixed back-meta modrdn newSuperior target selection Fixed back-sql segfault when logging and delete_rule is NULL (ITS#3407) Build Environment Fixed slurpd build on Windows
2005-01-05On Solaris link with -lrt or fdatasync is an unresolved symbol.markd1-3/+3
Bump PKGREVISION.
2005-01-05Updated db4 to 4.3.27martti5-89/+33
* bug fixes
2005-01-04Apply patch from Alexander Becher in PR 28802.wiz1-3/+5
Bump PKGREVISION.
2005-01-04Added sqlitemanager, a web frnt-end for managing SQLItedatabasesmanu1-1/+2
2005-01-04sqlite manager is a web tool for managing SQLite databasesmanu4-0/+179
2005-01-02Update to version 4.3.0seb3-14/+16
Note: This fix the build with latest db4 package. Package changes: Remove references to LOCALBASE. Add test target support. Changes since last packaged version (4.2.4): 4.3.0: * Added support for building properly against BerkeleyDB 4.3.21. * fixed bug introduced in 4.2.8 that prevent the module from compiling against BerkeleyDB 3.2 (which doesn't support pget). * setup.py was cleaned up a bit to search for and find the latest version of the correct combo of db.h and libdb. 4.2.9: * DB keys() values() and items() methods were ignoring their optional txn parameter. This would lead to deadlocks in applications needing those to be transaction protected. 4.2.8: * Adds support for DB and DBCursor pget methods. Based on a patch submitted to the mailing list by Ian Ward <ian@arevco.ca> * Added weakref support to all bsddb.db objects. * Make DBTxn objects automatically call abort() in their destructor if not yet finalized and raise a RuntimeWarning to that effect. 4.2.7: * fix an error with the legacy interface relying on the DB_TRUNCATE flag that changed behaviour to not work in a locking environment with BerkeleyDB 4.2.52. [SF bug id 897820] * fixed memory leaks in DB.get, DBC.set_range and potentially several other methods that would occur primarily when using queue | recno format databases with integer keys. [SF patch id 967763] 4.2.6: * the DB.has_key method was not honoring its txn parameter to perform its lookup within the specified (optional) transaction. fixed. [SF bug id 914019] 4.2.5: * Fixed a bug in the compatibility interface set_location() method where it would not properly search to the next nearest key when used on BTree databases. [SF bug id 788421] * Fixed a bug in the compatibility interface set_location() method where it could crash when looking up keys in a hash or recno format database due to an incorrect free().
2005-01-01Remove py-postgresql73 from directories.darcy1-2/+1
2005-01-01This package is not needed any more. The py-postgresql package is thedarcy3-57/+0
one being maintained and it builds for all versions of PostgreSQL.
2005-01-01Add missing dependencies (gnome-vfs2 and pkgconfig) and bumpminskim1-1/+4
PKGREVISION.
2005-01-01Add build dependency on pkgconfig, which is used by configure.minskim1-1/+2
2005-01-01Bump PKGREVISION because old binary packages may contain a wrong pathminskim5-10/+10
to the perl executable.
2004-12-31Bump PKGREVISION because the previous versions built with bsd.pkg.mk 1.1552minskim1-2/+2
may contain a wrong path to the perl executable.
2004-12-30Use the -pthread option only when pthread is enabled. Previously, theminskim3-5/+15
configure script still used -pthread during the POSIX mutex test even when we explicitly disabled pthread through CONFIGURE_ENV, resulting in re-enabling pthread. Bump PKGREVISION.
2004-12-30Update HOMEPAGE.kristerw1-3/+3
Make pkglint happy by moving the PKGREVISION to follow DISTNAME.
2004-12-28Use LIBMODE instead of 444.minskim3-5/+6
2004-12-28The default location of the pkgsrc-installed rc.d scripts is nowreed7-11/+14
under share/examples/rc.d. The variable name already was named RCD_SCRIPTS_EXAMPLEDIR. This is from ideas from Greg Woods and others. Also bumped PKGREVISION for all packages using RCD_SCRIPTS mechanism (as requested by wiz).
2004-12-27update kmysqladmin to 0.7.0markd8-87/+106
ported to kde3 and lots of bugfixes.
2004-12-27Update databases/db4 to 4.3.21. Changes from version 4.2.25 include:jlam8-1240/+1395
* Automatic initialization of replication clients * Replication election process is now Paxos compliant * In memory transaction logs allowing in memory databases * Enhanced Java API nearly identical to that of our Java Edition * Native support for sequence number generation * Degree 2 transaction isolation * Mutex statistics can now be easily gathered and recorded * Support for Itanium2 chips running Windows XP
2004-12-23Add missing locale file.jlam1-1/+2
2004-12-22Remove hack, now that pg_config comes with postgresql-libs package.wiz1-4/+1
2004-12-22Update databases/openldap to 2.2.19. Changes from version 2.2.18 include:jlam3-10/+9
* Fixed slapd check for mandatory filter in authz-regexp URI * Fixed slapd bad descriptor check * Fixed slapd ACI when the subject contains '#' * Fixed back-ldap malformed URI check for multiple URIs * Fixed back-ldap/back-meta static definition of be_open() * Fixed back-bdb cache bugs, ctxcsn memory leak
2004-12-21Fix build: p5-Data-ShowTable had its PKGREVISION bumped, be more liberalseb1-2/+2
on the version this package requires.
2004-12-21update to 1.0.8drochner3-8/+11
changes: -improved finnish / spanish support -new statistics chart plugin -GEDCOM improvements -bugfixes
2004-12-21py-table-0.8.3adarcy5-0/+171
PyTable is a relational database wrapper based on BasicProperty's rich property-based modeling system. PyTable provides a "thick" wrapper for PostgreSQL (and MySQL) database adapters which fills in missing functionality in the adapter layer to provide a uniform rich external API.
2004-12-21Add py-tabledarcy1-1/+2
2004-12-21Add p5-SQL-Abstract and p5-Class-DBI-AbstractSearch.he1-1/+3
2004-12-20Import p5-Class-DBI-AbstractSearch version 0.05.he4-0/+40
Description: Class::DBI provides a convenient abstraction layer to a database. It not only provides a simple database to object mapping layer, but can be used to implement several higher order database functions (triggers, referential integrity, cascading delete etc.), at the application level, rather than at the database. This is particularly useful when using a database which doesn't support these (such as MySQL), or when you would like your code to be portable across multiple databases which might implement these things in different ways. In short, Class::DBI aims to make it simple to introduce 'best practice' when dealing with data stored in a relational database.
2004-12-20Import p5-SQL-Abstract version 1.17.he4-0/+28
Description: This module was inspired by the excellent the DBIx::Abstract manpage. However, in using that module I found that what I really wanted to do was generate SQL, but still retain complete control over my statement handles and use the DBI interface. So, I set out to create an abstract SQL generation module.
2004-12-20remove workaround for Darwin missing poll.h as a more correct fix isgrant1-6/+1
applied globally now.
2004-12-20since perl is now built with threads on most platforms, the perl archlibgrant29-37/+58
module directory has changed (eg. "darwin-2level" vs. "darwin-thread-multi-2level"). binary packages of perl modules need to be distinguishable between being built against threaded perl and unthreaded perl, so bump the PKGREVISION of all perl module packages and introduce BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct dependencies are registered and the binary packages are distinct. addresses PR pkg/28619 from H. Todd Fujinaka.
2004-12-19explicitly ignore poll() on Darwin because newer Darwin does not havegrant1-1/+6
poll.h or provide the required #defines elsewhere.
2004-12-19Ensure that we build the shared library using PIC objects. This shouldjlam1-3/+6
fix the build on amd64.
2004-12-18Fix postgresql74-plperl so that it finds libperl.so at runtime. Thejlam3-20/+17
PostgreSQL configure/build infrastructure tries very hard to separate rpath flags from other LDFLAGS, which is completely unnecessary in pkgsrc since the wrapper scripts are smart enough to deal with it on their own. In this case, the GNU configure script was stripping out the rpath to libperl.so when setting perl_embed_ldflags, so modify the configure script to not do this. Also re-enable this package since it's possible to load the plperl.so language module again. I tested this with: createdb foo createlang -d foo plperl
2004-12-18tell configure to ignore inttypes.h on irix 5 because it is known togrant1-1/+7
be incompatible with sys/types.h. fixes PR pkg/28545 from Georg Schwarz.
2004-12-18I lost the checksum for the tarball in my last commit... add it back.jlam1-1/+3