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 26288158088 for ; Wed, 20 Oct 2021 08:55:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4450FE0903; Wed, 20 Oct 2021 08:55:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 26458E0901 for ; Wed, 20 Oct 2021 08:55:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D182E3438C3 for ; Wed, 20 Oct 2021 08:18:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B2B0176 for ; Wed, 20 Oct 2021 08:18:46 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1634557500.018db33350b625d15e6d5db517e1cd019afbf80d.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/manhole/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/manhole/manhole-1.8.0-r1.ebuild X-VCS-Directories: dev-python/manhole/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 018db33350b625d15e6d5db517e1cd019afbf80d X-VCS-Branch: master Date: Wed, 20 Oct 2021 08:18:46 +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: 30c708f4-fd1c-4423-acbe-cf514640a4d6 X-Archives-Hash: 06d4e06f093558f9f9d92bc6694bcd2b commit: 018db33350b625d15e6d5db517e1cd019afbf80d Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Mon Oct 18 11:45:00 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Oct 18 11:45:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=018db333 dev-python/manhole: correct DISTUTILS_USE_SETUPTOOLS Closes: https://bugs.gentoo.org/808699 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/manhole/manhole-1.8.0-r1.ebuild | 43 +++++++++++++++--------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/dev-python/manhole/manhole-1.8.0-r1.ebuild b/dev-python/manhole/manhole-1.8.0-r1.ebuild index a49107d05..191643bea 100644 --- a/dev-python/manhole/manhole-1.8.0-r1.ebuild +++ b/dev-python/manhole/manhole-1.8.0-r1.ebuild @@ -3,18 +3,6 @@ EAPI=8 -DISTUTILS_USE_SETUPTOOLS=rdepend -EPYTEST_DESELECT=( - "tests/test_manhole.py::test_non_daemon_connection" - "tests/test_manhole.py::test_daemon_connection" - "tests/test_manhole.py::test_uwsgi" - "tests/test_manhole.py::test_fork_exec" - "tests/test_manhole.py::test_connection_handler_exec[str]" - "tests/test_manhole.py::test_connection_handler_exec[func]" - "tests/test_manhole.py::test_environ_variable_activation" - "tests/test_manhole.py::test_stderr_doesnt_deadlock" - "tests/test_manhole_cli.py" -) PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 @@ -25,22 +13,35 @@ HOMEPAGE=" https://pypi.org/project/manhole " SRC_URI="https://github.com/ionelmc/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/python-${PN}-${PV}" +S="${WORKDIR}/python-${P}" LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~x86" -DEPEND=" - test? ( - dev-python/gevent[${PYTHON_USEDEP}] - dev-python/process-tests[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/eventlet[${PYTHON_USEDEP}]' python3.8 python3.9) - ) +BDEPEND="test? ( + dev-python/gevent[${PYTHON_USEDEP}] + dev-python/process-tests[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + $(python_gen_cond_dep \ + 'dev-python/eventlet[${PYTHON_USEDEP}]' \ + python3.8 python3.9) +) " DOCS=( AUTHORS.rst CHANGELOG.rst README.rst ) -distutils_enable_tests --install pytest distutils_enable_sphinx docs dev-python/sphinx-py3doc-enhanced-theme +distutils_enable_tests --install pytest + +EPYTEST_DESELECT=( + "tests/test_manhole.py::test_non_daemon_connection" + "tests/test_manhole.py::test_daemon_connection" + "tests/test_manhole.py::test_uwsgi" + "tests/test_manhole.py::test_fork_exec" + "tests/test_manhole.py::test_connection_handler_exec[str]" + "tests/test_manhole.py::test_connection_handler_exec[func]" + "tests/test_manhole.py::test_environ_variable_activation" + "tests/test_manhole.py::test_stderr_doesnt_deadlock" + "tests/test_manhole_cli.py" +)