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 BA068138335 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 C654EE08BF; Sat, 17 Aug 2019 20:13:41 +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 AACB7E08BF 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 63283349CDC 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 BEB69761 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: <1566072808.1f7a0d904e874542e2423c2ea4e214557ba6078d.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-connector-c/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/mysql-connector-c/mysql-connector-c-8.0.17-r1.ebuild X-VCS-Directories: dev-db/mysql-connector-c/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 1f7a0d904e874542e2423c2ea4e214557ba6078d 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: 70720f25-dc16-43d7-ae80-a49640187f0c X-Archives-Hash: 03db42740dc3bbca9dd9eeaee3a8a957 commit: 1f7a0d904e874542e2423c2ea4e214557ba6078d Author: Thomas Deutschmann gentoo org> AuthorDate: Sat Aug 17 20:12:00 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Aug 17 20:13:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f7a0d90 dev-db/mysql-connector-c: 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-connector-c/mysql-connector-c-8.0.17-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-db/mysql-connector-c/mysql-connector-c-8.0.17-r1.ebuild b/dev-db/mysql-connector-c/mysql-connector-c-8.0.17-r1.ebuild index 8bde003962a..7e8007d8e35 100644 --- a/dev-db/mysql-connector-c/mysql-connector-c-8.0.17-r1.ebuild +++ b/dev-db/mysql-connector-c/mysql-connector-c-8.0.17-r1.ebuild @@ -37,7 +37,8 @@ PATCHES=( "${FILESDIR}"/${PN}-8.0.17-libressl.patch ) src_prepare() { sed -i -e 's/CLIENT_LIBS/CONFIG_CLIENT_LIBS/' "${S}/scripts/CMakeLists.txt" || die - # All these are for the server only + # All these are for the server only. + # Disable rpm call which would trigger sandbox, #692368 sed -i \ -e '/MYSQL_CHECK_LIBEVENT/d' \ -e '/MYSQL_CHECK_RAPIDJSON/d' \ @@ -49,6 +50,7 @@ src_prepare() { -e '/ADD_SUBDIRECTORY(man)/d' \ -e '/ADD_SUBDIRECTORY(share)/d' \ -e '/INCLUDE(cmake\/boost/d' \ + -e 's/MY_RPM rpm/MY_RPM rpmNOTEXISTENT/' \ CMakeLists.txt || die # Skip building clients