From owner-svn-ports-all@freebsd.org Fri Jul 29 12:09:20 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8C2CBA890D; Fri, 29 Jul 2016 12:09:20 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4A9114AB; Fri, 29 Jul 2016 12:09:20 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6TC9Jw2067005; Fri, 29 Jul 2016 12:09:19 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6TC9Jpj067001; Fri, 29 Jul 2016 12:09:19 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201607291209.u6TC9Jpj067001@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Fri, 29 Jul 2016 12:09:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419241 - in head/devel: . py-typing X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Jul 2016 12:09:21 -0000 Author: rm Date: Fri Jul 29 12:09:19 2016 New Revision: 419241 URL: https://svnweb.freebsd.org/changeset/ports/419241 Log: 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 Added: head/devel/py-typing/ head/devel/py-typing/Makefile (contents, props changed) head/devel/py-typing/distinfo (contents, props changed) head/devel/py-typing/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 29 12:07:09 2016 (r419240) +++ head/devel/Makefile Fri Jul 29 12:09:19 2016 (r419241) @@ -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 Added: head/devel/py-typing/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-typing/Makefile Fri Jul 29 12:09:19 2016 (r419241) @@ -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 Added: head/devel/py-typing/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-typing/distinfo Fri Jul 29 12:09:19 2016 (r419241) @@ -0,0 +1,3 @@ +TIMESTAMP = 1469629456 +SHA256 (typing-3.5.2.2.tar.gz) = 2bce34292653af712963c877f3085250a336738e64f99048d1b8509bebc4772f +SIZE (typing-3.5.2.2.tar.gz) = 51101 Added: head/devel/py-typing/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-typing/pkg-descr Fri Jul 29 12:09:19 2016 (r419241) @@ -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