diff --git a/dev-python/pythonfinder/Manifest b/dev-python/pythonfinder/Manifest new file mode 100644 index 0000000000000..6c59aafc12895 --- /dev/null +++ b/dev-python/pythonfinder/Manifest @@ -0,0 +1 @@ +DIST pythonfinder-2.0.5.tar.gz 718776 BLAKE2B 32a49dbff143042554d5328b61b612e3bde7a870d53a229303b6bdd2c2ce76457bf6aadcdb215efa332407003c1319215292f3278a2808b669b5b7819af08902 SHA512 4d205c66d7ae36f4f2b8ddab9cce00f4efd5548a41d251470a515b88f8be2dcede75372b9301223822031ae663c6ccf77156531b0dd5d8972424f90641255c5b diff --git a/dev-python/pythonfinder/files/2.0.5-fix-import-cached-property.patch b/dev-python/pythonfinder/files/2.0.5-fix-import-cached-property.patch new file mode 100644 index 0000000000000..ce1af3244fbd6 --- /dev/null +++ b/dev-python/pythonfinder/files/2.0.5-fix-import-cached-property.patch @@ -0,0 +1,13 @@ +diff --git a/src/pythonfinder/models/path.py b/src/pythonfinder/models/path.py +index a8fb807..a933a91 100644 +--- a/src/pythonfinder/models/path.py ++++ b/src/pythonfinder/models/path.py +@@ -19,7 +19,7 @@ from typing import ( + Union, + ) + +-from cached_property import cached_property ++from functools import cached_property + from pydantic import Field, root_validator + + from ..environment import ( diff --git a/dev-python/pythonfinder/metadata.xml b/dev-python/pythonfinder/metadata.xml new file mode 100644 index 0000000000000..a9367d2f4b856 --- /dev/null +++ b/dev-python/pythonfinder/metadata.xml @@ -0,0 +1,17 @@ + + + + + oz.tiram@gmail.com + Oz Tiram + + + proxy-maint@gentoo.org + Proxy Maintainers + + + + sarugaku/pythonfinder + pythonfinder + + diff --git a/dev-python/pythonfinder/pythonfinder-2.0.5.ebuild b/dev-python/pythonfinder/pythonfinder-2.0.5.ebuild new file mode 100644 index 0000000000000..9c74fb3a81be2 --- /dev/null +++ b/dev-python/pythonfinder/pythonfinder-2.0.5.ebuild @@ -0,0 +1,29 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="PythonFinder: Cross Platform Search Tool for Finding Pythons" +HOMEPAGE=" + https://github.com/sarugaku/pythonfinder + https://pypi.org/project/pythonfinder/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +PATCHES=( + "${FILESDIR}/2.0.5-fix-import-cached-property.patch" +) + +RDEPEND=" +