From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [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 4F6141382C5 for ; Fri, 26 Mar 2021 14:37:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B594E0848; Fri, 26 Mar 2021 14:37:08 +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 824E6E0848 for ; Fri, 26 Mar 2021 14:37:08 +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 71669340DE7 for ; Fri, 26 Mar 2021 14:37:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10D50632 for ; Fri, 26 Mar 2021 14:37:06 +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: <1616769419.8cd070d6be079ede23467b8d37e59210ac31714f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlalchemy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sqlalchemy/sqlalchemy-1.4.0.ebuild dev-python/sqlalchemy/sqlalchemy-1.4.1.ebuild dev-python/sqlalchemy/sqlalchemy-1.4.2.ebuild dev-python/sqlalchemy/sqlalchemy-1.4.3-r1.ebuild dev-python/sqlalchemy/sqlalchemy-1.4.3.ebuild X-VCS-Directories: dev-python/sqlalchemy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8cd070d6be079ede23467b8d37e59210ac31714f X-VCS-Branch: master Date: Fri, 26 Mar 2021 14:37:06 +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: d9b7ba65-e1c3-48c2-aca8-888bb752252f X-Archives-Hash: 61270a75e2d59dfbe3801b6e904de764 commit: 8cd070d6be079ede23467b8d37e59210ac31714f Author: Michał Górny gentoo org> AuthorDate: Fri Mar 26 14:31:53 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 26 14:36:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd070d6 dev-python/sqlalchemy: Disable optional dep on greenlet Closes: https://bugs.gentoo.org/778305 Signed-off-by: Michał Górny gentoo.org> dev-python/sqlalchemy/sqlalchemy-1.4.0.ebuild | 7 +++++++ dev-python/sqlalchemy/sqlalchemy-1.4.1.ebuild | 7 +++++++ dev-python/sqlalchemy/sqlalchemy-1.4.2.ebuild | 7 +++++++ .../{sqlalchemy-1.4.3.ebuild => sqlalchemy-1.4.3-r1.ebuild} | 7 +++++++ 4 files changed, 28 insertions(+) diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.0.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.4.0.ebuild index 2c82efecc27..ff4b6464793 100644 --- a/dev-python/sqlalchemy/sqlalchemy-1.4.0.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-1.4.0.ebuild @@ -36,6 +36,13 @@ BDEPEND=" distutils_enable_tests pytest +src_prepare() { + # remove optional/partial dep on greenlet, greenlet is not very portable + sed -i -e '/greenlet/d' setup.cfg || die + + distutils-r1_src_prepare +} + python_test() { # Disable tests hardcoding function call counts specific to Python versions. epytest --ignore test/aaa_profiling \ diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.1.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.4.1.ebuild index f787e64a449..35866923996 100644 --- a/dev-python/sqlalchemy/sqlalchemy-1.4.1.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-1.4.1.ebuild @@ -36,6 +36,13 @@ BDEPEND=" distutils_enable_tests pytest +src_prepare() { + # remove optional/partial dep on greenlet, greenlet is not very portable + sed -i -e '/greenlet/d' setup.cfg || die + + distutils-r1_src_prepare +} + python_test() { # Disable tests hardcoding function call counts specific to Python versions. epytest --ignore test/aaa_profiling \ diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.2.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.4.2.ebuild index f787e64a449..35866923996 100644 --- a/dev-python/sqlalchemy/sqlalchemy-1.4.2.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-1.4.2.ebuild @@ -36,6 +36,13 @@ BDEPEND=" distutils_enable_tests pytest +src_prepare() { + # remove optional/partial dep on greenlet, greenlet is not very portable + sed -i -e '/greenlet/d' setup.cfg || die + + distutils-r1_src_prepare +} + python_test() { # Disable tests hardcoding function call counts specific to Python versions. epytest --ignore test/aaa_profiling \ diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.3.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.4.3-r1.ebuild similarity index 90% rename from dev-python/sqlalchemy/sqlalchemy-1.4.3.ebuild rename to dev-python/sqlalchemy/sqlalchemy-1.4.3-r1.ebuild index f787e64a449..35866923996 100644 --- a/dev-python/sqlalchemy/sqlalchemy-1.4.3.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-1.4.3-r1.ebuild @@ -36,6 +36,13 @@ BDEPEND=" distutils_enable_tests pytest +src_prepare() { + # remove optional/partial dep on greenlet, greenlet is not very portable + sed -i -e '/greenlet/d' setup.cfg || die + + distutils-r1_src_prepare +} + python_test() { # Disable tests hardcoding function call counts specific to Python versions. epytest --ignore test/aaa_profiling \