summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2005-07-16Pullup ticket 586 - requested by grant beattiesnj1-6/+4
portability fix for mysql-client Revisions pulled up: - pkgsrc/databases/mysql-client/Makefile.common 1.44, 1.45 Module Name: pkgsrc Committed By: grant Date: Tue Jul 5 08:48:41 UTC 2005 Modified Files: pkgsrc/databases/mysql-client: Makefile.common Log Message: specify path to openssl in --with-openssl argument. noted by Pierre Bourgin on tech-pkg@ ---- Module Name: pkgsrc Committed By: grant Date: Tue Jul 5 08:49:44 UTC 2005 Modified Files: pkgsrc/databases/mysql-client: Makefile.common Log Message: use {CFLAGS,CXXFLAGS}.SunOS instead of conditional.
2005-07-16Pullup ticket 609 - requested by Thomas Klausnersnj10-108/+146
security update for postgresql74 Revisions pulled up: - pkgsrc/databases/postgresql74/Makefile.common 1.24 - pkgsrc/databases/postgresql74/distinfo 1.18 - pkgsrc/databases/postgresql74-client/Makefile 1.12 - pkgsrc/databases/postgresql74-client/PLIST 1.4 - pkgsrc/databases/postgresql74-client/files/man.client 1.1 - pkgsrc/databases/postgresql74-client/files/man.exclude removed - pkgsrc/databases/postgresql74-docs/PLIST 1.4 - pkgsrc/databases/postgresql74-lib/PLIST 1.5 - pkgsrc/databases/postgresql74/patches/patch-ah removed - pkgsrc/databases/tcl-postgresql74/Makefile 1.3 Module Name: pkgsrc Committed By: wiz Date: Thu Jun 30 01:50:11 UTC 2005 Modified Files: pkgsrc/databases/postgresql74: Makefile.common distinfo pkgsrc/databases/postgresql74-client: Makefile PLIST pkgsrc/databases/postgresql74-docs: PLIST pkgsrc/databases/postgresql74-lib: PLIST pkgsrc/databases/tcl-postgresql74: Makefile Added Files: pkgsrc/databases/postgresql74-client/files: man.client Removed Files: pkgsrc/databases/postgresql74-client/files: man.exclude pkgsrc/databases/postgresql74/patches: patch-ah Log Message: Update postgresql74* packages to 7.4.8. Release Notes Release 7.4.8 Release date: 2005-05-09 This release contains a variety of fixes from 7.4.7, including several security-related issues. __________________________________________________________________ Migration to version 7.4.8 A dump/restore is not required for those running 7.4.X. However, it is one possible way of handling two significant security problems that have been found in the initial contents of 7.4.X system catalogs. A dump/initdb/reload sequence using 7.4.8's initdb will automatically correct these problems. The larger security problem is that the built-in character set encoding conversion functions can be invoked from SQL commands by unprivileged users, but the functions were not designed for such use and are not secure against malicious choices of arguments. The fix involves changing the declared parameter list of these functions so that they can no longer be invoked from SQL commands. (This does not affect their normal use by the encoding conversion machinery.) The lesser problem is that the "contrib/tsearch2" module creates several functions that are misdeclared to return internal when they do not accept internal arguments. This breaks type safety for all functions using internal arguments. It is strongly recommended that all installations repair these errors, either by initdb or by following the manual repair procedures given below. The errors at least allow unprivileged database users to crash their server process, and may allow unprivileged users to gain the privileges of a database superuser. While here, fix postgresql74-client package installation on 2.0 (broken -X), and avoid the need for gtar in tcl-postgresql74.
2005-06-19Add missing rc.d script entry in PLIST.seb2-3/+4
Bump PKGREVISION to 1.
2005-06-17Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead ofjlam1-2/+2
${PREFIX}.
2005-06-16Create directories before installing files into them.jlam12-12/+34
2005-06-12Update ruby-mysql package to 2.6. (not security fix but leaf pacakge.)taca3-11/+11
pkgsrc changes: - Change HOMEPAGE in English. - Add style sheet to installed documents. distribution changes: 2005-04-25: version 2.6 * add constants for Mysql#option(): Mysql::OPT_PROTOCOL, Mysql::OPT_READ_TIMEOUT, Mysql::OPT_WRITE_TIMEOUT, Mysql::SET_CHARSET_DIR, Mysql::SET_CHARSET_NAME, Mysql::SHARED_MEMORY_BASE_NAME, Mysql::SECURE_AUTH * add methods: Mysql#more_results?(), Mysql#next_result(), Mysql#set_server_option(), Mysql#sqlstate() * add constants for Mysql#connect(): Mysql::CLIENT_MULTI_STATEMENTS, Mysql::CLIENT_MULTI_RESULTS * add constants for Mysql#set_server_option(): Mysql::OPTION_MULTI_STATEMENTS_ON, Mysql::OPTION_MULTI_STATEMENTS_OFF * add Mysql#query() with block * add Mysql#reconnect(), Mysql#reconnect=() * When connection was closed, it don't try to reconnect by default. 2005-02-12: version 2.5.2 * BUG: Mysql#connect make object to not close. (Thanks Andres Salomon)
2005-06-08Remove just "A" line. Fix PR pkg/30467 provided by Damon Brodie.taca1-2/+1
2005-06-04- Update adodb to 4.63adrianp3-27/+73
- There are a massive amount of changes/updates/bugfixes as the pkgsrc version was quite old (4.00) - For the full details referr to: http://phplens.com/lens/adodb/docs-adodb.htm#changes
2005-06-01Remove mk/autoconf.mk and mk/automake.mk and replace their usage withjlam2-9/+6
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or "automake14". Also, we don't need to call the auto* tools via ${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care to symlink the correct tool to the correct name, so we can just use aclocal, autoconf, etc.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam12-26/+14
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-06-01Add build dependency on readline to keep configure happy on platforms thatmarkd1-1/+3
don't have a libedit or libreadline in the base system (eg Solaris). Server parts don't actually use readline but configure blows up trying to find it for the client parts. OKed by Juan RP.
2005-05-31Rename option PAM to pam (so all options are lower case). Backwardsdillo3-9/+9
compatibility provided via PKG_OPTIONS_LEGACY_OPTS.
2005-05-31Packages have no business modifying PKG_DEFAULT_OPTIONS -- it's adillo2-7/+4
user settable variable. Set PKG_SUGGESTED_OPTIONS instead. Also, make use of PKG_OPTIONS_LEGACY_VARS. Reviewed by wiz.
2005-05-29Sort lines for pkglint.wiz1-3/+3
2005-05-29regen (after adding DISTINFO_SUBDIR; no checksum change)wiz1-4/+4
2005-05-28- As pointed out by wiz@, we should add DIST_SUBDIR.adrianp1-1/+2
2005-05-28- Upsream change of distfile without incrementing the version.adrianp2-5/+6
- Two minor bugfixes
2005-05-25Add RMD160 checksum.wiz1-1/+2
2005-05-23- Update to nb1adrianp4-16/+54
- Add apache configuration file fragment - Use CONF_FILES for config.php and newly added apache file fragment - Change permissions on installed config.php to www:wheel 0600 as it can contain sensitive information in some installations - Update MESSAGE pointing to new files installed
2005-05-23Update mysql4-* to 4.1.12.xtraeme9-43/+84
Lots of changes and bugs fixed, see http://dev.mysql.com/doc/mysql/en/news-4-1-12.html for more information.
2005-05-23Removed trailing white-space.rillig7-10/+10
2005-05-22Remove USE_TOOLS+=gawk from packages that had it added solely for Solaris.jlam1-3/+1
We rely on the tools framework to pull in a good enough awk tool.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam29-58/+58
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-05-22For packages that use GNU configure, don't bother adding "TOOL"jlam2-4/+2
variables into CONFIGURE_ENV if the new tools framework already takes care of adding them automatically.
2005-05-20Remove extravagent use of SUBST_CLASSES and replace with one-liner tojlam1-10/+4
create the config file at do-configure time.
2005-05-20Fix harmless typo.jlam1-2/+2
2005-05-20Removed unnecessary ${WRKSRC} from SUBST_FILES.rillig1-2/+2
2005-05-19Update to version 0.9.6c.seb3-9/+23
Changes since last packaged version (0.9.5) * Version 0.9.6c, 2005-04-26 No changes list found, diff seems to show bug fixes and syslog improvements * Version 0.9.6, 2005-04-03 * Summary: The main goals for this version was to close all the outstanding bugs and apply all the submitted patchs on sourceforge. All the sourceforge easy to do RFE's where also included. * Notes: - Added support for mulpiple Base DN's - Added support to log for syslog (Benjamin Drieu) - Added hooks feature to replace custom functions (Benjamin Drieu) - Entry chooser now auto adds rdn entry for copy/move operations (wigi2) - Initial support for AD Schema Retrieval - Added login restriction (Samuel Tran) - Added support to move objects (aka Copy then Delete) (wigi2) - No longer show + next to objects that have no children in tree viewer (when hide_configuration_management=true) - Added date evaluation to shadow attributes (shadowAccount) - Added Enhancement to show attributes in a specifc order (Samuel Tran) - Added Server Info OID descriptions - Added new feature to compare two DNs - Binary SID to text SID feature for MSAD objectSid entries. - Added session timeout feature (Samuel Tran) * New Languages: - Taiwan (Anonymous) - Simplfied Chinese (Anonymous) * Changes: - LDAP server configuration is being moved into an Object LDAPServer, all future interactions should use this object class from now on. - Some more conversions of english static text into language files. - Some code cleanup, excess whitespace removal, etc... - Tags for phpdoc updated. - Added cvs header to files missing the header. - LDIF Import function improvements (Xavier Renard) - UniqueAttrs fix, now showing actual value (in multi value attribs) that breaches uniqueness - Fixed check_lang_files when register_globals=off - css fixes (Daniel van Eeden) - More locatisation fixes (Piotr Tarnowski) - Schema functions all use cached entries now by default - Improved password encoding functions (Tomas Kuliavas) - If auth_type = session, then dn and password is also blowfish encrypted - Prettied up the icon index (Dave Smith) - Make the rdn not editable in the default template. * Fixes: - password_check when magic_quotes_gpc is on. - Misc fixes (Benjamin Drieu) - Fix searchs when searching for values with brackets - Unicode fixes (Daniel van Eeden) - View jpeg photo minor security fix (Dave Smith) - Check password link missing in read-only mode * Sourceforge bug fixes: 1117099 1117316 1120048 1150947 1152962 1153360 1055401 1158148 1161425
2005-05-19PERL5_PKGSRCDIR isn't defined when using the new tools framework. Replacejlam1-2/+2
it with an explicit lang/perl58 reference.
2005-05-18Remove gnome1 packages except as needed for gnucash.wiz7-701/+1
Ok'd by jmmv@ and rh@ (gnome 1 maintainers).
2005-05-18- Note addition of pear-DB-1.7.6adrianp1-1/+3
2005-05-18- Import of pear-DBadrianp4-0/+32
DB is a database abstraction layer providing: * an OO-style query API * portability features that make programs written for one DBMS work with i other DBMS's * a DSN (data source name) format for specifying database servers * prepare/execute (bind) emulation for databases that don't support it natively * a result object for each query response * portable error codes * sequence emulation * sequential and non-sequential row fetching as well as bulk fetching * formats fetched rows as associative arrays, ordered arrays or objects * row limit support * transactions support * table information interface * DocBook and phpDocumentor API documentation
2005-05-18Use RCD_SCRIPTS_SHELL on the scripts we install, as they do not use fullysketch2-6/+12
portable shell constructs.
2005-05-16Change the EXTRACT_USING_PAX defined/undefined option into a EXTRACT_USINGjlam2-6/+6
which can take multiple values -- "pax" or "gtar". The default value of EXTRACT_USING is "pax", which more closely matches reality since before, we were using bootstrap "tar" for ${GTAR} and it was actually pax-as-tar. Also, stop pretending pax-as-tar from the bootstrap kit or on NetBSD is GNU tar. Lastly, in bsd.pkg.extract.mk, note whether we need "pax" or "gtar" depending on what we need to extract the distfiles.
2005-05-16Note that tar is required by this package.jlam4-6/+10
2005-05-16Note that gtar is required by the package.jlam5-5/+10
2005-05-16Move "-m fast" argument from stop_command_args to common_args so thatcjs1-3/+3
restart picks it up, too.
2005-05-15Update to version 0.3202 as package version 0.32.02.seb2-11/+14
Package change: convert to the options framework. Changes since last packaged version (0.30): perl-ldap 0.3202 -- Mon Jul 19 11:44:08 BST 2004 Bug Fixes * Fixed case typo in Makefile.PL perl-ldap 0.3201 -- Wed Jul 14 21:52:59 BST 2004 Bug Fixes * Fixed dependancies in Makefile.PL perl-ldap 0.32 -- Bug Fixes * Documentation updates * Fixed LDIF output from ldapsearch command * Return an error if no filter is passed to Net::LDAP::filter->parse * Fixed bug handling comments in LDIF parser * Fix to ldapsearch for passing scope with -s * Do not send a fake userid in SASL binds * Net::LDAP::Schema->parse() now returns undef on errors Enhancements * Added supportedFeatures to the default list of attributes fetched by ->root_dse * Added option to sort attributes in LDIF output, with objectclass being first floowed by all other attributes in alphabetical order * Add escape/unescape filters/DN utility functions * Added support for reading LDIF URL attributes using file:// * The socket created by new can now be bound to a local address & port * Any controls returned by the server with each entry as a result from a search are now available in the callback function * Added classes for EntryChange, PersistentSearch and ManageDsaIT controls * Allow options passed to Net::LDAP::Entry-.update to be passed to the Net::LDAP method that is finally called perl-ldap 0.31 1 Jan 2004 ========================== * Fixed bug that could cause methods to return an integer instead of an object * Fixed bug causing Schema.pm to ignore superior classes that had no attributes * Documentation updates * Updates to LDIF module
2005-05-15Update to PostgreSQL 8.0.3recht2-16/+9
This release contains a variety of fixes from 8.0.2, including several security-related issues. __________________________________________________________________ Migration to version 8.0.3 A dump/restore is not required for those running 8.0.X. However, it is one possible way of handling two significant security problems that have been found in the initial contents of 8.0.X system catalogs. A dump/initdb/reload sequence using 8.0.3's initdb will automatically correct these problems. The larger security problem is that the built-in character set encoding conversion functions can be invoked from SQL commands by unprivileged users, but the functions were not designed for such use and are not secure against malicious choices of arguments. The fix involves changing the declared parameter list of these functions so that they can no longer be invoked from SQL commands. (This does not affect their normal use by the encoding conversion machinery.) The lesser problem is that the "contrib/tsearch2" module creates several functions that are misdeclared to return internal when they do not accept internal arguments. This breaks type safety for all functions using internal arguments. It is strongly recommended that all installations repair these errors, either by initdb or by following the manual repair procedure given below. The errors at least allow unprivileged database users to crash their server process, and may allow unprivileged users to gain the privileges of a database superuser. If you wish not to do an initdb, perform the same manual repair procedures shown in the 7.4.8 release notes. __________________________________________________________________ Changes * Change encoding function signature to prevent misuse * Change "contrib/tsearch2" to avoid unsafe use of INTERNAL function results * Guard against incorrect second parameter to record_out * Repair ancient race condition that allowed a transaction to be seen as committed for some purposes (eg SELECT FOR UPDATE) slightly sooner than for other purposes This is an extremely serious bug since it could lead to apparent data inconsistencies being briefly visible to applications. * Repair race condition between relation extension and VACUUM This could theoretically have caused loss of a page's worth of freshly-inserted data, although the scenario seems of very low probability. There are no known cases of it having caused more than an Assert failure. * Fix comparisons of TIME WITH TIME ZONE values The comparison code was wrong in the case where the --enable-integer-datetimes configuration switch had been used. NOTE: if you have an index on a TIME WITH TIME ZONE column, it will need to be "REINDEX"ed after installing this update, because the fix corrects the sort order of column values. * Fix EXTRACT(EPOCH) for TIME WITH TIME ZONE values * Fix mis-display of negative fractional seconds in INTERVAL values This error only occurred when the --enable-integer-datetimes configuration switch had been used. * Fix pg_dump to dump trigger names containing % correctly (Neil) * Still more 64-bit fixes for "contrib/intagg" * Prevent incorrect optimization of functions returning RECORD * Prevent crash on COALESCE(NULL,NULL) * Fix Borland makefile for libpq * Fix "contrib/btree_gist" for timetz type (Teodor) * Make "pg_ctl" check the PID found in "postmaster.pid" to see if it is still a live process * Fix "pg_dump"/"pg_restore" problems caused by addition of dump timestamps * Fix interaction between materializing holdable cursors and firing deferred triggers during transaction commit * Fix memory leak in SQL functions returning pass-by-reference data types pkgsrc specific change: Instead of setting CONFIGURE_ART let configure find the template to use iteself.
2005-05-11Rename MAKE_VARS to MAKEVARS so that it more closely resemblesjlam1-2/+2
"MAKEFLAGS". Both "MAKEVARS" and "MAKEFLAGS" affect the package-level make process, not the software's own make process.
2005-05-11I mixed up MAKE_FLAGS with MAKEFLAGS. The latter is what we actually usejlam1-3/+3
to pass make flags to bmake.
2005-05-10update to 4.3.28drochner2-7/+6
The Announcement: Berkeley DB 4.3.28 is a patch release to 4.3.27, everyone is encouraged to update to this version. The following have been addressed in this patch release: 1. All patches for the prior version have been applied as well as a few other fixes. 2. The product is available as a Windows x86 binary installer To see the change log for version 4.3.28, please visit: http://www.sleepycat.com/updat e/4.3.27/if.4.3.27.html
2005-05-09Don't assign to PKG_OPTIONS.<pkg> which has special meaning to thejlam1-7/+7
options framework. Rename PKG_OPTIONS.* to PKG_BUILD_OPTIONS.*.
2005-05-09Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file thatjlam1-3/+3
caches variable definitions that were computed by make. These variables are specified by listing them in MAKE_VARS, e.g., .if !defined(FOO) FOO!= very_time_consuming_command .endif MAKE_VARS+= FOO bsd.pkg.mk will include only the one generated during the most recent phase. A particular phase's makevars.mk file consists of variable definitions that are a superset of all of the ones produced in previous phases of the build. The caching is useful because bsd.pkg.mk invokes make recursively, which in the example above has the potential to run the very time-consuming command each time unless we cause FOO to be defined for the sub-make processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't consistently applied to every invocation of make, and also because MAKE_FLAGS can overflow the maximum length of a make variable very quickly if we add many values to it. One important and desirable property of variables cached via MAKE_VARS is that they only apply to the current package, and not to any dependencies whose builds may have been triggered by the current package. The makevars.mk files are generated by new targets fetch-vars, extract-vars, patch-vars, etc., and these targets are built during the corresponding real-* target to ensure that they are being invoked with PKG_PHASE set to the proper value. Also, remove the variables cache file that bsd.wrapper.mk was generating since the new makevars.mk files provide the same functionality at a higher level. Change all WRAPPER_VARS definitions that were used by the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-08PKG_OPTIONS.<pkg> isn't a good approximation to PKG_OPTIONS for thejlam1-3/+10
package because PKG_OPTION.<pkg> could contain negative options, which are never part of PKG_OPTIONS. Instead, use the show-var target to display the value. We cache it in WRAPPER_VARS and in MAKE_FLAGS to prevent reinvoking the show-var target recursively.
2005-05-03Remove duplicate share/examples/rc.d/slurpd entry.wiz1-2/+1
2005-05-02RCD_SCRIPTS_EXAMPLEDIR is no longer customizable.reed6-6/+14
And always is defined as share/examples/rc.d which was the default before. This rc.d scripts are not automatically added to PLISTs now also. So add to each corresponding PLIST as required. This was discussed on tech-pkg in late January and late April. Todo: remove the RCD_SCRIPTS_EXAMPLEDIR uses in MESSAGES and elsewhere and remove the RCD_SCRIPTS_EXAMPLEDIR itself.
2005-05-02Postgresql 7.3 didn't have plpgsql_scanner_lineno() so use yylineno.markd3-8/+8
Bump PKGREVISION of postgresql73-lib as plpgsql.so has changed (now loads successfully).
2005-04-29Added compatibility patches for ISO C90. Approved by wiz.rillig6-5/+106
2005-04-29Add and enable tcl-postgresql74gson1-1/+2