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 660AC138359 for ; Fri, 14 Aug 2020 23:22:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64BF2E08F2; Fri, 14 Aug 2020 23:22:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 50EC2E08F2 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 77AFF34F36B 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 CC47B32F 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: <1597447294.79860bfbe7b9e5b34e8eb5608e68de5519be10ec.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/ceph/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/ceph/ceph-14.2.9-r1.ebuild X-VCS-Directories: sys-cluster/ceph/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 79860bfbe7b9e5b34e8eb5608e68de5519be10ec 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: 5809ef44-a3a7-4b70-9ffc-548e409d67f3 X-Archives-Hash: 867778e576abed7a7f1bf49abcdb3b71 commit: 79860bfbe7b9e5b34e8eb5608e68de5519be10ec Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 3 21:25:53 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 14 23:21:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79860bfb sys-cluster/ceph: Drop superfluous calls to python_is_python3 Signed-off-by: Andreas Sturmlechner gentoo.org> sys-cluster/ceph/ceph-14.2.9-r1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-cluster/ceph/ceph-14.2.9-r1.ebuild b/sys-cluster/ceph/ceph-14.2.9-r1.ebuild index 8fbefa08d5f..8f788600013 100644 --- a/sys-cluster/ceph/ceph-14.2.9-r1.ebuild +++ b/sys-cluster/ceph/ceph-14.2.9-r1.ebuild @@ -215,7 +215,7 @@ ceph_src_configure() { local mycmakeargs=( -DWITH_BABELTRACE=$(usex babeltrace) -DWITH_CEPHFS=$(usex cephfs) - -DWITH_CEPHFS_SHELL=$(if python_is_python3; then usex cephfs; else echo OFF; fi) + -DWITH_CEPHFS_SHELL=$(usex cephfs) -DWITH_DPDK=$(usex dpdk) -DWITH_DPDK=$(usex spdk) -DWITH_FUSE=$(usex fuse) @@ -226,9 +226,9 @@ ceph_src_configure() { -DWITH_MGR_DASHBOARD_FRONTEND=NO -DWITH_NUMA=$(usex numa) -DWITH_OPENLDAP=$(usex ldap) - -DMGR_PYTHON_VERSION=$(if python_is_python3; then echo 3; else echo 2; fi) - -DWITH_PYTHON3=$(if python_is_python3; then echo "ON"; else echo "OFF"; fi) - -DWITH_PYTHON2=$(if python_is_python3; then echo "OFF"; else echo "ON"; fi) + -DMGR_PYTHON_VERSION=3 + -DWITH_PYTHON3=ON + -DWITH_PYTHON2=OFF -DWITH_RADOSGW=$(usex radosgw) -DWITH_RADOSGW_AMQP_ENDPOINT=$(usex rabbitmq) -DWITH_SSL=$(usex ssl)