1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-25 09:34:11 +00:00

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
This commit is contained in:
Ruslan Makhmatkhanov 2016-07-29 12:09:19 +00:00
parent 9b0c773489
commit f700fcc2f7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=419241
4 changed files with 31 additions and 0 deletions

View File

@ -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

19
devel/py-typing/Makefile Normal file
View File

@ -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>

3
devel/py-typing/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1469629456
SHA256 (typing-3.5.2.2.tar.gz) = 2bce34292653af712963c877f3085250a336738e64f99048d1b8509bebc4772f
SIZE (typing-3.5.2.2.tar.gz) = 51101

View File

@ -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