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 1462B138359 for ; Fri, 14 Aug 2020 23:22:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C33BE08F6; Fri, 14 Aug 2020 23:22:26 +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 72AF1E08F6 for ; Fri, 14 Aug 2020 23:22:26 +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 8627234F3AF for ; Fri, 14 Aug 2020 23:22:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0EDD331 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: <1597447295.8b78a2bf52cd04def3279d150b8117b738c70d08.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libcap-ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libcap-ng/libcap-ng-0.7.10.ebuild X-VCS-Directories: sys-libs/libcap-ng/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8b78a2bf52cd04def3279d150b8117b738c70d08 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: b7591768-4a80-4a64-9ce5-143fc9cf7ba4 X-Archives-Hash: 59a6262933c41987132005f18847a996 commit: 8b78a2bf52cd04def3279d150b8117b738c70d08 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 3 21:25:55 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 14 23:21:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b78a2bf sys-libs/libcap-ng: Drop superfluous calls to python_is_python3 Signed-off-by: Andreas Sturmlechner gentoo.org> sys-libs/libcap-ng/libcap-ng-0.7.10.ebuild | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/sys-libs/libcap-ng/libcap-ng-0.7.10.ebuild b/sys-libs/libcap-ng/libcap-ng-0.7.10.ebuild index f19dc4e73c8..ffc8687f1aa 100644 --- a/sys-libs/libcap-ng/libcap-ng-0.7.10.ebuild +++ b/sys-libs/libcap-ng/libcap-ng-0.7.10.ebuild @@ -44,12 +44,7 @@ src_configure() { # set up python bindings build(s) if use python ; then setup_python_flags_configure() { - if python_is_python3; then - pythonconf=( --without-python --with-python3 ) - else - pythonconf=( --with-python --without-python3 ) - local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" - fi + pythonconf=( --without-python --with-python3 ) run_in_build_dir econf "${pythonconf[@]}" "${myconf[@]}" }