summaryrefslogtreecommitdiff
path: root/databases/mysql55-client
diff options
context:
space:
mode:
authoradam <adam>2015-07-30 14:36:34 +0000
committeradam <adam>2015-07-30 14:36:34 +0000
commit58b4088da9764f6045f1b6a24e02cb7b3b1c989e (patch)
tree03a791e02131aac4b18521b3a83d70a53e911ef0 /databases/mysql55-client
parent6337559b8108601fbff288376ceba1ade8354d9f (diff)
downloadpkgsrc-58b4088da9764f6045f1b6a24e02cb7b3b1c989e.tar.gz
Changes 5.5.45:
* Security Fix: Due to the LogJam issue (https://weakdh.org/), OpenSSL has changed the Diffie-Hellman key length parameters for openssl-1.0.1n and up. OpenSSL has provided a detailed explanation at http://openssl.org/news/secadv_20150611.txt. To adopt this change in MySQL, the key length used in vio/viosslfactories.c for creating Diffie-Hellman keys has been increased from 512 to 2,048 bits. * InnoDB: On Unix-like platforms, os_file_create_simple_no_error_handling_func and os_file_create_func opened files in different modes when innodb_flush_method was set to O_DIRECT. * InnoDB: An assertion was raised when InnoDB attempted to dereference a NULL foreign key object. * InnoDB: An index record was not found on rollback due to inconsistencies in the purge_node_t structure. * The Spencer regex library used for the REGEXP operator could be subject to heap overflow in some circumstances. * A buffer-overflow error could occur for mysqlslap during option parsing. * GROUP BY or ORDER BY on a CHAR(0) NOT NULL column could lead to a server exit. * mysql-systemd-start failed if datadir was set in /etc/my.cnf. * On OS X 10.10 (Yosemite), mysqld failed to start automatically. The startup item has been replaced with a launchd job, which enables the preference pane checkbox for automatic startup to work again.
Diffstat (limited to 'databases/mysql55-client')
-rw-r--r--databases/mysql55-client/Makefile3
-rw-r--r--databases/mysql55-client/Makefile.common4
-rw-r--r--databases/mysql55-client/distinfo14
-rw-r--r--databases/mysql55-client/options.mk6
4 files changed, 13 insertions, 14 deletions
diff --git a/databases/mysql55-client/Makefile b/databases/mysql55-client/Makefile
index f8d530dc366..cb2d5074c33 100644
--- a/databases/mysql55-client/Makefile
+++ b/databases/mysql55-client/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2015/06/12 10:48:36 wiz Exp $
+# $NetBSD: Makefile,v 1.22 2015/07/30 14:36:34 adam Exp $
PKGNAME= ${DISTNAME:S/-/-client-/}
-PKGREVISION= 1
COMMENT= MySQL 5, a free SQL database (client)
CONFLICTS= mysql3-client-[0-9]*
diff --git a/databases/mysql55-client/Makefile.common b/databases/mysql55-client/Makefile.common
index f855a50bfb4..fcc982fec19 100644
--- a/databases/mysql55-client/Makefile.common
+++ b/databases/mysql55-client/Makefile.common
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.common,v 1.45 2015/06/22 15:16:24 jperkin Exp $
+# $NetBSD: Makefile.common,v 1.46 2015/07/30 14:36:34 adam Exp $
#
# used by databases/mysql55-client/Makefile
# used by databases/mysql55-server/Makefile
-DISTNAME= mysql-5.5.44
+DISTNAME= mysql-5.5.45
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_MYSQL:=MySQL-5.5/}
diff --git a/databases/mysql55-client/distinfo b/databases/mysql55-client/distinfo
index 8a8b09e604c..c4922bb482e 100644
--- a/databases/mysql55-client/distinfo
+++ b/databases/mysql55-client/distinfo
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.43 2015/06/01 07:40:36 adam Exp $
+$NetBSD: distinfo,v 1.44 2015/07/30 14:36:34 adam Exp $
-SHA1 (mysql-5.5.44.tar.gz) = 1882c53d078ffb2e50339a8d9f5ba44c3eb155ea
-RMD160 (mysql-5.5.44.tar.gz) = 72faecbd2cae73ac109253e4a512086e74058128
-Size (mysql-5.5.44.tar.gz) = 21789766 bytes
-SHA1 (sphinx-2.2.7-release.tar.gz) = dedae28c0deafda90109745230dacbe0dc441e1a
-RMD160 (sphinx-2.2.7-release.tar.gz) = d9f0150f6779b43457e30c77be50aa9bc658b03a
-Size (sphinx-2.2.7-release.tar.gz) = 2969037 bytes
+SHA1 (mysql-5.5.45.tar.gz) = 225f7979d37c5877696c89195acc8e70df03d702
+RMD160 (mysql-5.5.45.tar.gz) = dbdf56a703c10722bae01e2707a9fcccf769edcd
+Size (mysql-5.5.45.tar.gz) = 21832364 bytes
+SHA1 (sphinx-2.2.9-release.tar.gz) = 7ddde51bb1d428406acb278c615a2c2fda819daf
+RMD160 (sphinx-2.2.9-release.tar.gz) = e600bb0fcbb3fe9838dc60bd8b00ca2bedd0ce05
+Size (sphinx-2.2.9-release.tar.gz) = 2992905 bytes
SHA1 (patch-BUILD_compile-pentium-gcov) = a1ac666efa953a98455a726e5db359c903d699b6
SHA1 (patch-CMakeLists.txt) = 2040dc4904270327c9d64178a3d889ebde2ec5d5
SHA1 (patch-client_completion_hash.cc) = e27fd7072a8206380f0a932b1a31d2843c985cbf
diff --git a/databases/mysql55-client/options.mk b/databases/mysql55-client/options.mk
index 7a4c1772fe0..ab97e758b3b 100644
--- a/databases/mysql55-client/options.mk
+++ b/databases/mysql55-client/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.8 2015/02/07 16:04:46 fhajny Exp $
+# $NetBSD: options.mk,v 1.9 2015/07/30 14:36:34 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mysql5
@@ -25,9 +25,9 @@ CMAKE_ARGS+= -DENABLE_DTRACE=ON
# http://sphinxsearch.com/docs/current.html#sphinxse-overview
PLIST_VARS+= sphinx
.if !empty(PKG_OPTIONS:Msphinx) || make(distinfo) || make(makesum) || make(mdi)
-SPHINX_VER= 2.2.7
+SPHINX_VER= 2.2.9
DISTFILES= ${DEFAULT_DISTFILES} sphinx-${SPHINX_VER}-release${EXTRACT_SUFX}
-SITES.sphinx-2.2.7-release.tar.gz= http://sphinxsearch.com/files/
+SITES.sphinx-2.2.9-release.tar.gz= http://sphinxsearch.com/files/
.if !empty(PKGPATH:Mdatabases/mysql55-server)
MESSAGE_SRC= ${PKGDIR}/MESSAGE ${PKGDIR}/MESSAGE.sphinx
.endif