git: b4ce004bbe13 - main - math/py-mathics-scanner: add mising dependency on py-yaml
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 07 Apr 2022 19:00:56 UTC
The branch main has been updated by amdmi3: URL: https://cgit.FreeBSD.org/ports/commit/?id=b4ce004bbe13129ad248c11d2aef16c6e42e361c commit b4ce004bbe13129ad248c11d2aef16c6e42e361c Author: Dmitry Marakasov <amdmi3@FreeBSD.org> AuthorDate: 2022-04-07 18:49:40 +0000 Commit: Dmitry Marakasov <amdmi3@FreeBSD.org> CommitDate: 2022-04-07 18:59:37 +0000 math/py-mathics-scanner: add mising dependency on py-yaml For some reason it's not documented anywhere, though yaml is imported from two modules files. This change fixes tests as well. Approved by: portmgr blanket --- math/py-mathics-scanner/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/math/py-mathics-scanner/Makefile b/math/py-mathics-scanner/Makefile index 334ffda4b884..4b2a942070bc 100644 --- a/math/py-mathics-scanner/Makefile +++ b/math/py-mathics-scanner/Makefile @@ -16,7 +16,8 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ujson>0:devel/py-ujson@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}chardet>0:textproc/py-chardet@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ujson>0:devel/py-ujson@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}chardet>0:textproc/py-chardet@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}chardet>0:textproc/py-chardet@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} TEST_DEPENDS= gmake:devel/gmake \ ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}