Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Aug 2019 16:10:36 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r508107 - head/devel/py-mypy
Message-ID:  <201908041610.x74GAavQ076960@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908041610.x74GAavQ076960>