public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Anna Vyalkova" <cyber+gentoo@sysrq.in>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/hunter/
Date: Tue, 25 May 2021 10:37:38 +0000 (UTC)	[thread overview]
Message-ID: <1621939054.e11925b21b5bcc849e5d095f93d8fb40d39bf76b.cybertailor@gentoo> (raw)

commit:     e11925b21b5bcc849e5d095f93d8fb40d39bf76b
Author:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue May 25 08:41:29 2021 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue May 25 10:37:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e11925b2

dev-python/hunter: support python 3.9, drop 3.3.2

Signed-off-by: Anna Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/hunter/Manifest            |  1 -
 dev-python/hunter/hunter-3.3.2.ebuild | 70 -----------------------------------
 dev-python/hunter/hunter-3.3.3.ebuild |  2 +-
 3 files changed, 1 insertion(+), 72 deletions(-)

diff --git a/dev-python/hunter/Manifest b/dev-python/hunter/Manifest
index c07b8acdf..35e192ec6 100644
--- a/dev-python/hunter/Manifest
+++ b/dev-python/hunter/Manifest
@@ -1,2 +1 @@
-DIST hunter-3.3.2.tar.gz 535119 BLAKE2B 25551f04d0b2dafa6875c5c5660d2c57417bdc113960ec2b8d224c88a6b9d08b38bfbbb2deb516e7a36704164318137f5675409850c2eeff2c486a819731c756 SHA512 e3b5e7a3729074cf52a7a209e6f54a1319b3e94ff50abe4e6d8f00f3953720e3c2380de066c2a0a4e56c7a348fdd947425ae19c8907bd420d10ffb271bc07516
 DIST hunter-3.3.3.tar.gz 535662 BLAKE2B f2aa247eec34de982ab56430a0517c483609edc72d3d366a725dabf28ff6621a49411dd41a7ae16846960bb22ec4a7dc1cdb2b528a620e9eac9dc26dabec6213 SHA512 661b0f33653a6175f2172e45386c822552464a06129e2f5c8d4b88f6142a4aecc69bd657dc98ef7ffbb3d93cde537aa3a2e5f68bbced6f03b6514d39cfb99df4

diff --git a/dev-python/hunter/hunter-3.3.2.ebuild b/dev-python/hunter/hunter-3.3.2.ebuild
deleted file mode 100644
index 51a71d901..000000000
--- a/dev-python/hunter/hunter-3.3.2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Hunter is a flexible code tracing toolkit"
-HOMEPAGE="
-	https://github.com/ionelmc/python-hunter
-	https://pypi.org/project/hunter
-"
-SRC_URI="https://github.com/ionelmc/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="dev-python/colorama[${PYTHON_USEDEP}]"
-DEPEND="
-	${RDEPEND}
-	test? (
-		dev-python/aspectlib[${PYTHON_USEDEP}]
-		dev-python/manhole[${PYTHON_USEDEP}]
-		dev-python/pytest-benchmark[${PYTHON_USEDEP}]
-		dev-python/process-tests[${PYTHON_USEDEP}]
-	)
-"
-BDEPEND="
-	dev-python/cython[${PYTHON_USEDEP}]
-	>=dev-python/setuptools_scm-3.3.1[${PYTHON_USEDEP}]
-"
-
-S="${WORKDIR}/python-${P}"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs ">=dev-python/sphinx-py3doc-enhanced-theme-2.3.2"
-
-python_prepare_all() {
-	# all tests in this file fail
-	rm tests/test_remote.py || die
-
-	sed 's/setuptools_scm>=3.3.1,!=4.0.0,<6.0/setuptools_scm>=3.3.1/' \
-		-i setup.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_compile() {
-	distutils-r1_python_compile
-
-	if use test; then
-		"${EPYTHON}" tests/setup.py build_ext --force --inplace || die
-	fi
-}
-
-python_test() {
-	local -x PYTHONPATH="${S}/tests:${BUILD_DIR}/lib:${PYTHONPATH}"
-	epytest --ignore=src \
-		--deselect tests/test_integration.py::test_pth_activation \
-		--deselect tests/test_integration.py::test_pth_sample4 \
-		--deselect tests/test_integration.py::test_pth_sample2 \
-		--deselect tests/test_integration.py::test_depth_limit_subprocess[depth_lt=2] \
-		--deselect tests/test_integration.py::test_depth_limit_subprocess[depth_lt=3] \
-		--deselect tests/test_integration.py::test_depth_limit_subprocess[depth_lt=4]
-}

diff --git a/dev-python/hunter/hunter-3.3.3.ebuild b/dev-python/hunter/hunter-3.3.3.ebuild
index 66200e1ea..3e6eef36f 100644
--- a/dev-python/hunter/hunter-3.3.3.ebuild
+++ b/dev-python/hunter/hunter-3.3.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7..9} )
 
 DISTUTILS_USE_SETUPTOOLS=rdepend
 


             reply	other threads:[~2021-05-25 10:37 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-25 10:37 Anna Vyalkova [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-25 13:01 [gentoo-commits] repo/proj/guru:master commit in: dev-python/hunter/ Julien Roy
2024-05-25 12:41 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-04-15  9:26 Julien Roy
2023-05-02 16:54 Anna Vyalkova
2023-04-29  6:23 Anna Vyalkova
2023-04-28 18:20 Anna Vyalkova
2023-04-26 19:46 Anna Vyalkova
2023-03-04 12:06 Anna Vyalkova
2022-11-26 16:41 Anna Vyalkova
2022-11-04 15:06 Anna Vyalkova
2022-11-03  7:37 Anna Vyalkova
2022-09-26 10:05 Andrew Ammerlaan
2022-06-05 10:19 Anna Vyalkova
2022-06-05  7:51 Anna Vyalkova
2022-06-04 13:13 Alessandro Barbieri
2022-03-18  9:49 Alessandro Barbieri
2021-08-14  2:00 Anna Vyalkova
2021-08-14  2:00 Anna Vyalkova
2021-06-28 13:34 Alessandro Barbieri
2021-06-27 23:25 Alessandro Barbieri
2021-06-17 16:01 Alessandro Barbieri
2021-06-14 23:09 Alessandro Barbieri
2021-06-14  2:27 Alessandro Barbieri
2021-05-03 23:33 Anna Vyalkova
2020-12-04  5:54 Theo Anderson
2020-09-24 13:01 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-09-24 12:17 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-06-09 16:37 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-06-09 14:00 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-02 23:04 Alessandro Barbieri
2020-04-01 20:55 Alessandro Barbieri
2020-03-29 13:21 Andrew Ammerlaan
2020-03-29  9:29 Alessandro Barbieri

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1621939054.e11925b21b5bcc849e5d095f93d8fb40d39bf76b.cybertailor@gentoo \
    --to=cyber+gentoo@sysrq.in \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox