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 987E2138359 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 8B0C4E08F0; 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 76D34E08F0 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 57D8D34F367 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 83F5432B 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: <1597447292.4db82961339725f1218f6e2e58d75007b444d1db.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fail2ban/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/fail2ban/fail2ban-0.11.1-r2.ebuild net-analyzer/fail2ban/fail2ban-99999999.ebuild X-VCS-Directories: net-analyzer/fail2ban/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4db82961339725f1218f6e2e58d75007b444d1db 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: a4e4b9e0-ecd3-484d-8aa0-1029c0d4de42 X-Archives-Hash: 100fdb94cbddb1119c6ed2c7729db595 commit: 4db82961339725f1218f6e2e58d75007b444d1db Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 3 21:23:58 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Aug 14 23:21:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4db82961 net-analyzer/fail2ban: Drop superfluous calls to python_is_python3 Signed-off-by: Andreas Sturmlechner gentoo.org> net-analyzer/fail2ban/fail2ban-0.11.1-r2.ebuild | 4 +--- net-analyzer/fail2ban/fail2ban-99999999.ebuild | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/net-analyzer/fail2ban/fail2ban-0.11.1-r2.ebuild b/net-analyzer/fail2ban/fail2ban-0.11.1-r2.ebuild index f71bda0473e..dae97e6adc4 100644 --- a/net-analyzer/fail2ban/fail2ban-0.11.1-r2.ebuild +++ b/net-analyzer/fail2ban/fail2ban-0.11.1-r2.ebuild @@ -42,9 +42,7 @@ python_prepare_all() { } python_compile() { - if python_is_python3; then - ./fail2ban-2to3 || die - fi + ./fail2ban-2to3 || die distutils-r1_python_compile } diff --git a/net-analyzer/fail2ban/fail2ban-99999999.ebuild b/net-analyzer/fail2ban/fail2ban-99999999.ebuild index 2fe548988a0..358d12b3149 100644 --- a/net-analyzer/fail2ban/fail2ban-99999999.ebuild +++ b/net-analyzer/fail2ban/fail2ban-99999999.ebuild @@ -42,9 +42,7 @@ python_prepare_all() { } python_compile() { - if python_is_python3; then - ./fail2ban-2to3 || die - fi + ./fail2ban-2to3 || die distutils-r1_python_compile }