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 B1E60138334 for ; Sat, 17 Aug 2019 20:13:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1366E08BD; Sat, 17 Aug 2019 20:13:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 83BAAE08BD for ; Sat, 17 Aug 2019 20:13:41 +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 563003498D6 for ; Sat, 17 Aug 2019 20:13:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D37B5765 for ; Sat, 17 Aug 2019 20:13:37 +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: <1566072809.75f6041c30ba38fd1486a9843a246d585ed4f48c.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: 75f6041c30ba38fd1486a9843a246d585ed4f48c X-VCS-Branch: master Date: Sat, 17 Aug 2019 20:13:37 +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: f574af60-17f7-40e7-96e2-d5bbd9e2c07c X-Archives-Hash: cfa29ba51cd3b4a7154352acb7a7dc00 commit: 75f6041c30ba38fd1486a9843a246d585ed4f48c Author: Thomas Deutschmann gentoo org> AuthorDate: Sat Aug 17 20:13:10 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Aug 17 20:13:29 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75f6041c dev-db/mysql: disable rpm call Closes: https://bugs.gentoo.org/692368 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 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-db/mysql/mysql-8.0.17.ebuild b/dev-db/mysql/mysql-8.0.17.ebuild index d2e0717c4ab..df67c9534ad 100644 --- a/dev-db/mysql/mysql-8.0.17.ebuild +++ b/dev-db/mysql/mysql-8.0.17.ebuild @@ -164,6 +164,11 @@ src_unpack() { } src_prepare() { + # Avoid rpm call which would trigger sandbox, #692368 + sed -i \ + -e 's/MY_RPM rpm/MY_RPM rpmNOTEXISTENT/' \ + CMakeLists.txt || die + if use jemalloc ; then echo "TARGET_LINK_LIBRARIES(mysqld jemalloc)" >> "${S}/sql/CMakeLists.txt" || die fi