svn commit: r508107 - head/devel/py-mypy
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sun Aug 4 16:10:37 UTC 2019
Author: sunpoet
Date: Sun Aug 4 16:10:36 2019
New Revision: 508107
URL: https://svnweb.freebsd.org/changeset/ports/508107
Log:
Sort RUN_DEPENDS
- Update pkg-descr
Modified:
head/devel/py-mypy/Makefile
head/devel/py-mypy/pkg-descr
Modified: head/devel/py-mypy/Makefile
==============================================================================
--- head/devel/py-mypy/Makefile Sun Aug 4 16:10:31 2019 (r508106)
+++ head/devel/py-mypy/Makefile Sun Aug 4 16:10:36 2019 (r508107)
@@ -13,9 +13,9 @@ 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
Modified: head/devel/py-mypy/pkg-descr
==============================================================================
--- head/devel/py-mypy/pkg-descr Sun Aug 4 16:10:31 2019 (r508106)
+++ head/devel/py-mypy/pkg-descr Sun Aug 4 16:10:36 2019 (r508107)
@@ -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/
More information about the svn-ports-head
mailing list