summaryrefslogtreecommitdiff
path: root/dev-python/pythonfinder
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-11-14 20:09:33 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-11-14 20:09:33 +0000
commit4db289840b05ba8cca4d3bced900ad5c16f196be (patch)
treef85b093ce0106c494a9dedec4302e2b808ad0387 /dev-python/pythonfinder
parent8c9139c9de4e595fc53890c6126dac67eaf609d5 (diff)
downloadbaldeagleos-repo-4db289840b05ba8cca4d3bced900ad5c16f196be.tar.gz
baldeagleos-repo-4db289840b05ba8cca4d3bced900ad5c16f196be.tar.xz
baldeagleos-repo-4db289840b05ba8cca4d3bced900ad5c16f196be.zip
Adding metadata
Diffstat (limited to 'dev-python/pythonfinder')
-rw-r--r--dev-python/pythonfinder/Manifest1
-rw-r--r--dev-python/pythonfinder/files/pythonfinder-2.0.6-pydantic-2.patch38
-rw-r--r--dev-python/pythonfinder/pythonfinder-2.0.6.ebuild35
3 files changed, 74 insertions, 0 deletions
diff --git a/dev-python/pythonfinder/Manifest b/dev-python/pythonfinder/Manifest
index 6c59aafc1289..d57d6a8849bd 100644
--- a/dev-python/pythonfinder/Manifest
+++ b/dev-python/pythonfinder/Manifest
@@ -1 +1,2 @@
DIST pythonfinder-2.0.5.tar.gz 718776 BLAKE2B 32a49dbff143042554d5328b61b612e3bde7a870d53a229303b6bdd2c2ce76457bf6aadcdb215efa332407003c1319215292f3278a2808b669b5b7819af08902 SHA512 4d205c66d7ae36f4f2b8ddab9cce00f4efd5548a41d251470a515b88f8be2dcede75372b9301223822031ae663c6ccf77156531b0dd5d8972424f90641255c5b
+DIST pythonfinder-2.0.6.tar.gz 718821 BLAKE2B bc45c8ebffd4b8a21084c3b5f4d9cba71383613e6b25ec01ba53b0abf5d01cf78d1636b19c6c32f80eec401c56c25eedded793fabc46e2bbd389074a45ae14f5 SHA512 2aad884101d1a9fc1340fb63b11811aa7bd1c1f6d2945f9d133bb473099c7e11da21a4348ca742cae03a23fc8b12b85dcae4e9b3a2d29ec98530b6d8d2567d1c
diff --git a/dev-python/pythonfinder/files/pythonfinder-2.0.6-pydantic-2.patch b/dev-python/pythonfinder/files/pythonfinder-2.0.6-pydantic-2.patch
new file mode 100644
index 000000000000..6b3840361bed
--- /dev/null
+++ b/dev-python/pythonfinder/files/pythonfinder-2.0.6-pydantic-2.patch
@@ -0,0 +1,38 @@
+diff --git a/pyproject.toml b/pyproject.toml
+index 73a3c85..27c9a7e 100644
+--- a/pyproject.toml
++++ b/pyproject.toml
+@@ -39 +39 @@ dependencies = [
+- "pydantic>=1.10.7,<2",
++ "pydantic>=2",
+@@ -140 +140 @@ runtime-evaluated-base-classes = [
+- "pydantic.BaseModel",
++ "pydantic.v1.BaseModel",
+diff --git a/src/pythonfinder/models/common.py b/src/pythonfinder/models/common.py
+index 4c439c9..0ef3d77 100644
+--- a/src/pythonfinder/models/common.py
++++ b/src/pythonfinder/models/common.py
+@@ -3 +3 @@ from __future__ import annotations
+-from pydantic import BaseModel, Extra
++from pydantic.v1 import BaseModel, Extra
+diff --git a/src/pythonfinder/models/mixins.py b/src/pythonfinder/models/mixins.py
+index 58ce99a..e68020f 100644
+--- a/src/pythonfinder/models/mixins.py
++++ b/src/pythonfinder/models/mixins.py
+@@ -15 +15 @@ from typing import (
+-from pydantic import BaseModel, Field, validator
++from pydantic.v1 import BaseModel, Field, validator
+diff --git a/src/pythonfinder/models/path.py b/src/pythonfinder/models/path.py
+index fe98054..beb88be 100644
+--- a/src/pythonfinder/models/path.py
++++ b/src/pythonfinder/models/path.py
+@@ -26 +26 @@ else:
+-from pydantic import Field, root_validator
++from pydantic.v1 import Field, root_validator
+diff --git a/src/pythonfinder/models/python.py b/src/pythonfinder/models/python.py
+index c5e0345..32c82a8 100644
+--- a/src/pythonfinder/models/python.py
++++ b/src/pythonfinder/models/python.py
+@@ -22 +22 @@ from packaging.version import Version
+-from pydantic import Field, validator
++from pydantic.v1 import Field, validator
diff --git a/dev-python/pythonfinder/pythonfinder-2.0.6.ebuild b/dev-python/pythonfinder/pythonfinder-2.0.6.ebuild
new file mode 100644
index 000000000000..68ff1baa8f8a
--- /dev/null
+++ b/dev-python/pythonfinder/pythonfinder-2.0.6.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8,9,10,11,12} pypy3 )
+
+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"
+
+RDEPEND="
+ >=dev-python/pydantic-2[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+ # based on the patch from Arch
+ # https://gitlab.archlinux.org/archlinux/packaging/packages/python-pythonfinder/-/blob/main/python-pythonfinder-2.0.5-pydantic2.patch
+ "${FILESDIR}"/pythonfinder-2.0.6-pydantic-2.patch
+)
+
+python_test() {
+ epytest -o addopts=
+}