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 AC3971388C0 for ; Mon, 26 Oct 2015 16:54:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0F56E0826; Mon, 26 Oct 2015 16:54:48 +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 74949E0826 for ; Mon, 26 Oct 2015 16:54:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E7AA340928 for ; Mon, 26 Oct 2015 16:54:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2039B1924 for ; Mon, 26 Oct 2015 16:54:45 +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: <1445878352.968ec8e3261cc3f9013ddb26a3f2c9968ed45e5e.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: 968ec8e3261cc3f9013ddb26a3f2c9968ed45e5e X-VCS-Branch: master Date: Mon, 26 Oct 2015 16:54:45 +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: 57dcf38e-84bf-4559-8fe4-c12e93531c56 X-Archives-Hash: 04f6c23af04c26b9ab7c106648e7708d commit: 968ec8e3261cc3f9013ddb26a3f2c9968ed45e5e Author: Brian Evans gentoo org> AuthorDate: Mon Oct 26 16:52:32 2015 +0000 Commit: Brian Evans gentoo org> CommitDate: Mon Oct 26 16:52:32 2015 +0000 URL: https://gitweb.gentoo.org/proj/mysql.git/commit/?id=968ec8e3 Restrict tests when libressl is enabled Signed-off-by: Brian Evans gentoo.org> eclass/mysql-multilib.eclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass index 8810a04..9f17095 100644 --- a/eclass/mysql-multilib.eclass +++ b/eclass/mysql-multilib.eclass @@ -213,6 +213,9 @@ REQUIRED_USE="^^ ( yassl openssl libressl )" # IUSE="bindist ${IUSE}" #fi +# Tests always fail when libressl is enabled due to hard-coded ciphers in the tests +RESTRICT="libressl? ( test )" + if [[ ${PN} == "mariadb" || ${PN} == "mariadb-galera" ]] ; then IUSE="bindist ${IUSE}" RESTRICT="${RESTRICT} !bindist? ( bindist )"