Index: head/devel/py-mypy/Makefile =================================================================== --- head/devel/py-mypy/Makefile (revision 508106) +++ head/devel/py-mypy/Makefile (revision 508107) @@ -1,31 +1,31 @@ # Created by: Florian Limberger # $FreeBSD$ PORTNAME= mypy PORTVERSION= 0.720 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Optional static typing for Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}typed-ast>=1.4.0<1.5.0:devel/py-typed-ast@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mypy_extensions>=0.4.0<0.5.0:devel/py-mypy_extensions@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}psutil>=4.0:sysutils/py-psutil@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mypy_extensions>=0.4.0<0.5.0:devel/py-mypy_extensions@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}typed-ast>=1.4.0<1.5.0:devel/py-typed-ast@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.7.4:devel/py-typing-extensions@${PY_FLAVOR} USES= python:3.5+ shebangfix USE_PYTHON= autoplist distutils NO_ARCH= yes SHEBANG_FILES= mypy/typeshed/tests/*.py do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Index: head/devel/py-mypy/pkg-descr =================================================================== --- head/devel/py-mypy/pkg-descr (revision 508106) +++ head/devel/py-mypy/pkg-descr (revision 508107) @@ -1,6 +1,7 @@ -Mypy is an optional static type checker for Python. You can add type hints to -your Python programs using the standard for type annotations introduced in -Python 3.5 (PEP 484), and use mypy to type check them statically. Find bugs in -your programs without even running them! +Mypy is an optional static type checker for Python that aims to combine the +benefits of dynamic (or "duck") typing and static typing. Mypy combines the +expressive power and convenience of Python with a powerful type system and +compile-time type checking. Mypy type checks standard Python programs; run them +using any Python VM with basically no runtime overhead. WWW: http://www.mypy-lang.org/