From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 752941381F3 for ; Tue, 23 Apr 2013 23:26:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E66BE0AA5; Tue, 23 Apr 2013 23:26:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A75AE0AA5 for ; Tue, 23 Apr 2013 23:26:13 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 825F733BE52 for ; Tue, 23 Apr 2013 23:26:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 1D8FDE408C for ; Tue, 23 Apr 2013 23:26:11 +0000 (UTC) From: "Jorge Manuel B. S. Vicetto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jorge Manuel B. S. Vicetto" Message-ID: <1366758856.0f1674fc0494d50b7c49f14a65fab81ff69568a0.jmbsvicetto@gentoo> Subject: [gentoo-commits] proj/mysql-extras:master commit in: / X-VCS-Repository: proj/mysql-extras X-VCS-Files: 00000_index.txt 20003_all_fix-5.7-library.patch X-VCS-Directories: / X-VCS-Committer: jmbsvicetto X-VCS-Committer-Name: Jorge Manuel B. S. Vicetto X-VCS-Revision: 0f1674fc0494d50b7c49f14a65fab81ff69568a0 X-VCS-Branch: master Date: Tue, 23 Apr 2013 23:26:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a3796f59-69ce-4931-b4eb-a7f27ccdf8d5 X-Archives-Hash: 42c6e652c5549c448f0db1c47b928e41 commit: 0f1674fc0494d50b7c49f14a65fab81ff69568a0 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) gentoo org> AuthorDate: Tue Apr 23 23:14:16 2013 +0000 Commit: Jorge Manuel B. S. Vicetto gentoo org> CommitDate: Tue Apr 23 23:14:16 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mysql-extras.git;a=commit;h=0f1674fc Reworked Brian Evans patch for fixing bad CMake references for readline for mysql-5.7. --- 00000_index.txt | 9 +++++++-- 20003_all_fix-5.7-library.patch | 15 +++++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/00000_index.txt b/00000_index.txt index 25a2422..95633b9 100644 --- a/00000_index.txt +++ b/00000_index.txt @@ -1468,6 +1468,11 @@ @@ Bug 442000, upstream 62729 compilation failure on arm and possibly other arches where va_list is a struct or array. @patch 20003_all_fix-5.6-library.patch -@ver 5.06.00.00 to 5.99.99.99 +@ver 5.06.00.00 to 5.06.99.99 +@pn mysql +@@ Fix bad references to zlib and readline upstream bugs 68277 and 63130 + +@patch 20003_all_fix-5.7-library.patch +@ver 5.07.00.00 to 5.99.99.99 @pn mysql -@@ Fix bad references to zlib and readline upstream bugs 68277 and 68087 +@@ Fix readline upstream bug 63130 diff --git a/20003_all_fix-5.7-library.patch b/20003_all_fix-5.7-library.patch new file mode 100644 index 0000000..8f0c938 --- /dev/null +++ b/20003_all_fix-5.7-library.patch @@ -0,0 +1,15 @@ +--- mysql-5.6-5.6.9-rc+dfsg.orig/cmake/readline.cmake ++++ mysql-5.6-5.6.9-rc+dfsg/cmake/readline.cmake +@@ -192,9 +192,9 @@ MACRO (MYSQL_CHECK_READLINE) + IF(WITH_LIBEDIT) + MYSQL_USE_BUNDLED_LIBEDIT() + ELSE() +- FIND_SYSTEM_LIBEDIT(edit) +- IF(NOT_LIBEDIT_FOUND) +- MESSAGE(FATAL_ERROR "Cannot find system libedit libraries.Use WITH_LIBEDIT") ++ FIND_SYSTEM_LIBEDIT(readline) ++ IF(NOT_LIBREADLINE_FOUND) ++ MESSAGE(FATAL_ERROR "Cannot find system libreadline libraries.Use WITH_LIBREADLINE") + ENDIF() + ENDIF() + ENDIF(NOT WIN32)