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 37383138359 for ; Fri, 14 Aug 2020 23:22:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A759E08ED; Fri, 14 Aug 2020 23:22:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 0FD77E08ED for ; Fri, 14 Aug 2020 23:22:25 +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 11D9B34F36C for ; Fri, 14 Aug 2020 23:22:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23884324 for ; Fri, 14 Aug 2020 23:22:21 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1597447289.cce27e36f3e4df3354d6a96339e5d011c519296a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytables/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytables/pytables-3.4.4.ebuild dev-python/pytables/pytables-3.6.1.ebuild X-VCS-Directories: dev-python/pytables/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cce27e36f3e4df3354d6a96339e5d011c519296a X-VCS-Branch: master Date: Fri, 14 Aug 2020 23:22: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: 423e01db-72ea-48df-879a-3866d2f845b9 X-Archives-Hash: ada276d4dba930002f5209744a9782bd commit: cce27e36f3e4df3354d6a96339e5d011c519296a Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 3 21:23:53 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 14 23:21:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cce27e36 dev-python/pytables: Drop superfluous calls to python_is_python3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-python/pytables/pytables-3.4.4.ebuild | 8 -------- dev-python/pytables/pytables-3.6.1.ebuild | 4 ---- 2 files changed, 12 deletions(-) diff --git a/dev-python/pytables/pytables-3.4.4.ebuild b/dev-python/pytables/pytables-3.4.4.ebuild index 9a5ed1e3811..f1f8a63e8be 100644 --- a/dev-python/pytables/pytables-3.4.4.ebuild +++ b/dev-python/pytables/pytables-3.4.4.ebuild @@ -51,14 +51,6 @@ python_prepare_all() { distutils-r1_python_prepare_all } -python_compile() { - if ! python_is_python3; then - local -x CFLAGS="${CFLAGS}" - append-cflags -fno-strict-aliasing - fi - distutils-r1_python_compile -} - python_test() { cd "${BUILD_DIR}"/lib* || die ${EPYTHON} tables/tests/test_all.py || die diff --git a/dev-python/pytables/pytables-3.6.1.ebuild b/dev-python/pytables/pytables-3.6.1.ebuild index 0406c688685..0d24b5b1d06 100644 --- a/dev-python/pytables/pytables-3.6.1.ebuild +++ b/dev-python/pytables/pytables-3.6.1.ebuild @@ -52,10 +52,6 @@ python_prepare_all() { } python_compile() { - if ! python_is_python3; then - local -x CFLAGS="${CFLAGS}" - append-cflags -fno-strict-aliasing - fi distutils-r1_python_compile -j1 }