Date: Tue, 31 Dec 2024 16:02:23 GMT From: Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 3020a15f15f7 - main - security/py-httpx-auth: Allow build with py-httpx 0.28.0+ Message-ID: <202412311602.4BVG2NTg093281@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=3020a15f15f74195935268dff444b1a51b4e6970 commit 3020a15f15f74195935268dff444b1a51b4e6970 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2024-12-31 15:50:15 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2024-12-31 15:50:15 +0000 security/py-httpx-auth: Allow build with py-httpx 0.28.0+ - Bump PORTREVISION for package change --- security/py-httpx-auth/Makefile | 3 ++- security/py-httpx-auth/files/patch-pyproject.toml | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/security/py-httpx-auth/Makefile b/security/py-httpx-auth/Makefile index 033960c3159d..3afe679819be 100644 --- a/security/py-httpx-auth/Makefile +++ b/security/py-httpx-auth/Makefile @@ -1,5 +1,6 @@ PORTNAME= httpx-auth PORTVERSION= 0.22.0 +PORTREVISION= 1 CATEGORIES= security python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}setuptools-scm>=0:devel/py-setuptools-scm@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httpx>=0.27.0<0.28:www/py-httpx@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httpx>=0.27.0:www/py-httpx@${PY_FLAVOR} USES= python:3.9+ USE_PYTHON= autoplist concurrent pep517 diff --git a/security/py-httpx-auth/files/patch-pyproject.toml b/security/py-httpx-auth/files/patch-pyproject.toml new file mode 100644 index 000000000000..025fcacd3db8 --- /dev/null +++ b/security/py-httpx-auth/files/patch-pyproject.toml @@ -0,0 +1,18 @@ +--- pyproject.toml.orig 2024-03-02 12:09:14 UTC ++++ pyproject.toml +@@ -30,7 +30,7 @@ dependencies = [ + "Topic :: Software Development :: Build Tools", + ] + dependencies = [ +- "httpx==0.27.*", ++ "httpx>=0.27", + ] + dynamic = ["version"] + +@@ -63,4 +63,4 @@ filterwarnings = [ + [tool.pytest.ini_options] + filterwarnings = [ + "error", +-] +\ No newline at end of file ++]
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202412311602.4BVG2NTg093281>