Date: Mon, 26 Nov 2018 07:30:07 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485926 - in head/devel: . py-mypy_extensions Message-ID: <201811260730.wAQ7U7IA001476@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Mon Nov 26 07:30:07 2018 New Revision: 485926 URL: https://svnweb.freebsd.org/changeset/ports/485926 Log: The "mypy_extensions" module defines experimental extensions to the standard "typing" module that are supported by the mypy typechecker. WWW: http://www.mypy-lang.org Added: head/devel/py-mypy_extensions/ head/devel/py-mypy_extensions/Makefile (contents, props changed) head/devel/py-mypy_extensions/distinfo (contents, props changed) head/devel/py-mypy_extensions/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Nov 26 07:03:47 2018 (r485925) +++ head/devel/Makefile Mon Nov 26 07:30:07 2018 (r485926) @@ -4787,6 +4787,7 @@ SUBDIR += py-mx-experimental SUBDIR += py-mygpoclient SUBDIR += py-mypy + SUBDIR += py-mypy_extensions SUBDIR += py-nagioscheck SUBDIR += py-naiveBayesClassifier SUBDIR += py-natsort Added: head/devel/py-mypy_extensions/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-mypy_extensions/Makefile Mon Nov 26 07:30:07 2018 (r485926) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= mypy_extensions +PORTVERSION= 0.4.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Experimental type system extensions for programs + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.pre.mk> + +.if ${PYTHON_VER} < 3.5 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing>=3.5.3:devel/py-typing@${PY_FLAVOR} +.endif + +.include <bsd.port.post.mk> Added: head/devel/py-mypy_extensions/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-mypy_extensions/distinfo Mon Nov 26 07:30:07 2018 (r485926) @@ -0,0 +1,3 @@ +TIMESTAMP = 1543142868 +SHA256 (mypy_extensions-0.4.1.tar.gz) = 37e0e956f41369209a3d5f34580150bcacfabaa57b33a15c0b25f4b5725e0812 +SIZE (mypy_extensions-0.4.1.tar.gz) = 4048 Added: head/devel/py-mypy_extensions/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-mypy_extensions/pkg-descr Mon Nov 26 07:30:07 2018 (r485926) @@ -0,0 +1,4 @@ +The "mypy_extensions" module defines experimental extensions to the +standard "typing" module that are supported by the mypy typechecker. + +WWW: http://www.mypy-lang.org
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811260730.wAQ7U7IA001476>