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 08BD3138CBF for ; Tue, 17 Mar 2015 19:45:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D12BFE08E5; Tue, 17 Mar 2015 19:45:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 814D4E08E5 for ; Tue, 17 Mar 2015 19:45:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 537A33409F9 for ; Tue, 17 Mar 2015 19:45:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F040313F41 for ; Tue, 17 Mar 2015 19:45:04 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1426610308.52e244863806a7844ae0fd2042e2d62417ed810b.grknight@gentoo> Subject: [gentoo-commits] proj/mysql:master commit in: eclass/ X-VCS-Repository: proj/mysql X-VCS-Files: eclass/mysql-multilib.eclass X-VCS-Directories: eclass/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 52e244863806a7844ae0fd2042e2d62417ed810b X-VCS-Branch: master Date: Tue, 17 Mar 2015 19:45:04 +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: b03a3495-3df8-4871-a685-d8136cee836a X-Archives-Hash: 67a2174c055fd782514f93e15b7d0952 commit: 52e244863806a7844ae0fd2042e2d62417ed810b Author: Brian Evans gentoo org> AuthorDate: Tue Mar 17 16:38:28 2015 +0000 Commit: Brian Evans gentoo org> CommitDate: Tue Mar 17 16:38:28 2015 +0000 URL: https://gitweb.gentoo.org/proj/mysql.git/commit/?id=52e24486 Fix dep for mysql-5.7.6 eclass/mysql-multilib.eclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass index 839b372..f33da92 100644 --- a/eclass/mysql-multilib.eclass +++ b/eclass/mysql-multilib.eclass @@ -291,7 +291,9 @@ fi ### End readline/libedit if [[ ${PN} == "mysql" || ${PN} == "percona-server" ]] ; then - mysql_version_is_at_least "5.7.5" && DEPEND="${DEPEND} >=dev-libs/boost-1.56.0:0=" + if mysql_version_is_at_least "5.7.6" ; then DEPEND="${DEPEND} >=dev-libs/boost-1.57.0:0=" ; else + mysql_version_is_at_least "5.7.5" && DEPEND="${DEPEND} >=dev-libs/boost-1.56.0:0=" + fi fi if [[ ${PN} == "mariadb" || ${PN} == "mariadb-galera" ]] ; then