Path to this page:
./
databases/mysql5-server,
MySQL 5, a free SQL database (server)
Branch: pkgsrc-2008Q2,
Version: 5.0.67,
Package name: mysql-server-5.0.67,
Maintainer: pkgsrc-usersMySQL is a SQL (Structured Query Language) database server. SQL is the
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.
DEINSTALL [+/-]# $NetBSD: DEINSTALL,v 1.1.1.1 2005/10/31 09:22:26 xtraeme Exp $
case ${STAGE} in
POST-DEINSTALL)
if [ -d @MYSQL_DATADIR@ ]; then
${CAT} << EOF
===========================================================================
If you won't be using ${PKGNAME} any longer, and you don't
wish to preserve your existing databases, then you may remove the
following directory:
@MYSQL_DATADIR@
===========================================================================
EOF
fi
esac
Required to run:[
databases/mysql5-client] [
lang/perl5]
Required to build:[
archivers/bsdtar] [
devel/autoconf] [
devel/gmake] [
devel/libtool-base]
Package options: ssl
Master sites: (Expand)
SHA1: 168090a4698a3a5efa2f2c9380a4352d4433d377
RMD160: 05d38a5f8d91cb4dac1ee446af96b28163bd3722
Filesize: 27705.869 KB
Version history: (Expand)
- (2008-09-23) Updated to version: mysql-server-5.0.67
- (2008-07-14) Package added to pkgsrc.se, version mysql-server-5.0.51bnb1 (created)
CVS history: (Expand)
2008-09-23 13:15:53 by Matthias Scheler | Files touched by this commit (23) | |
Log message:
Pullup ticket #2532 - requested by taca
mysql5-client: security update
mysql5-server: security update
Revisions pulled up:
- databases/mysql5-client/Makefile 1.19
- databases/mysql5-client/Makefile.common 1.33
- databases/mysql5-client/buildlink3.mk 1.12
- databases/mysql5-client/distinfo 1.24
- databases/mysql5-client/patches/patch-ab 1.3
- databases/mysql5-client/patches/patch-ac 1.7
- databases/mysql5-client/patches/patch-af 1.7
- databases/mysql5-client/patches/patch-ag 1.4
- databases/mysql5-client/patches/patch-aj 1.3
- databases/mysql5-client/patches/patch-ak delete
- databases/mysql5-client/patches/patch-al 1.3
- databases/mysql5-server/Makefile 1.25
- databases/mysql5-server/PLIST 1.13
- databases/mysql5-server/distinfo 1.21
- databases/mysql5-server/patches/patch-ad 1.4
- databases/mysql5-server/patches/patch-ag 1.7
- databases/mysql5-server/patches/patch-ai 1.3
- databases/mysql5-server/patches/patch-an 1.5
- databases/mysql5-server/patches/patch-ca 1.2
- databases/mysql5-server/patches/patch-cb 1.2
- databases/mysql5-server/patches/patch-cc 1.2
- databases/mysql5-server/patches/patch-da delete
- databases/mysql5-server/patches/patch-db delete
---
Module Name: pkgsrc
Committed By: taca
Date: Thu Sep 18 11:50:44 UTC 2008
Modified Files:
pkgsrc/databases/mysql5-client: Makefile.common buildlink3.mk distinfo
pkgsrc/databases/mysql5-client/patches: patch-ab patch-af patch-ag
patch-aj patch-al
Added Files:
pkgsrc/databases/mysql5-client/patches: patch-ac
Removed Files:
pkgsrc/databases/mysql5-client/patches: patch-ak
Log message:
Update mysql5-client pacakge to 5.0.67.
For complete changes, please refer
http://dev.mysql.com/doc/refman/5.0/en/releasenotes-cs-5-0-67.html.
Here is a part of it.
Functionality added or changed:
Security Enhancement:
To enable stricter control over the location from which user-defined
functions can be loaded, the plugin_dir system variable has been
backported from MySQL 5.1. If the value is non-empty, user-defined
function object files can be loaded only from the directory named by this
variable. If the value is empty, the behavior that is used before 5.0.67
applies: The UDF object files must be located in a directory that is
searched by your system's dynamic linker. (Bug#37428)
Important Change: Incompatible Change:
The FEDERATED storage engine is now disabled by default in the .cnf files
shipped with MySQL distributions (my-huge.cnf, my-medium.cnf, and so
forth). This affects server behavior only if you install one of these
files. (Bug#37069)
Cluster API: Important Change:
Because NDB_LE_MemoryUsage.page_size_kb shows memory page sizes in bytes
rather than kilobytes, it has been renamed to page_size_bytes. The name
page_size_kb is now deprecated and thus subject to removal in a future
release, although it currently remains supported for reasons of backward
compatibility. See The Ndb_logevent_type Type, for more information about
NDB_LE_MemoryUsage. (Bug#30271)
Important Change:
Some changes were made to CHECK TABLE ... FOR UPGRADE and REPAIR TABLE
with respect to detection and handling of tables with incompatible .frm
files (files created with a different version of the MySQL server). These
changes also affect mysqlcheck because that program uses CHECK TABLE and
REPAIR table, and thus also mysql_upgrade because that program invokes
mysqlcheck.
---
Module Name: pkgsrc
Committed By: taca
Date: Thu Sep 18 11:51:37 UTC 2008
Modified Files:
pkgsrc/databases/mysql5-server: Makefile PLIST distinfo
pkgsrc/databases/mysql5-server/patches: patch-ad patch-ag patch-ai
patch-an patch-ca patch-cb patch-cc
Removed Files:
pkgsrc/databases/mysql5-server/patches: patch-da patch-db
Log message:
Update mysql5-server pacakge to 5.0.67.
This is security fix.
For complete changes, please refer
http://dev.mysql.com/doc/refman/5.0/en/releasenotes-cs-5-0-67.html.
Here is a part of it.
Functionality added or changed:
Security Enhancement:
To enable stricter control over the location from which user-defined
functions can be loaded, the plugin_dir system variable has been
backported from MySQL 5.1. If the value is non-empty, user-defined
function object files can be loaded only from the directory named by this
variable. If the value is empty, the behavior that is used before 5.0.67
applies: The UDF object files must be located in a directory that is
searched by your system's dynamic linker. (Bug#37428)
Important Change: Incompatible Change:
The FEDERATED storage engine is now disabled by default in the .cnf files
shipped with MySQL distributions (my-huge.cnf, my-medium.cnf, and so
forth). This affects server behavior only if you install one of these
files. (Bug#37069)
Cluster API: Important Change:
Because NDB_LE_MemoryUsage.page_size_kb shows memory page sizes in bytes
rather than kilobytes, it has been renamed to page_size_bytes. The name
page_size_kb is now deprecated and thus subject to removal in a future
release, although it currently remains supported for reasons of backward
compatibility. See The Ndb_logevent_type Type, for more information about
NDB_LE_MemoryUsage. (Bug#30271)
Important Change:
Some changes were made to CHECK TABLE ... FOR UPGRADE and REPAIR TABLE
with respect to detection and handling of tables with incompatible .frm
files (files created with a different version of the MySQL server). These
changes also affect mysqlcheck because that program uses CHECK TABLE and
REPAIR table, and thus also mysql_upgrade because that program invokes
mysqlcheck.
---
Module Name: pkgsrc
Committed By: tron
Date: Thu Sep 18 12:49:40 UTC 2008
Modified Files:
pkgsrc/databases/mysql5-client: Makefile
Log message:
Fix path to Perl interpreter in the installed scripts. Bump package
revision because of this fix.
|