diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-02-03 15:39:46 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-02-03 15:54:29 +0000 |
commit | e9f9830bd993eeadd51d02ad67404d55de1eb963 (patch) | |
tree | b89d24a0ea350b6c5ec83f7d193830f36074c24b | |
parent | 209080ebc410ba3396572d2e78cd1152f6e3985f (diff) |
devel/py-anytree: Fix build with py-poetry-core 2.0.0+
- Bump PORTREVISION for package change
Approved by: portmgr (blanket)
With hat: python
-rw-r--r-- | devel/py-anytree/Makefile | 1 | ||||
-rw-r--r-- | devel/py-anytree/files/patch-pyproject.toml | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/devel/py-anytree/Makefile b/devel/py-anytree/Makefile index ced3300b8a2c..439f8030cfaf 100644 --- a/devel/py-anytree/Makefile +++ b/devel/py-anytree/Makefile @@ -1,5 +1,6 @@ PORTNAME= anytree DISTVERSION= 2.12.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-anytree/files/patch-pyproject.toml b/devel/py-anytree/files/patch-pyproject.toml new file mode 100644 index 000000000000..9021e4fb2ef4 --- /dev/null +++ b/devel/py-anytree/files/patch-pyproject.toml @@ -0,0 +1,21 @@ +--- pyproject.toml.orig 2023-11-16 21:52:39 UTC ++++ pyproject.toml +@@ -1,9 +1,9 @@ +-[tool.poetry] ++[project] + name = "anytree" + version = "2.12.1" + description = "Powerful and Lightweight Python Tree Data Structure with various plugins" + authors = [ +- "c0fec0de <c0fec0de@gmail.com>" ++ {name = "c0fec0de", email = "<c0fec0de@gmail.com>"} + ] + readme = "README.rst" + license = "Apache-2.0" +@@ -117,4 +117,4 @@ commands = + poetry run coverage xml + poetry run pylint anytree + poetry run make html -C docs +-""" +\ No newline at end of file ++""" |