diff --git a/devel/py-pydantic-extra-types/Makefile b/devel/py-pydantic-extra-types/Makefile index dc6aac66e39b..5fbd4f706cf6 100644 --- a/devel/py-pydantic-extra-types/Makefile +++ b/devel/py-pydantic-extra-types/Makefile @@ -1,31 +1,32 @@ PORTNAME= pydantic-extra-types -PORTVERSION= 2.1.0 +PORTVERSION= 2.2.0 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= pydantic_extra_types-${PORTVERSION} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extra Pydantic types -WWW= https://docs.pydantic.dev/dev-v2/usage/types/types/ \ +WWW= https://docs.pydantic.dev/latest/concepts/types/ \ https://github.com/pydantic/pydantic-extra-types LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>=0:devel/py-hatchling@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pydantic2>=2.0.3:devel/py-pydantic2@${PY_FLAVOR} USES= python USE_PYTHON= autoplist concurrent pep517 NO_ARCH= yes OPTIONS_DEFINE= ALL OPTIONS_DEFAULT=ALL ALL_DESC= Country codes and phone number support ALL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}phonenumbers>=8<9:devel/py-phonenumbers@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pycountry>=22<23:textproc/py-pycountry@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-ulid>=1:textproc/py-python-ulid@${PY_FLAVOR} .include diff --git a/devel/py-pydantic-extra-types/distinfo b/devel/py-pydantic-extra-types/distinfo index 7947178b7e3e..c6d037b48106 100644 --- a/devel/py-pydantic-extra-types/distinfo +++ b/devel/py-pydantic-extra-types/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693056825 -SHA256 (pydantic_extra_types-2.1.0.tar.gz) = d07b869e733d33712b07d6b8cd7b0223077c23ae5a1e23bd0699a00401259ec7 -SIZE (pydantic_extra_types-2.1.0.tar.gz) = 27894 +TIMESTAMP = 1702543672 +SHA256 (pydantic_extra_types-2.2.0.tar.gz) = 7f2fdd5251729745983cf8cdc5e431ffee2362f283fff54f68122625cef82c11 +SIZE (pydantic_extra_types-2.2.0.tar.gz) = 24517 diff --git a/devel/py-pydantic-extra-types/files/patch-pyproject.toml b/devel/py-pydantic-extra-types/files/patch-pyproject.toml new file mode 100644 index 000000000000..c7fd6451afcd --- /dev/null +++ b/devel/py-pydantic-extra-types/files/patch-pyproject.toml @@ -0,0 +1,11 @@ +--- pyproject.toml.orig 2020-02-02 00:00:00 UTC ++++ pyproject.toml +@@ -47,7 +47,7 @@ dynamic = ['version'] + all = [ + 'phonenumbers>=8,<9', + 'pycountry>=22,<23', +- 'python-ulid>=1,<2', ++ 'python-ulid>=1', + ] + + [project.urls]