Date: Wed, 14 Jul 2021 16:17:16 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: 2928c0831f58 - main - devel/py-copier: Fix build with py-packaging 21.0 Message-ID: <202107141617.16EGHGu2009266@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=2928c0831f588ae829b7d97c20f7803d24f61f77 commit 2928c0831f588ae829b7d97c20f7803d24f61f77 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2021-07-14 15:52:23 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2021-07-14 16:09:54 +0000 devel/py-copier: Fix build with py-packaging 21.0 - Bump PORTREVISION for package change --- devel/py-copier/Makefile | 3 ++- devel/py-copier/files/patch-setup.py | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/devel/py-copier/Makefile b/devel/py-copier/Makefile index 2c8bea0e75a1..3054e4961c79 100644 --- a/devel/py-copier/Makefile +++ b/devel/py-copier/Makefile @@ -2,6 +2,7 @@ PORTNAME= copier PORTVERSION= 5.1.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}colorama>=0.4.3<0.5.0:devel/py-colorama@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.11.2<3.0.0:devel/py-Jinja2@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}packaging>=20.4<21.0:devel/py-packaging@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}packaging>=20.4:devel/py-packaging@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pathspec>=0.8.0<0.9.0:devel/py-pathspec@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}plumbum>=1.6.9<2.0.0:sysutils/py-plumbum@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pydantic>=1.5.1<2.0.0:devel/py-pydantic@${PY_FLAVOR} \ diff --git a/devel/py-copier/files/patch-setup.py b/devel/py-copier/files/patch-setup.py new file mode 100644 index 000000000000..c3437af90b34 --- /dev/null +++ b/devel/py-copier/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2020-08-17 07:46:54 UTC ++++ setup.py +@@ -10,7 +10,7 @@ package_data = \ + install_requires = \ + ['colorama>=0.4.3,<0.5.0', + 'jinja2>=2.11.2,<3.0.0', +- 'packaging>=20.4,<21.0', ++ 'packaging>=20.4', + 'pathspec>=0.8.0,<0.9.0', + 'plumbum>=1.6.9,<2.0.0', + 'pydantic>=1.5.1,<2.0.0',
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107141617.16EGHGu2009266>