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 76AF1158018 for ; Sun, 3 Oct 2021 22:55:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D4A3E0884; Sun, 3 Oct 2021 22:55:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6326AE0880 for ; Sun, 3 Oct 2021 22:55:35 +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 2C0E4342EE0 for ; Sun, 3 Oct 2021 22:55:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BEA3114 for ; Sun, 3 Oct 2021 22:55:32 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1633299757.649b6269243b88fc75ecba8a21d958d60637cdb7.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/manhole/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/manhole/manhole-1.8.0-r1.ebuild dev-python/manhole/manhole-1.8.0.ebuild X-VCS-Directories: dev-python/manhole/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 649b6269243b88fc75ecba8a21d958d60637cdb7 X-VCS-Branch: dev Date: Sun, 3 Oct 2021 22:55:32 +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: ebc89734-3898-44b1-98f7-637858cee6cc X-Archives-Hash: 121fc8ded406c445298e76ef8e427586 commit: 649b6269243b88fc75ecba8a21d958d60637cdb7 Author: Alessandro Barbieri gmail com> AuthorDate: Sun Oct 3 22:22:37 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Sun Oct 3 22:22:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=649b6269 dev-python/manhole: EPYTEST_DESELECT Package-Manager: Portage-3.0.26, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/manhole/manhole-1.8.0-r1.ebuild | 46 ++++++++++++++++++++++++++++ dev-python/manhole/manhole-1.8.0.ebuild | 49 ------------------------------ 2 files changed, 46 insertions(+), 49 deletions(-) diff --git a/dev-python/manhole/manhole-1.8.0-r1.ebuild b/dev-python/manhole/manhole-1.8.0-r1.ebuild new file mode 100644 index 000000000..a49107d05 --- /dev/null +++ b/dev-python/manhole/manhole-1.8.0-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +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 + +DESCRIPTION="Debugging manhole for python application" +HOMEPAGE=" + https://github.com/ionelmc/python-manhole + 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}" + +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) + ) +" + +DOCS=( AUTHORS.rst CHANGELOG.rst README.rst ) + +distutils_enable_tests --install pytest +distutils_enable_sphinx docs dev-python/sphinx-py3doc-enhanced-theme diff --git a/dev-python/manhole/manhole-1.8.0.ebuild b/dev-python/manhole/manhole-1.8.0.ebuild deleted file mode 100644 index eae6b4e6c..000000000 --- a/dev-python/manhole/manhole-1.8.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -DISTUTILS_USE_SETUPTOOLS=rdepend -inherit distutils-r1 - -DESCRIPTION="Debugging manhole for python application" -HOMEPAGE=" - https://github.com/ionelmc/python-manhole - 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}" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" - -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 - -python_test() { - epytest_args=( - --deselect tests/test_manhole.py::test_non_daemon_connection - --deselect tests/test_manhole.py::test_daemon_connection - --deselect tests/test_manhole.py::test_uwsgi - --deselect tests/test_manhole.py::test_fork_exec - --deselect tests/test_manhole.py::test_connection_handler_exec[str] - --deselect tests/test_manhole.py::test_connection_handler_exec[func] - --deselect tests/test_manhole.py::test_environ_variable_activation - --deselect tests/test_manhole.py::test_stderr_doesnt_deadlock - --deselect tests/test_manhole_cli.py - ) - - epytest "${epytest_args[@]}" -}