diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2022-02-27 08:31:16 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2022-02-27 08:31:16 +0000 |
commit | f703d911d13c1f8142d12473a77a747a1c872407 (patch) | |
tree | 3bcb6ff9be24760c8625fc74ef026881ab984f9e | |
parent | dac92f096fee1e2e1c4821f64afe89c1805b6b3f (diff) |
devel/py-meliae: remove python flavor restriction
- Remove python flavor restriciton
- Set an expiration date
- Fix brokenness condition
PR: 261703
-rw-r--r-- | devel/py-meliae/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/py-meliae/Makefile b/devel/py-meliae/Makefile index 5285f4391221..29b1c2f6ff6a 100644 --- a/devel/py-meliae/Makefile +++ b/devel/py-meliae/Makefile @@ -12,16 +12,17 @@ LICENSE= GPLv3 DEPRECATED= does not build against Python-3.9 # See https://bugs.launchpad.net/meliae/+bug/1899379 +EXPIRATION_DATE= 2022-05-27 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} -USES= python:3.6-3.8 +USES= python USE_PYTHON= distutils autoplist cython TEST_TARGET= check # test fails .include <bsd.port.pre.mk> -.if ${PYTHON_VER} == 3.9 +.if ${PYTHON_REL} >= 30900 BROKEN= build error: PyGC_HEAD is private in Python 3.9 .endif |