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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C32E315808D for ; Wed, 20 Apr 2022 07:47:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 925D4E0930; Wed, 20 Apr 2022 07:47:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 66D6AE08F4 for ; Wed, 20 Apr 2022 07:47:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49B71341541 for ; Wed, 20 Apr 2022 07:47:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D52CC177 for ; Wed, 20 Apr 2022 07:47:38 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1650440826.78cc9078a2e30e9d46d26980e8d58eed9d4d2378.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/setuptools/setuptools-60.10.0.ebuild dev-python/setuptools/setuptools-60.5.0.ebuild dev-python/setuptools/setuptools-60.9.2.ebuild dev-python/setuptools/setuptools-61.3.0.ebuild dev-python/setuptools/setuptools-61.3.1-r1.ebuild dev-python/setuptools/setuptools-62.0.0.ebuild dev-python/setuptools/setuptools-62.1.0.ebuild X-VCS-Directories: dev-python/setuptools/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 78cc9078a2e30e9d46d26980e8d58eed9d4d2378 X-VCS-Branch: master Date: Wed, 20 Apr 2022 07:47:38 +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: d2fc7407-36ca-411f-9684-aa09b24686a1 X-Archives-Hash: 2af5b5fcb4baec5645fc2119f3b7a4e1 commit: 78cc9078a2e30e9d46d26980e8d58eed9d4d2378 Author: Michał Górny gentoo org> AuthorDate: Wed Apr 20 06:57:05 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 20 07:47:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78cc9078 dev-python/setuptools: Use `return` instead of `continue` Closes: https://bugs.gentoo.org/839165 Signed-off-by: Michał Górny gentoo.org> dev-python/setuptools/setuptools-60.10.0.ebuild | 2 +- dev-python/setuptools/setuptools-60.5.0.ebuild | 2 +- dev-python/setuptools/setuptools-60.9.2.ebuild | 2 +- dev-python/setuptools/setuptools-61.3.0.ebuild | 2 +- dev-python/setuptools/setuptools-61.3.1-r1.ebuild | 2 +- dev-python/setuptools/setuptools-62.0.0.ebuild | 2 +- dev-python/setuptools/setuptools-62.1.0.ebuild | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dev-python/setuptools/setuptools-60.10.0.ebuild b/dev-python/setuptools/setuptools-60.10.0.ebuild index db7fa6bd8eed..9b9401cf5cd4 100644 --- a/dev-python/setuptools/setuptools-60.10.0.ebuild +++ b/dev-python/setuptools/setuptools-60.10.0.ebuild @@ -89,7 +89,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/setuptools/setuptools-60.5.0.ebuild b/dev-python/setuptools/setuptools-60.5.0.ebuild index 86d902558886..dc855eb59064 100644 --- a/dev-python/setuptools/setuptools-60.5.0.ebuild +++ b/dev-python/setuptools/setuptools-60.5.0.ebuild @@ -66,7 +66,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return distutils_install_for_testing local EPYTEST_DESELECT=( diff --git a/dev-python/setuptools/setuptools-60.9.2.ebuild b/dev-python/setuptools/setuptools-60.9.2.ebuild index 771a1740a041..824ccd965cc4 100644 --- a/dev-python/setuptools/setuptools-60.9.2.ebuild +++ b/dev-python/setuptools/setuptools-60.9.2.ebuild @@ -88,7 +88,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/setuptools/setuptools-61.3.0.ebuild b/dev-python/setuptools/setuptools-61.3.0.ebuild index 1f21e4970f84..297662e04bc9 100644 --- a/dev-python/setuptools/setuptools-61.3.0.ebuild +++ b/dev-python/setuptools/setuptools-61.3.0.ebuild @@ -100,7 +100,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/setuptools/setuptools-61.3.1-r1.ebuild b/dev-python/setuptools/setuptools-61.3.1-r1.ebuild index add5da08ce1c..722c799e855f 100644 --- a/dev-python/setuptools/setuptools-61.3.1-r1.ebuild +++ b/dev-python/setuptools/setuptools-61.3.1-r1.ebuild @@ -99,7 +99,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/setuptools/setuptools-62.0.0.ebuild b/dev-python/setuptools/setuptools-62.0.0.ebuild index 0bcb480a73c4..c790346b25a3 100644 --- a/dev-python/setuptools/setuptools-62.0.0.ebuild +++ b/dev-python/setuptools/setuptools-62.0.0.ebuild @@ -99,7 +99,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network diff --git a/dev-python/setuptools/setuptools-62.1.0.ebuild b/dev-python/setuptools/setuptools-62.1.0.ebuild index 6b7d4e64e2c0..812e47a1a262 100644 --- a/dev-python/setuptools/setuptools-62.1.0.ebuild +++ b/dev-python/setuptools/setuptools-62.1.0.ebuild @@ -99,7 +99,7 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib # keep in sync with python_gen_cond_dep above! - has "${EPYTHON}" python3.{8..10} pypy3 || continue + has "${EPYTHON}" python3.{8..10} pypy3 || return local EPYTEST_DESELECT=( # network