git: c2ca1ebfd263 - main - devel/py-jaraco.context: Convert to USE_PYTHON=pep517
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 21 Mar 2023 19:27:34 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=c2ca1ebfd2636f0a95e0ce5a16dbd7817b857496
commit c2ca1ebfd2636f0a95e0ce5a16dbd7817b857496
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-03-21 18:44:11 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-03-21 19:20:43 +0000
devel/py-jaraco.context: Convert to USE_PYTHON=pep517
- Bump PORTREVISION for dependency and package change
---
devel/py-jaraco.context/Makefile | 9 +++++----
devel/py-jaraco.context/files/setup.py | 3 ---
2 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/devel/py-jaraco.context/Makefile b/devel/py-jaraco.context/Makefile
index b59e59f2a166..18d59d74cc38 100644
--- a/devel/py-jaraco.context/Makefile
+++ b/devel/py-jaraco.context/Makefile
@@ -1,5 +1,6 @@
PORTNAME= jaraco.context
PORTVERSION= 4.3.0
+PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -11,6 +12,9 @@ WWW= https://github.com/jaraco/jaraco.context
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=56:devel/py-setuptools@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=3.4.1:devel/py-setuptools_scm@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}jaraco>=0:devel/py-jaraco@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-black>=0.3.7:devel/py-pytest-black@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR} \
@@ -19,15 +23,12 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-black>=0.3.7:devel/py-pytest-black@$
${PYTHON_PKGNAMEPREFIX}pytest-mypy>=0:devel/py-pytest-mypy@${PY_FLAVOR}
USES= python:3.7+
-USE_PYTHON= autoplist concurrent distutils pytest
+USE_PYTHON= autoplist concurrent pep517 pytest
NO_ARCH= yes
POST_PLIST= trim-jaraco-namespace
-post-patch:
- @${CP} ${FILESDIR}/setup.py ${WRKSRC}/
-
post-install:
@${RM} ${STAGEDIR}${PYTHON_SITELIBDIR}/jaraco/__init__.py*
-@${RM} ${STAGEDIR}${PYTHON_SITELIBDIR}/jaraco/__pycache__/__init__.*
diff --git a/devel/py-jaraco.context/files/setup.py b/devel/py-jaraco.context/files/setup.py
deleted file mode 100644
index 606849326a40..000000000000
--- a/devel/py-jaraco.context/files/setup.py
+++ /dev/null
@@ -1,3 +0,0 @@
-from setuptools import setup
-
-setup()