Date: Fri, 29 Jul 2016 12:09:19 +0000 (UTC) From: Ruslan Makhmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419241 - in head/devel: . py-typing Message-ID: <201607291209.u6TC9Jpj067001@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rm Date: Fri Jul 29 12:09:19 2016 New Revision: 419241 URL: https://svnweb.freebsd.org/changeset/ports/419241 Log: This is a backport of the standard library typing module to Python versions older than 3.5. Typing defines a standard notation for Python function and variable type annotations. The notation can be used for documenting code in a concise, standard format, and it has been designed to also be used by static and runtime type checkers, static analyzers, IDEs and other tools. WWW: https://pypi.python.org/pypi/typing Added: head/devel/py-typing/ head/devel/py-typing/Makefile (contents, props changed) head/devel/py-typing/distinfo (contents, props changed) head/devel/py-typing/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 29 12:07:09 2016 (r419240) +++ head/devel/Makefile Fri Jul 29 12:09:19 2016 (r419241) @@ -4510,6 +4510,7 @@ SUBDIR += py-twistedFlow SUBDIR += py-twistedRunner SUBDIR += py-txaio + SUBDIR += py-typing SUBDIR += py-tzlocal SUBDIR += py-ua_parser SUBDIR += py-ujson Added: head/devel/py-typing/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-typing/Makefile Fri Jul 29 12:09:19 2016 (r419241) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= typing +PORTVERSION= 3.5.2.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Type Hints for Python + +LICENSE= PSFL +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USES= python:-3.4 +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/devel/py-typing/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-typing/distinfo Fri Jul 29 12:09:19 2016 (r419241) @@ -0,0 +1,3 @@ +TIMESTAMP = 1469629456 +SHA256 (typing-3.5.2.2.tar.gz) = 2bce34292653af712963c877f3085250a336738e64f99048d1b8509bebc4772f +SIZE (typing-3.5.2.2.tar.gz) = 51101 Added: head/devel/py-typing/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-typing/pkg-descr Fri Jul 29 12:09:19 2016 (r419241) @@ -0,0 +1,8 @@ +This is a backport of the standard library typing module to Python +versions older than 3.5. +Typing defines a standard notation for Python function and variable type +annotations. The notation can be used for documenting code in a concise, +standard format, and it has been designed to also be used by static and +runtime type checkers, static analyzers, IDEs and other tools. + +WWW: https://pypi.python.org/pypi/typing
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607291209.u6TC9Jpj067001>