commit: 263602cf4bcce73ca6b0b02aa3ba4904274f9fd0 Author: Oz Tiram <oz.tiram <AT> gmail <DOT> com> AuthorDate: Sun Sep 24 07:46:51 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Oct 27 03:23:49 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=263602cf
dev-python/pythonfinder: new package, add 2.0.5 Bug: https://bugs.gentoo.org/717666 Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> dev-python/pythonfinder/Manifest | 1 + .../files/2.0.5-fix-import-cached-property.patch | 13 ++++++++++ dev-python/pythonfinder/metadata.xml | 17 +++++++++++++ dev-python/pythonfinder/pythonfinder-2.0.5.ebuild | 29 ++++++++++++++++++++++ 4 files changed, 60 insertions(+) diff --git a/dev-python/pythonfinder/Manifest b/dev-python/pythonfinder/Manifest new file mode 100644 index 000000000000..6c59aafc1289 --- /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 000000000000..ce1af3244fbd --- /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 000000000000..a9367d2f4b85 --- /dev/null +++ b/dev-python/pythonfinder/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person" proxied="yes"> + <email>[email protected]</email> + <name>Oz Tiram</name> + </maintainer> + <maintainer type="project" proxied="proxy"> + <email>[email protected]</email> + <name>Proxy Maintainers</name> + </maintainer> + <stabilize-allarches/> + <upstream> + <remote-id type="github">sarugaku/pythonfinder</remote-id> + <remote-id type="pypi">pythonfinder</remote-id> + </upstream> +</pkgmetadata> 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 000000000000..9c74fb3a81be --- /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=" + <dev-python/pydantic-2[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest
