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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 211AD158020 for ; Thu, 13 Oct 2022 13:36:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5039DE08AD; Thu, 13 Oct 2022 13:36:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 375B6E08AD for ; Thu, 13 Oct 2022 13:36:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F65B33BED9 for ; Thu, 13 Oct 2022 13:36:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76C82615 for ; Thu, 13 Oct 2022 13:36:11 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1665668166.c58795da6dc1ffed35420e7e2340a35d106917bb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/Levenshtein/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/Levenshtein/Levenshtein-0.20.5-r1.ebuild dev-python/Levenshtein/Levenshtein-0.20.5.ebuild X-VCS-Directories: dev-python/Levenshtein/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c58795da6dc1ffed35420e7e2340a35d106917bb X-VCS-Branch: master Date: Thu, 13 Oct 2022 13:36:11 +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: 7789e1ec-8dda-4d1b-aa30-b6bd331bf2e2 X-Archives-Hash: 2c3ad232f92bd2d5ad9039bb992421d4 commit: c58795da6dc1ffed35420e7e2340a35d106917bb Author: Michał Górny gentoo org> AuthorDate: Thu Oct 13 12:41:58 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Oct 13 13:36:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c58795da dev-python/Levenshtein: Stop the build system from forcing LTO Closes: https://bugs.gentoo.org/876951 Signed-off-by: Michał Górny gentoo.org> .../{Levenshtein-0.20.5.ebuild => Levenshtein-0.20.5-r1.ebuild} | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-python/Levenshtein/Levenshtein-0.20.5.ebuild b/dev-python/Levenshtein/Levenshtein-0.20.5-r1.ebuild similarity index 85% rename from dev-python/Levenshtein/Levenshtein-0.20.5.ebuild rename to dev-python/Levenshtein/Levenshtein-0.20.5-r1.ebuild index abec9786b5f3..8887977b011f 100644 --- a/dev-python/Levenshtein/Levenshtein-0.20.5.ebuild +++ b/dev-python/Levenshtein/Levenshtein-0.20.5-r1.ebuild @@ -36,3 +36,10 @@ BDEPEND=" " distutils_enable_tests pytest + +src_prepare() { + # sterilize build flags + sed -i -e '/CMAKE_INTERPROCEDURAL_OPTIMIZATION/d' CMakeLists.txt || die + + distutils-r1_src_prepare +}