summaryrefslogtreecommitdiff
path: root/databases/mysql4-server/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2008-04-26Add a clean pkg_add implementation on top of libarchive and libfetch.joerg1-77/+0
Known regressions: - "pkg_add -" (aka reading from stdin) is currently not supported - "pkg_add -s" is not supported either - no progress reports for the downloads - binary packages with hardlinks created by pkg_create before pkg_install-20080422 will not extract correctly (libarchive issue) - no adhoc check for potential conflicts between dependencies and already installed packages Features: - Twice as fast for the typical case of /var/tmp and /usr/pkg on different filesystems - Standalone - implicit conflict detection before actual installation.
2008-03-26pkglint cleanup.wiz1-2/+2
2008-03-26Re-add mysql4 packages.wiz1-0/+77
Andreas Hallmann graciously agreed to maintain them.
2008-03-25Remove mysql4 (4.1 branch) packages.wiz1-77/+0
They have security problems and are not maintained. Removal was announced on pkgsrc-users on March 13.
2008-03-06+ Honor PKGINFODIR in mysql4-client.jlam1-10/+23
+ Remove explicit naming of "-lncurses -ltermcap" as the way to get the termcap libraries. Including termcap.buildlink3.mk (indirectly through including readline/buildlink3.mk) will do the right thing. + Remove readline dependency from Makefile.common and add it into mysql4-client/Makefile. Only the -client package needs and uses readline. The -server package only "needs" it to placate the configure script, but none of its installed binaries are linked against it. + Add full DESTDIR support to the -client and -server packages. Bump the PKGREVISION of mysql4-client to 3. The PKGREVISION of mysql4-server remains unchanged since there are no user-visible changes to the binary package.
2008-01-18Per the process outlined in revbump(1), perform a recursive revbumptnn1-2/+2
on packages that are affected by the switch from the openssl 0.9.7 branch to the 0.9.8 branch. ok jlam@
2007-06-14Fix for CVE-2007-2691adrianp1-1/+2
2006-10-22This package contains a Perl script, but it is not as important torillig1-1/+6
justify a dependency on Perl. To make the check-interpreter test pass, I've removed the x-bit from the file.
2006-08-31Update mysql4-client and mysql4-server to version 4.1.21.seb1-2/+3
Most notably this version includes fixes for: http://secunia.com/advisories/21259/ http://secunia.com/advisories/21506/ http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-3469 * Packages changes: the script mysqldumpslow had been moved from the mysql4-client to the mysql4-server. * Changes since last packaged version (4.1.20) (see http://dev.mysql.com/doc/refman/4.1/en/news-4-1-21.html for more details): This is a bugfix release for the recent production release family. Functionality added or changed: - For spatial data types, the server formerly returned these as VARSTRING values with a binary collation. Now the server returns spatial values as BLOB values. (Bug#10166) - Added the --set-charset option to mysqlbinlog to allow the character set to be specified for processing binary log files. (Bug#18351) - For a table with an AUTO_INCREMENT column, SHOW CREATE TABLE now shows the next AUTO_INCREMENT value to be generated. (Bug#19025) - A warning now is issued if the client attempts to set the SQL_LOG_OFF variable without the SUPER privilege. (Bug#16180) - The mysqldumpslow script has been moved from client RPM packages to server RPM packages. This corrects a problem where mysqldumpslow could not be used with a client-only RPM install, because it depends on my_print_defaults which is in the server RPM. (Bug#20216) Bugs fixed: - Security fix: On Linux, and possibly other platforms using case-sensitive filesystems, it was possible for a user granted rights on a database to create or access a database whose name differed only from that of the first by the case of one or more letters. (Bug#17647) - Security fix: If a user has access to MyISAM table t, that user can create a MERGE table m that accesses t. However, if the user's privileges on t are subsequently revoked, the user can continue to access t by doing so through m. If this behavior is undesirable, you can start the server with the new --skip-merge option to disable the MERGE storage engine. (Bug#15195) - Security fix: Invalid arguments to DATE_FORMAT() caused a server crash. (CVE-2006-3469, Bug#20729) Thanks to Jean-David Maillefer for discovering and reporting this problem to the Debian project and to Christian Hammers from the Debian Team for notifying us of it. ... (see http://dev.mysql.com/doc/refman/4.1/en/news-4-1-21.html for the complete bug fix list)
2006-05-26Update mysql4-client and mysql4-server to version 4.1.19.seb1-5/+1
Lots of changes since last packaged version (4.1.15), please see: http://dev.mysql.com/doc/refman/4.1/en/news-4-1-19.html http://dev.mysql.com/doc/refman/4.1/en/news-4-1-18.html http://dev.mysql.com/doc/refman/4.1/en/news-4-1-17.html http://dev.mysql.com/doc/refman/4.1/en/news-4-1-16.html Most notably this version includes a fix for http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-1517 While here install more man pages and merge mysql4-client/patches/patch-ad into mysql4-client/patches/patch-af.
2006-04-23Modify packages that set PKG_USERS and PKG_GROUPS to follow the newjlam1-2/+7
syntax as specified in pkgsrc/mk/install/bsd.pkginstall.mk:1.47.
2006-03-14Modify the pkginstall framework so that it manages all aspects ofjlam1-3/+1
INSTALL/DEINSTALL script creation within pkgsrc. If an INSTALL or DEINSTALL script is found in the package directory, it is automatically used as a template for the pkginstall-generated scripts. If instead, they should be used simply as the full scripts, then the package Makefile should set INSTALL_SRC or DEINSTALL_SRC explicitly, e.g.: INSTALL_SRC= ${PKGDIR}/INSTALL DEINSTALL_SRC= # emtpy As part of the restructuring of the pkginstall framework internals, we now *always* generate temporary INSTALL or DEINSTALL scripts. By comparing these temporary scripts with minimal INSTALL/DEINSTALL scripts formed from only the base templates, we determine whether or not the INSTALL/DEINSTALL scripts are actually needed by the package (see the generate-install-scripts target in bsd.pkginstall.mk). In addition, more variables in the framework have been made private. The *_EXTRA_TMPL variables have been renamed to *_TEMPLATE, which are more sensible names given the very few exported variables in this framework. The only public variables relating to the templates are: INSTALL_SRC INSTALL_TEMPLATE DEINSTALL_SRC DEINSTALL_TEMPLATE HEADER_TEMPLATE The packages in pkgsrc have been modified to reflect the changes in the pkginstall framework.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-5/+5
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-10-29Update mysql4* to 4.1.5.xtraeme1-2/+2
Please see http://dev.mysql.com/doc/refman/4.1/en/news-4-1-15.html for more information about bugfixes/changes.
2005-10-03Apply patch from David A. Holland in PR pkg/31435 to honor rc.confxtraeme1-2/+2
values for mysql_user, mysql_group and mysql_datadir options. Bump PKGREVISION.
2005-08-23The real user name in PKG_USERS does not need to be escaped with doublerillig1-2/+2
backslashes anymore. A single backslash is enough. Changed the definition in all affected packages. For those that are not caught, an additional check is placed into bsd.pkginstall.mk.
2005-07-29Update to 4.1.13.xtraeme1-2/+2
Lots of changes, see http://dev.mysql.com/doc/mysql/en/news-4-1-13.html for a detailed description.
2005-06-19Add missing rc.d script entry in PLIST.seb1-2/+2
Bump PKGREVISION to 1.
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-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-01-10Update mysql4-* to 4.1.8a.xtraeme1-2/+2
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-01Bump PKGREVISION because old binary packages may contain a wrong pathminskim1-2/+2
to the perl executable.
2004-12-28The default location of the pkgsrc-installed rc.d scripts is nowreed1-2/+2
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-11-09Install the script mysql_secure_installation, missed in previous.xtraeme1-1/+3
2004-11-08Fix breakage added in last commits in mysql4-* packages:xtraeme1-9/+2
* Make mysql4-client build on NetBSD 1.[56]* * Don't install mysqld and friends in mysql4-client (eww!) * Remove an unneeded patch. * Remove duplicated files in mysql4-client's PLIST. Also, use assembler functions when MACHINE_ARCH == i386. This closes PR pkg/27154, pkg/27720, pkg/27744 and pkg/28035. BTW, I tested them on NetBSD 1.6.2, 2.0_RC4 and -current. Bump PKGREVISION for both packages.
2004-10-22Update databases/mysql4* packages to 4.0.21 (latest stable productionxtraeme1-2/+1
release) and take maintainership. Functionality added or changed: # Print version_comment (from ./configure --comment during compilation) when starting the server. E.g.: Version: '4.0.21-debug' socket: '/tmp/mysql.sock' port: 0 Official MySQL Binary # Made the MySQL server not react to signals SIGHUP and SIGQUIT on Mac OS X 10.3. This is needed because under this OS, the MySQL server receives lots of these signals (reported as Bug #2030). # On Windows, the mysqld-nt and mysqld-max-nt servers now write error messages to the Windows event log in addition to the MySQL error log. Tons of bugfixes were fixed, more information: http://dev.mysql.com/doc/mysql/en/News-4.0.21.html
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-07-21Defer the creation of the initial MySQL database directories until wejlam1-4/+5
actually try to run MySQL server. Beef up the rc.d script to work on systems that don't use NetBSD's rc.d script system, and to support an "initdb" command to initialize the MySQL database for first-time use.
2004-07-20Reorganize the line order to bring related things together and to morejlam1-25/+24
closely match the template package Makefile. Also use BUILD_DIRS instead of invoking make explicitly in a post-build target.
2004-06-20Update databases/mysql4-* to 4.0.20.xtraeme1-2/+1
Lots of bugfixes, please review the Changelog file.
2004-05-14distinguish between mysql 3 and 4 in COMMENT.grant1-2/+2
2004-04-22Bl3ify.seb1-5/+5
Provide a buildlink3.mk file for mysql4-client package. While here remove obsolete USE_NEW_TEXINFO.
2004-03-26PKGREVISION bump after openssl-security-fix-update to 0.9.6m.wiz1-2/+2
Buildlink files: RECOMMENDED version changed to current version.
2004-03-10Enable RAID tables to allow >4GB (>2GB) table data on non-big-filetv1-1/+3
filesystems. Bump PKGREVISION.
2004-03-07Updated mysql-server to 4.0.18martti1-2/+3
* Bug fixes
2003-12-20MySQL is a SQL (Structured Query Language) database server. SQL is themartti1-0/+61
most popular database language in the world. MySQL is a client-server implementation that consists of a server daemon `mysqld' and many different client programs/libraries. The main goals of MySQL are speed and robustness. The base upon which MySQL is built is a set of routines that have been used in a highly demanding production environment for many years. While MySQL is still in development it already offers a rich and highly useful function set. The official way to pronounce 'MySQL' is 'My Ess Que Ell' (Not MY-SEQUEL). This package contains the MySQL server programs and libraries.