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 79989138359 for ; Fri, 14 Aug 2020 23:22:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A48AE0898; Fri, 14 Aug 2020 23:22:24 +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 01CC7E0898 for ; Fri, 14 Aug 2020 23:22:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 291FE34F367 for ; Fri, 14 Aug 2020 23:22:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8833318 for ; Fri, 14 Aug 2020 23:22:20 +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: <1597447287.c1ed105b1eeb213edbbd7405bfa13a0d89e48711.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bsddb3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bsddb3/bsddb3-6.2.7.ebuild X-VCS-Directories: dev-python/bsddb3/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c1ed105b1eeb213edbbd7405bfa13a0d89e48711 X-VCS-Branch: master Date: Fri, 14 Aug 2020 23:22:20 +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: 48eb29c4-d7c0-4983-b979-d4019782de1a X-Archives-Hash: 0f4bbd8b6dd9aef9077f4e5356905c41 commit: c1ed105b1eeb213edbbd7405bfa13a0d89e48711 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 3 21:23:49 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 14 23:21:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1ed105b dev-python/bsddb3: Drop superfluous calls to python_is_python3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-python/bsddb3/bsddb3-6.2.7.ebuild | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/dev-python/bsddb3/bsddb3-6.2.7.ebuild b/dev-python/bsddb3/bsddb3-6.2.7.ebuild index b925dd3cd69..47c88f81dcd 100644 --- a/dev-python/bsddb3/bsddb3-6.2.7.ebuild +++ b/dev-python/bsddb3/bsddb3-6.2.7.ebuild @@ -63,17 +63,6 @@ python_configure_all() { export YES_I_HAVE_THE_RIGHT_TO_USE_THIS_BERKELEY_DB_VERSION=1 } -python_compile() { - if ! python_is_python3; then - local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" - fi - distutils-r1_python_compile -} - python_test() { - if python_is_python3; then - PYTHONPATH=Lib3 "${EPYTHON}" test3.py -v || die "Testing failed with ${EPYTHON}" - else - PYTHONPATH=Lib "${EPYTHON}" test.py -v || die "Testing failed with ${EPYTHON}" - fi + PYTHONPATH=Lib3 "${EPYTHON}" test3.py -v || die "Testing failed with ${EPYTHON}" }