Resurrect py-typing to unbreak bulk -a
This commit is contained in:
parent
7c9571be46
commit
372b15d95a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=559996
1
MOVED
1
MOVED
@ -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
|
||||
|
@ -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
23
devel/py-typing/Makefile
Normal 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
3
devel/py-typing/distinfo
Normal 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
|
8
devel/py-typing/pkg-descr
Normal file
8
devel/py-typing/pkg-descr
Normal 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/
|
Loading…
Reference in New Issue
Block a user