From owner-svn-ports-branches@freebsd.org Fri Jan 17 14:37:33 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0FC7F22FC57; Fri, 17 Jan 2020 14:37:33 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47zkDX6f5bz4Xvh; Fri, 17 Jan 2020 14:37:32 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DF47BA33F; Fri, 17 Jan 2020 14:37:32 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00HEbWUt061079; Fri, 17 Jan 2020 14:37:32 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00HEbW9h061075; Fri, 17 Jan 2020 14:37:32 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <202001171437.00HEbW9h061075@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Fri, 17 Jan 2020 14:37:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r523298 - in branches/2020Q1/databases: mysql57-client mysql57-server mysql57-server/files X-SVN-Group: ports-branches X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: in branches/2020Q1/databases: mysql57-client mysql57-server mysql57-server/files X-SVN-Commit-Revision: 523298 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jan 2020 14:37:33 -0000 Author: joneum Date: Fri Jan 17 14:37:31 2020 New Revision: 523298 URL: https://svnweb.freebsd.org/changeset/ports/523298 Log: MFH: r523239 databases/mysq56-{client, server}: Update to latest release 5.7.29 Bugs Fixed: - InnoDB: os_file_get_parent_dir warnings were encountered when compiling MySQL with GCC 9.2.0. - InnoDB: An internal function (btr_push_update_extern_fields()) used to fetch newly added externally stored fields and update them during a pessimistic update or when going back to a previous version of a record was no longer required. Newly added externally stored fields are updated by a different function. Also, the method used to determine the number of externally stored fields was corrected. - InnoDB: A comparison function found two records to be equal when attempting to merge non-leaf pages of a spatial index. The function was unable to handle this unexpected condition, which resulted in a long semaphore wait and an eventual assertion failure. - Replication: A memory leak could occur when a failed replication group member tried to rejoin a minority group and was disallowed from doing so. - Docker packages were missing the LDAP authentication plugins. More Infos: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-29.html Approved by: mmokhi (maintainer, implicit) Security: a6cf65ad-37d2-11ea-a1c7-b499baebfeaf Sponsored by: Netzkommune GmbH Approved by: ports-secteam (with hat) Modified: branches/2020Q1/databases/mysql57-client/Makefile branches/2020Q1/databases/mysql57-server/Makefile branches/2020Q1/databases/mysql57-server/distinfo branches/2020Q1/databases/mysql57-server/files/patch-libmysql_authentication__ldap_CMakeLists.txt Directory Properties: branches/2020Q1/ (props changed) Modified: branches/2020Q1/databases/mysql57-client/Makefile ============================================================================== --- branches/2020Q1/databases/mysql57-client/Makefile Fri Jan 17 14:26:29 2020 (r523297) +++ branches/2020Q1/databases/mysql57-client/Makefile Fri Jan 17 14:37:31 2020 (r523298) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mysql -PORTREVISION= 1 +PORTREVISION= 0 PKGNAMESUFFIX= 57-client COMMENT= Multithreaded SQL database (client) Modified: branches/2020Q1/databases/mysql57-server/Makefile ============================================================================== --- branches/2020Q1/databases/mysql57-server/Makefile Fri Jan 17 14:26:29 2020 (r523297) +++ branches/2020Q1/databases/mysql57-server/Makefile Fri Jan 17 14:37:31 2020 (r523298) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.7.28 -PORTREVISION= 2 +PORTVERSION= 5.7.29 +PORTREVISION= 0 CATEGORIES= databases MASTER_SITES= MYSQL/MySQL-5.7 PKGNAMESUFFIX?= 57-server Modified: branches/2020Q1/databases/mysql57-server/distinfo ============================================================================== --- branches/2020Q1/databases/mysql57-server/distinfo Fri Jan 17 14:26:29 2020 (r523297) +++ branches/2020Q1/databases/mysql57-server/distinfo Fri Jan 17 14:37:31 2020 (r523298) @@ -1,3 +1,3 @@ -TIMESTAMP = 1574613665 -SHA256 (mysql-boost-5.7.28.tar.gz) = f16399315212117c08f9bdf8a0d682728b2ce82d691bcfbf25a770f413b6f2da -SIZE (mysql-boost-5.7.28.tar.gz) = 51409668 +TIMESTAMP = 1579122971 +SHA256 (mysql-boost-5.7.29.tar.gz) = 00f514124de2bad1ba7b380cbbd46e316cae7fc7bc3a5621456cabf352f27978 +SIZE (mysql-boost-5.7.29.tar.gz) = 51417554 Modified: branches/2020Q1/databases/mysql57-server/files/patch-libmysql_authentication__ldap_CMakeLists.txt ============================================================================== --- branches/2020Q1/databases/mysql57-server/files/patch-libmysql_authentication__ldap_CMakeLists.txt Fri Jan 17 14:26:29 2020 (r523297) +++ branches/2020Q1/databases/mysql57-server/files/patch-libmysql_authentication__ldap_CMakeLists.txt Fri Jan 17 14:37:31 2020 (r523298) @@ -1,16 +1,18 @@ ---- libmysql/authentication_ldap/CMakeLists.txt.orig 2018-10-04 05:48:22 UTC -+++ libmysql/authentication_ldap/CMakeLists.txt -@@ -106,11 +106,13 @@ ELSE() +--- libmysql/authentication_ldap/CMakeLists.txt.orig 2020-01-16 09:39:09.585385000 +0100 ++++ libmysql/authentication_ldap/CMakeLists.txt 2020-01-16 09:41:59.054985000 +0100 +@@ -47,6 +47,7 @@ IF(NOT WIN32 AND NOT HAVE_LBER_H) + CROAK_AND_RETURN("Required LBER header is missing.") ENDIF() - MESSAGE(STATUS "SASL_LIBRARY = ${SASL_LIBRARY}") +IF (WITH_AUTHENTICATION_LDAP) MYSQL_ADD_PLUGIN(authentication_ldap_sasl_client - auth_ldap_sasl_client.cc log_client.cc - LINK_LIBRARIES ${SASL_LIBRARY} - CLIENT_ONLY MODULE_ONLY - MODULE_OUTPUT_NAME "authentication_ldap_sasl_client") + auth_ldap_sasl_client.cc + log_client.cc +@@ -57,6 +58,7 @@ MYSQL_ADD_PLUGIN(authentication_ldap_sasl_client + CLIENT_ONLY + MODULE_ONLY + MODULE_OUTPUT_NAME "authentication_ldap_sasl_client") +ENDIF () - IF(WIN32) - GET_FILENAME_COMPONENT(SASL_DLL_NAME ${SASL_LIBRARY_DLL} NAME) + # The plugin may need symbols which are not loaded by the client. + IF(STATIC_SASL_LIBRARY)