From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1A8A7138334 for ; Sun, 18 Aug 2019 12:35:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60E0BE0AA7; Sun, 18 Aug 2019 12:34:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46760E0AA7 for ; Sun, 18 Aug 2019 12:34:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2BAB4349DB0 for ; Sun, 18 Aug 2019 12:34:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B62F62A for ; Sun, 18 Aug 2019 12:34:56 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1566131686.dee630c7fee42ae9196065e93bbd61cff34194de.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mysql/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/mysql/mysql-8.0.17.ebuild X-VCS-Directories: dev-db/mysql/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: dee630c7fee42ae9196065e93bbd61cff34194de X-VCS-Branch: master Date: Sun, 18 Aug 2019 12:34:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e618ea00-8ba3-4579-bd28-f58735379595 X-Archives-Hash: 3fe06c38e017f9b057f45b3b01bbdec7 commit: dee630c7fee42ae9196065e93bbd61cff34194de Author: Thomas Deutschmann gentoo org> AuthorDate: Sun Aug 18 12:33:13 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun Aug 18 12:34:46 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dee630c7 dev-db/mysql: using SSL is mandatory Closes: https://bugs.gentoo.org/692390 Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Thomas Deutschmann gentoo.org> dev-db/mysql/mysql-8.0.17.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/dev-db/mysql/mysql-8.0.17.ebuild b/dev-db/mysql/mysql-8.0.17.ebuild index df67c9534ad..9bf70ba0f6b 100644 --- a/dev-db/mysql/mysql-8.0.17.ebuild +++ b/dev-db/mysql/mysql-8.0.17.ebuild @@ -30,7 +30,7 @@ DESCRIPTION="A fast, multi-threaded, multi-user SQL database server" LICENSE="GPL-2" SLOT="0" IUSE="cjk cracklib debug jemalloc latin1 libressl numa +perl profiling - router selinux ssl tcmalloc test" + router selinux tcmalloc test" # Tests always fail when libressl is enabled due to hard-coded ciphers in the tests RESTRICT="libressl? ( test )" @@ -77,10 +77,8 @@ COMMON_DEPEND=" sys-process/procps:0= ) numa? ( sys-process/numactl ) - ssl? ( - !libressl? ( >=dev-libs/openssl-1.0.0:0= ) - libressl? ( dev-libs/libressl:0= ) - ) + !libressl? ( >=dev-libs/openssl-1.0.0:0= ) + libressl? ( dev-libs/libressl:0= ) tcmalloc? ( dev-util/google-perftools:0= ) " DEPEND="${COMMON_DEPEND} @@ -224,10 +222,9 @@ src_configure(){ -DINSTALL_SUPPORTFILESDIR="${EPREFIX}/usr/share/mysql" -DCOMPILATION_COMMENT="Gentoo Linux ${PF}" -DWITH_UNIT_TESTS=$(usex test ON OFF) - ### TODO: make this system but issues with UTF-8 prevent it -DWITH_EDITLINE=system -DWITH_ZLIB=system - -DWITH_SSL=$(usex ssl system wolfssl) + -DWITH_SSL=system -DWITH_LIBWRAP=0 -DENABLED_LOCAL_INFILE=1 -DMYSQL_UNIX_ADDR="${EPREFIX}/var/run/mysqld/mysqld.sock"