diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-05-13 19:36:59 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-05-13 19:40:15 +0800 |
commit | a77aa07538746c01fe0da7e4921f60cde2e1428c (patch) | |
tree | 25b45bcf63abc5ba24657a07a89479a9a7915d02 | |
parent | net/py-ifaddr: Add NO_ARCH (diff) |
textproc/lookatme: Change RUN_DEPENDS from py-mistune to py-mistune0
- While I'm here, update version requirement of RUN_DEPENDS
- Bump PORTREVISION for dependency change
This port is not ready for mistune 2.0.0+ which has different API.
Reference: https://github.com/d0c-s4vage/lookatme/blob/v2.3.2/requirements.txt#L4
-rw-r--r-- | textproc/lookatme/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/lookatme/Makefile b/textproc/lookatme/Makefile index ea727876287b..61981d21f29d 100644 --- a/textproc/lookatme/Makefile +++ b/textproc/lookatme/Makefile @@ -1,6 +1,6 @@ PORTNAME= lookatme PORTVERSION= 2.3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}marshmallow>=0:devel/py-marshmallow@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}click>=0:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mistune>=0:textproc/py-mistune@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mistune0>=0.8<1:textproc/py-mistune0@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}urwid>=0:devel/py-urwid@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-mock>=0:devel/py-pytest-mock@${PY_FLAVOR} \ |