Here is a bug fix release update to MySQL 5.0.82.
Index: Makefile
===================================================================
RCS file: /cvs/anoncvs/cvs/ports/databases/mysql/Makefile,v
retrieving revision 1.152
diff -u -p -r1.152 Makefile
--- Makefile 3 May 2009 12:19:09 -0000 1.152
+++ Makefile 28 May 2009 23:08:05 -0000
@@ -4,7 +4,7 @@ COMMENT-main= multithreaded SQL database
COMMENT-server= multithreaded SQL database (server)
COMMENT-tests= multithreaded SQL database (regression test suite)
-VERSION= 5.0.81
+VERSION= 5.0.82
DISTNAME= mysql-${VERSION}
PKGNAME-main= mysql-client-${VERSION}
PKGNAME-server= mysql-server-${VERSION}
@@ -13,8 +13,8 @@ CATEGORIES= databases
V= MySQL-5.0
MASTER_SITES= ${MASTER_SITE_MYSQL:=Downloads/$V/}
-SHARED_LIBS += mysqlclient_r 19.0
-SHARED_LIBS += mysqlclient 19.0
+SHARED_LIBS= mysqlclient_r 19.0 \
+ mysqlclient 19.0
HOMEPAGE= http://www.mysql.com/
@@ -83,15 +83,13 @@ MULTI_PACKAGES= -main -server -tests
RUN_DEPENDS-server= :mysql-client->=5.0,<5.1:databases/mysql \
:p5-DBD-mysql-*:databases/p5-DBD-mysql
-
LIB_DEPENDS-server= mysqlclient:mysql-client->=5.0,<5.1:databases/mysql
WANTLIB-server= ${WANTLIB} wrap
-
WANTLIB-main= ${WANTLIB} ncurses readline
-
-PKG_ARCH-tests= *
WANTLIB-tests=
+
+PKG_ARCH-tests= *
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mysql
Index: distinfo
===================================================================
RCS file: /cvs/anoncvs/cvs/ports/databases/mysql/distinfo,v
retrieving revision 1.37
diff -u -p -r1.37 distinfo
--- distinfo 3 May 2009 12:19:09 -0000 1.37
+++ distinfo 28 May 2009 21:44:40 -0000
@@ -1,5 +1,5 @@
-MD5 (mysql-5.0.81.tar.gz) = LTXkmA8nnIORcqbv2w8LFQ==
-RMD160 (mysql-5.0.81.tar.gz) = wN/cgUT3IaSvXtOCAOcjOGgDNpU=
-SHA1 (mysql-5.0.81.tar.gz) = KqrvigjusLv/RspsGx+NQWrVwYo=
-SHA256 (mysql-5.0.81.tar.gz) = jYl49oBikqHbtCIMg5/VTnmhMY5Bv+GnYOJoySA7RTw=
-SIZE (mysql-5.0.81.tar.gz) = 34599007
+MD5 (mysql-5.0.82.tar.gz) = FzKgoGw88PD7bm+3euEUVg==
+RMD160 (mysql-5.0.82.tar.gz) = 9Gf8Tt5KxPvl0sb5AOP4blNM2p4=
+SHA1 (mysql-5.0.82.tar.gz) = Vx62miOv0YDt1BUjRticjIaudjY=
+SHA256 (mysql-5.0.82.tar.gz) = OARJReCrs7cQmGqiHbI6TL6JyVhHHr63whliydTBWBU=
+SIZE (mysql-5.0.82.tar.gz) = 35118926
Index: patches/patch-configure_in
===================================================================
RCS file: /cvs/anoncvs/cvs/ports/databases/mysql/patches/patch-configure_in,v
retrieving revision 1.25
diff -u -p -r1.25 patch-configure_in
--- patches/patch-configure_in 28 Dec 2008 19:45:17 -0000 1.25
+++ patches/patch-configure_in 28 May 2009 21:45:45 -0000
@@ -1,6 +1,6 @@
$OpenBSD: patch-configure_in,v 1.25 2008/12/28 19:45:17 sthen Exp $
---- configure.in.orig Thu Dec 18 12:19:33 2008
-+++ configure.in Mon Dec 22 02:30:13 2008
+--- configure.in.orig Thu May 7 17:11:51 2009
++++ configure.in Thu May 28 17:45:20 2009
@@ -514,44 +514,7 @@ AC_SUBST(ICHECK)
AC_PATH_PROG(PS, ps, ps)
AC_MSG_CHECKING("how to check if pid exists")
@@ -47,7 +47,7 @@ $OpenBSD: patch-configure_in,v 1.25 2008
AC_SUBST(FIND_PROC)
AC_MSG_RESULT("$FIND_PROC")
-@@ -913,7 +876,8 @@ AC_ARG_WITH(libwrap,
+@@ -937,7 +900,8 @@ AC_ARG_WITH(libwrap,
AC_CHECK_HEADER(tcpd.h,
LIBS="-lwrap $LIBS"
AC_MSG_CHECKING(for TCP wrappers library -lwrap)
@@ -57,7 +57,7 @@ $OpenBSD: patch-configure_in,v 1.25 2008
int allow_severity = 0;
int deny_severity = 0;
-@@ -1681,7 +1645,7 @@ then
+@@ -1705,7 +1669,7 @@ then
AC_CHECK_LIB(c_r,strtok_r)
case "$with_osf32_threads---$target_os" in
# Don't keep -lc_r in LIBS; -pthread handles it magically
@@ -66,7 +66,7 @@ $OpenBSD: patch-configure_in,v 1.25 2008
esac
AC_CHECK_FUNCS(strtok_r pthread_init)
-@@ -1729,29 +1693,6 @@ case $SYSTEM_TYPE in
+@@ -1753,29 +1717,6 @@ case $SYSTEM_TYPE in
AC_SYS_RESTARTABLE_SYSCALLS
;;
esac
Index: patches/patch-innobase_Makefile_in
===================================================================
RCS file:
/cvs/anoncvs/cvs/ports/databases/mysql/patches/patch-innobase_Makefile_in,v
retrieving revision 1.11
diff -u -p -r1.11 patch-innobase_Makefile_in
--- patches/patch-innobase_Makefile_in 17 Feb 2009 10:47:00 -0000 1.11
+++ patches/patch-innobase_Makefile_in 28 May 2009 21:45:45 -0000
@@ -1,7 +1,7 @@
$OpenBSD: patch-innobase_Makefile_in,v 1.11 2009/02/17 10:47:00 sthen Exp $
---- innobase/Makefile.in.orig Thu Jan 29 16:56:28 2009
-+++ innobase/Makefile.in Mon Feb 16 14:22:22 2009
-@@ -558,9 +558,9 @@ distcleancheck: distclean
+--- innobase/Makefile.in.orig Thu May 7 17:21:13 2009
++++ innobase/Makefile.in Thu May 28 17:45:20 2009
+@@ -561,9 +561,9 @@ distcleancheck: distclean
check-am: all-am
check: check-recursive
all-am: Makefile $(HEADERS) ib_config.h
Index: patches/patch-mysql-test_Makefile_in
===================================================================
RCS file:
/cvs/anoncvs/cvs/ports/databases/mysql/patches/patch-mysql-test_Makefile_in,v
retrieving revision 1.19
diff -u -p -r1.19 patch-mysql-test_Makefile_in
--- patches/patch-mysql-test_Makefile_in 17 Feb 2009 10:47:00 -0000
1.19
+++ patches/patch-mysql-test_Makefile_in 28 May 2009 21:45:45 -0000
@@ -1,7 +1,7 @@
$OpenBSD: patch-mysql-test_Makefile_in,v 1.19 2009/02/17 10:47:00 sthen Exp $
---- mysql-test/Makefile.in.orig Thu Jan 29 16:54:16 2009
-+++ mysql-test/Makefile.in Mon Feb 16 14:22:22 2009
-@@ -361,7 +361,7 @@ zlib_dir = @zlib_dir@
+--- mysql-test/Makefile.in.orig Thu May 7 17:19:52 2009
++++ mysql-test/Makefile.in Thu May 28 17:45:20 2009
+@@ -367,7 +367,7 @@ zlib_dir = @zlib_dir@
@have_ndbcluster_db_t...@dist_subdirs = ndb
@have_ndbcluster_db_fa...@use_ndbcluster = \"\"
@have_ndbcluster_db_t...@use_ndbcluster = \"--ndbcluster\"
Index: patches/patch-scripts_Makefile_in
===================================================================
RCS file:
/cvs/anoncvs/cvs/ports/databases/mysql/patches/patch-scripts_Makefile_in,v
retrieving revision 1.12
diff -u -p -r1.12 patch-scripts_Makefile_in
--- patches/patch-scripts_Makefile_in 17 Feb 2009 10:47:00 -0000 1.12
+++ patches/patch-scripts_Makefile_in 28 May 2009 21:45:45 -0000
@@ -1,7 +1,7 @@
$OpenBSD: patch-scripts_Makefile_in,v 1.12 2009/02/17 10:47:00 sthen Exp $
---- scripts/Makefile.in.orig Thu Jan 29 16:54:52 2009
-+++ scripts/Makefile.in Mon Feb 16 14:22:22 2009
-@@ -787,6 +787,7 @@ mysql_fix_privilege_tables_sql.c: comp_sql.c mysql_fix
+--- scripts/Makefile.in.orig Thu May 7 17:20:10 2009
++++ scripts/Makefile.in Thu May 28 17:45:20 2009
+@@ -793,6 +793,7 @@ mysql_fix_privilege_tables_sql.c: comp_sql.c mysql_fix
-e 's!@''datadir''@!$(datadir)!g' \
-e 's!@''localstatedir''@!$(localstatedir)!g' \
-e 's!@''libexecdir''@!$(libexecdir)!g' \
Index: patches/patch-sql_mysqld_cc
===================================================================
RCS file: /cvs/anoncvs/cvs/ports/databases/mysql/patches/patch-sql_mysqld_cc,v
retrieving revision 1.14
diff -u -p -r1.14 patch-sql_mysqld_cc
--- patches/patch-sql_mysqld_cc 3 May 2009 12:19:09 -0000 1.14
+++ patches/patch-sql_mysqld_cc 28 May 2009 21:45:47 -0000
@@ -1,7 +1,7 @@
$OpenBSD: patch-sql_mysqld_cc,v 1.14 2009/05/03 12:19:09 sthen Exp $
---- sql/mysqld.cc.orig Thu Apr 16 07:51:01 2009
-+++ sql/mysqld.cc Sat May 2 15:57:10 2009
-@@ -3748,7 +3748,7 @@ int main(int argc, char **argv)
+--- sql/mysqld.cc.orig Thu May 7 17:15:02 2009
++++ sql/mysqld.cc Thu May 28 17:45:10 2009
+@@ -3750,7 +3750,7 @@ int main(int argc, char **argv)
init_ssl();
#ifdef HAVE_LIBWRAP
Index: pkg/PLIST-tests
===================================================================
RCS file: /cvs/anoncvs/cvs/ports/databases/mysql/pkg/PLIST-tests,v
retrieving revision 1.29
diff -u -p -r1.29 PLIST-tests
--- pkg/PLIST-tests 3 May 2009 12:19:09 -0000 1.29
+++ pkg/PLIST-tests 28 May 2009 22:12:06 -0000
@@ -19,6 +19,7 @@ share/mysql-test/include/ctype_like_esca
share/mysql-test/include/ctype_like_range_f1f2.inc
share/mysql-test/include/ctype_regex.inc
share/mysql-test/include/delete_anonymous_users.inc
+share/mysql-test/include/diff_master_slave.inc
share/mysql-test/include/endspace.inc
share/mysql-test/include/federated.inc
share/mysql-test/include/federated_cleanup.inc
@@ -31,6 +32,7 @@ share/mysql-test/include/have_big5.inc
share/mysql-test/include/have_blackhole.inc
share/mysql-test/include/have_bug25714.inc
share/mysql-test/include/have_case_sensitive_file_system.inc
+share/mysql-test/include/have_community_features.inc
share/mysql-test/include/have_compress.inc
share/mysql-test/include/have_cp1250_ch.inc
share/mysql-test/include/have_cp932.inc
@@ -53,6 +55,7 @@ share/mysql-test/include/have_lowercase1
share/mysql-test/include/have_multi_ndb.inc
share/mysql-test/include/have_ndb.inc
share/mysql-test/include/have_outfile.inc
+share/mysql-test/include/have_profiling.inc
share/mysql-test/include/have_query_cache.inc
share/mysql-test/include/have_sjis.inc
share/mysql-test/include/have_ssl.inc
@@ -62,6 +65,8 @@ share/mysql-test/include/have_udf.inc
share/mysql-test/include/have_ujis.inc
share/mysql-test/include/im_check_env.inc
share/mysql-test/include/innodb_rollback_on_timeout.inc
+share/mysql-test/include/kill_query.inc
+share/mysql-test/include/kill_query_and_diff_master_slave.inc
share/mysql-test/include/loaddata_autocom.inc
share/mysql-test/include/master-slave-end.inc
share/mysql-test/include/master-slave.inc
@@ -297,6 +302,7 @@ share/mysql-test/r/have_bdb.require
share/mysql-test/r/have_big5.require
share/mysql-test/r/have_blackhole.require
share/mysql-test/r/have_bug25714.require
+share/mysql-test/r/have_community_features.require
share/mysql-test/r/have_compress.require
share/mysql-test/r/have_cp1250_ch.require
share/mysql-test/r/have_cp932.require
@@ -321,6 +327,7 @@ share/mysql-test/r/have_ndb.require
share/mysql-test/r/have_ndb_status_ok.require
share/mysql-test/r/have_outfile.require
share/mysql-test/r/have_perror.require
+share/mysql-test/r/have_profiling.require
share/mysql-test/r/have_query_cache.require
share/mysql-test/r/have_raid.require
share/mysql-test/r/have_sjis.require
@@ -556,6 +563,7 @@ share/mysql-test/r/rpl_auto_increment.re
share/mysql-test/r/rpl_auto_increment_11932.result
share/mysql-test/r/rpl_auto_increment_bug33029.result
share/mysql-test/r/rpl_bug33931.result
+share/mysql-test/r/rpl_bug38694.result
share/mysql-test/r/rpl_change_master.result
share/mysql-test/r/rpl_charset.result
share/mysql-test/r/rpl_charset_sjis.result
@@ -568,6 +576,7 @@ share/mysql-test/r/rpl_delete_all.result
share/mysql-test/r/rpl_do_grant.result
share/mysql-test/r/rpl_drop.result
share/mysql-test/r/rpl_drop_db.result
+share/mysql-test/r/rpl_drop_if_exists.result
share/mysql-test/r/rpl_drop_temp.result
share/mysql-test/r/rpl_drop_view.result
share/mysql-test/r/rpl_dual_pos_advance.result
@@ -589,6 +598,7 @@ share/mysql-test/r/rpl_insert_delayed.re
share/mysql-test/r/rpl_insert_id.result
share/mysql-test/r/rpl_insert_ignore.result
share/mysql-test/r/rpl_insert_select.result
+share/mysql-test/r/rpl_killed_ddl.result
share/mysql-test/r/rpl_known_bugs_detection.result
share/mysql-test/r/rpl_loaddata.result
share/mysql-test/r/rpl_loaddata_charset.result
@@ -611,6 +621,7 @@ share/mysql-test/r/rpl_multi_update2.res
share/mysql-test/r/rpl_multi_update3.result
share/mysql-test/r/rpl_multi_update4.result
share/mysql-test/r/rpl_mystery22.result
+share/mysql-test/r/rpl_name_const.result
share/mysql-test/r/rpl_ndb_innodb_trans.result
share/mysql-test/r/rpl_openssl.result
share/mysql-test/r/rpl_optimize.result
@@ -900,7 +911,7 @@ share/mysql-test/suite/funcs_1/r/is_cml_
share/mysql-test/suite/funcs_1/r/is_cml_memory.result
share/mysql-test/suite/funcs_1/r/is_cml_myisam.result
share/mysql-test/suite/funcs_1/r/is_cml_ndb.result
-share/mysql-test/suite/funcs_1/r/is_collation_character_set_applicability.result
+share/mysql-test/suite/funcs_1/r/is_coll_char_set_appl.result
share/mysql-test/suite/funcs_1/r/is_collations.result
share/mysql-test/suite/funcs_1/r/is_column_privileges.result
share/mysql-test/suite/funcs_1/r/is_column_privileges_is_mysql_test.result
@@ -1027,7 +1038,7 @@ share/mysql-test/suite/funcs_1/t/is_cml_
share/mysql-test/suite/funcs_1/t/is_cml_memory.test
share/mysql-test/suite/funcs_1/t/is_cml_myisam.test
share/mysql-test/suite/funcs_1/t/is_cml_ndb.test
-share/mysql-test/suite/funcs_1/t/is_collation_character_set_applicability.test
+share/mysql-test/suite/funcs_1/t/is_coll_char_set_appl.test
share/mysql-test/suite/funcs_1/t/is_collations.test
share/mysql-test/suite/funcs_1/t/is_column_privileges.test
share/mysql-test/suite/funcs_1/t/is_column_privileges_is_mysql_test.test
@@ -1849,6 +1860,8 @@ share/mysql-test/t/rpl_auto_increment_11
share/mysql-test/t/rpl_auto_increment_bug33029.test
share/mysql-test/t/rpl_bug33931-slave.opt
share/mysql-test/t/rpl_bug33931.test
+share/mysql-test/t/rpl_bug38694-slave.opt
+share/mysql-test/t/rpl_bug38694.test
share/mysql-test/t/rpl_change_master.test
share/mysql-test/t/rpl_charset.test
share/mysql-test/t/rpl_charset_sjis.test
@@ -1864,6 +1877,7 @@ share/mysql-test/t/rpl_delete_all.test
share/mysql-test/t/rpl_do_grant.test
share/mysql-test/t/rpl_drop.test
share/mysql-test/t/rpl_drop_db.test
+share/mysql-test/t/rpl_drop_if_exists.test
share/mysql-test/t/rpl_drop_temp-slave.opt
share/mysql-test/t/rpl_drop_temp.test
share/mysql-test/t/rpl_drop_view.test
@@ -1903,6 +1917,8 @@ share/mysql-test/t/rpl_insert_id.test
share/mysql-test/t/rpl_insert_ignore-slave.opt
share/mysql-test/t/rpl_insert_ignore.test
share/mysql-test/t/rpl_insert_select.test
+share/mysql-test/t/rpl_killed_ddl-master.opt
+share/mysql-test/t/rpl_killed_ddl.test
share/mysql-test/t/rpl_known_bugs_detection-master.opt
share/mysql-test/t/rpl_known_bugs_detection.test
share/mysql-test/t/rpl_loaddata.test
@@ -1937,6 +1953,7 @@ share/mysql-test/t/rpl_multi_update3.tes
share/mysql-test/t/rpl_multi_update4-slave.opt
share/mysql-test/t/rpl_multi_update4.test
share/mysql-test/t/rpl_mystery22.test
+share/mysql-test/t/rpl_name_const.test
share/mysql-test/t/rpl_ndb_innodb_trans-slave.opt
share/mysql-test/t/rpl_ndb_innodb_trans.test
share/mysql-test/t/rpl_openssl.test
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.