repo/gentoo:master commit in: dev-python/python-discovery/

Michał Górny <[email protected]>
Newsgroups gmane.linux.gentoo.cvs
Message-ID <1786588325.2ccbd4cd05cc595cc41bf3867f2861693e854c45.mgorny@gentoo>
commit:     2ccbd4cd05cc595cc41bf3867f2861693e854c45
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 13 02:15:03 2026 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Aug 13 02:32:05 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ccbd4cd

dev-python/python-discovery: Bump to 1.5.2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/python-discovery/Manifest               |  2 +
 .../python-discovery/python-discovery-1.5.2.ebuild | 53 ++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/python-discovery/Manifest b/dev-python/python-discovery/Manifest
index c532ed8796b8..c33d1946812d 100644
--- a/dev-python/python-discovery/Manifest
+++ b/dev-python/python-discovery/Manifest
@@ -2,3 +2,5 @@ DIST python_discovery-1.4.4.tar.gz 72212 BLAKE2B e272217c9b5975aceb21d368b0b5486
 DIST python_discovery-1.4.4.tar.gz.provenance 9887 BLAKE2B e52e59f1064d2e9763d2db64c501950a42625db2bd77f225843a71ce0eb676aa33a9727503bc1e95c73e79d37ddfceb30ff3a0e7db0c342d0f4623efa4253f33 SHA512 c02e940e81bfcde654cbf2aa273d91c1d50ef312c25c35a13c979025156ad9963b969f09bbe0854953f3bd326ae51ddc6ad6a3dbcdbaf781db1241e2010ab89f
 DIST python_discovery-1.5.1.tar.gz 77200 BLAKE2B aa9d33adf86a4c17ee0159672886e63a1932fa75339e00c402e011236879bcf13566b1a66a9043a5b5be0879ca6c314409090217ba6fed2c15425bbba52edb89 SHA512 256d6ddef34daca99049c83d3b9344067da347b3169b8f7147f88cca3d079bf0af954aec4dccc2b186e70c070a30afa637bd2586dd1a37bad23465d111e5c015
 DIST python_discovery-1.5.1.tar.gz.provenance 9797 BLAKE2B c4ac51be4b7d54ab6d9ff2edc9c6fed685c73a25617accf1d98e2186f372a2dd7c0986a379fd383375d34c3c08e724ea266d18ef8c232298eab2d9be185d90ca SHA512 20cbc11b7b5b17c0bb324978f72b1928897eaccc07d70af9ab04fb188d96a6cee6a610b9cddec406a048c26c4536deaadcd86123e4c0dc0ba2b9a8da78621a47
+DIST python_discovery-1.5.2.tar.gz 82350 BLAKE2B aa3ddaa2c3a106d716293ce17cd6154bc67d5939a753b0df02ba58ad42693da390602d0c31dd8dc5b869ece262830b1d488cc04955cbfa67c6a2ecd39763980a SHA512 0499cf929ec915cb7bc765e4b3e865e9104b4eac1435e81d625c0314a22a3730293b34409375ef2c86d67ac8db9cd4e2b983374be4fdcc173b824a04b0f255c5
+DIST python_discovery-1.5.2.tar.gz.provenance 9795 BLAKE2B e167de9efa79fe757acd272e39f4926fa88983d2fce914127e506ed62e18b1ccab73cd5f42c85223b8e6f9ea11afcfce113e32fc767ed401fa8d67570703aa10 SHA512 f2f4db7d6306d34984c957af585bdd9f2f2bdd398cfdf966b783391f283fd9c2267ead5a5a4d03a2142d15c35a0a83cc9de526d5698e8548bbac5fbc80a75418

diff --git a/dev-python/python-discovery/python-discovery-1.5.2.ebuild b/dev-python/python-discovery/python-discovery-1.5.2.ebuild
new file mode 100644
index 000000000000..280316a32122
--- /dev/null
+++ b/dev-python/python-discovery/python-discovery-1.5.2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYPI_VERIFY_REPO=https://github.com/tox-dev/python-discovery
+PYTHON_COMPAT=( python3_{12..15} python3_{14..15}t )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python interpreter discovery"
+HOMEPAGE="
+	https://github.com/tox-dev/python-discovery/
+	https://pypi.org/project/python-discovery/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+	>=dev-python/filelock-3.15.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	dev-python/hatch-vcs[${PYTHON_USEDEP}]
+	test? (
+		>=dev-python/setuptools-75.1[${PYTHON_USEDEP}]
+	)
+"
+
+EPYTEST_PLUGINS=( pytest-mock )
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+python_test() {
+	local EPYTEST_IGNORE=(
+		# TODO: package vermin?
+		tests/test_py_info_collect.py
+	)
+	local EPYTEST_DESELECT=()
+
+	case ${EPYTHON} in
+		python3.*t)
+			EPYTEST_DESELECT+=(
+				# TODO
+				tests/test_py_info_extra.py::test_satisfies_path_not_abs_basename_match
+			)
+			;;
+	esac
+
+	epytest
+}
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.