Resurrect py-typing to unbreak bulk -a

This commit is contained in:
Antoine Brodin 2021-01-03 08:46:19 +00:00
parent 7c9571be46
commit 372b15d95a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=559996
5 changed files with 35 additions and 1 deletions

1
MOVED
View File

@ -16011,5 +16011,4 @@ devel/py-backports.functools_lru_cache||2020-01-02|Uses Python 2.7 which is EOLe
devel/py-backports_abc||2020-01-02|Uses Python 2.7 which is EOLed upstream
devel/py-futures||2020-01-02|Uses Python 2.7 which is EOLed upstream
devel/py-singledispatch||2020-01-02|Uses Python 2.7 which is EOLed upstream
devel/py-typing||2020-01-02|Python 2 only, backport of Python 3
graphics/py-pillow6|graphics/pillow|2020-01-02|Uses Python 2.7 which is EOLed upstream

View File

@ -5125,6 +5125,7 @@
SUBDIR += py-txaio
SUBDIR += py-typechecks
SUBDIR += py-typed-ast
SUBDIR += py-typing
SUBDIR += py-typing-extensions
SUBDIR += py-typing-inspect
SUBDIR += py-tzlocal

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

@ -0,0 +1,23 @@
# $FreeBSD$
PORTNAME= typing
PORTVERSION= 3.7.4.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= rm@FreeBSD.org
COMMENT= Type Hints for Python
LICENSE= PSFL
LICENSE_FILE= ${WRKSRC}/LICENSE
DEPRECATED= Python 2 only, backport of Python 3
EXPIRATION_DATE= 2020-12-31
USES= python:2.7
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>

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

@ -0,0 +1,3 @@
TIMESTAMP = 1582223012
SHA256 (typing-3.7.4.1.tar.gz) = 91dfe6f3f706ee8cc32d38edbbf304e9b7583fb37108fef38229617f8b3eba23
SIZE (typing-3.7.4.1.tar.gz) = 77982

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.org/project/typing/