svn commit: r522087 - in head/devel: . py-typing-inspect

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Jan 5 04:07:10 UTC 2020


Author: sunpoet
Date: Sun Jan  5 04:07:05 2020
New Revision: 522087
URL: https://svnweb.freebsd.org/changeset/ports/522087

Log:
  Add py-typing-inspect 0.5.0
  
  The typing_inspect module defines experimental API for runtime inspection of
  types defined in the Python standard typing module. Works with typing version
  3.7.4 and later.
  
  WWW: https://github.com/ilevkivskyi/typing_inspect

Added:
  head/devel/py-typing-inspect/
  head/devel/py-typing-inspect/Makefile   (contents, props changed)
  head/devel/py-typing-inspect/distinfo   (contents, props changed)
  head/devel/py-typing-inspect/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jan  5 04:07:04 2020	(r522086)
+++ head/devel/Makefile	Sun Jan  5 04:07:05 2020	(r522087)
@@ -5130,6 +5130,7 @@
     SUBDIR += py-typed-ast
     SUBDIR += py-typing
     SUBDIR += py-typing-extensions
+    SUBDIR += py-typing-inspect
     SUBDIR += py-tzlocal
     SUBDIR += py-u-msgpack-python
     SUBDIR += py-ua_parser

Added: head/devel/py-typing-inspect/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-typing-inspect/Makefile	Sun Jan  5 04:07:05 2020	(r522087)
@@ -0,0 +1,26 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	typing-inspect
+PORTVERSION=	0.5.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	typing_inspect-${PORTVERSION}
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Runtime inspection utilities for typing module
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mypy_extensions>=0.3.0:devel/py-mypy_extensions@${PY_FLAVOR} \
+		${PY_TYPING} \
+		${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.7.4:devel/py-typing-extensions@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-typing-inspect/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-typing-inspect/distinfo	Sun Jan  5 04:07:05 2020	(r522087)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1578125677
+SHA256 (typing_inspect-0.5.0.tar.gz) = 811b44f92e780b90cfe7bac94249a4fae87cfaa9b40312765489255045231d9c
+SIZE (typing_inspect-0.5.0.tar.gz) = 8085

Added: head/devel/py-typing-inspect/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-typing-inspect/pkg-descr	Sun Jan  5 04:07:05 2020	(r522087)
@@ -0,0 +1,5 @@
+The typing_inspect module defines experimental API for runtime inspection of
+types defined in the Python standard typing module. Works with typing version
+3.7.4 and later.
+
+WWW: https://github.com/ilevkivskyi/typing_inspect


More information about the svn-ports-all mailing list