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 45614158020 for ; Mon, 19 Dec 2022 18:28:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64B66E0A9B; Mon, 19 Dec 2022 18:28:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4A251E0A9B for ; Mon, 19 Dec 2022 18:28:24 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57F663416D4 for ; Mon, 19 Dec 2022 18:28:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E923E77C for ; Mon, 19 Dec 2022 18:28:21 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1671474439.3e5b8e028ece48bd3cf4eeac01219783c9b29c99.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bottleneck/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bottleneck/bottleneck-1.3.5-r1.ebuild dev-python/bottleneck/bottleneck-1.3.5.ebuild X-VCS-Directories: dev-python/bottleneck/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 3e5b8e028ece48bd3cf4eeac01219783c9b29c99 X-VCS-Branch: master Date: Mon, 19 Dec 2022 18:28:21 +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: b16dbfde-8e2c-406c-936b-2329c9363b9b X-Archives-Hash: f518369af676421c2addc9e420694368 commit: 3e5b8e028ece48bd3cf4eeac01219783c9b29c99 Author: Arthur Zamarin gentoo org> AuthorDate: Mon Dec 19 18:27:19 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Mon Dec 19 18:27:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e5b8e02 dev-python/bottleneck: don't overwrite users -O* Closes: https://bugs.gentoo.org/886989 Signed-off-by: Arthur Zamarin gentoo.org> .../{bottleneck-1.3.5.ebuild => bottleneck-1.3.5-r1.ebuild} | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-python/bottleneck/bottleneck-1.3.5.ebuild b/dev-python/bottleneck/bottleneck-1.3.5-r1.ebuild similarity index 83% rename from dev-python/bottleneck/bottleneck-1.3.5.ebuild rename to dev-python/bottleneck/bottleneck-1.3.5-r1.ebuild index d1a52a75700d..9f919ab05ef5 100644 --- a/dev-python/bottleneck/bottleneck-1.3.5.ebuild +++ b/dev-python/bottleneck/bottleneck-1.3.5-r1.ebuild @@ -31,6 +31,13 @@ DEPEND=" distutils_enable_tests pytest +src_prepare() { + # don't overwrites user's optimization level + sed -e '/extra_compile_args=\["-O2"\]/d' -i setup.py || die + + distutils-r1_src_prepare +} + python_test() { cd "${BUILD_DIR}/install$(python_get_sitedir)" || die epytest