From owner-svn-ports-all@freebsd.org Fri Oct 26 04:15:43 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57D3F10D5707; Fri, 26 Oct 2018 04:15:43 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 269FF82C38; Fri, 26 Oct 2018 04:15:43 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 095931BD36; Fri, 26 Oct 2018 04:15:43 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9Q4FgkO072318; Fri, 26 Oct 2018 04:15:42 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9Q4Fgkq072314; Fri, 26 Oct 2018 04:15:42 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810260415.w9Q4Fgkq072314@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 26 Oct 2018 04:15:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483004 - in head/devel: . py-typechecks X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-typechecks X-SVN-Commit-Revision: 483004 X-SVN-Commit-Repository: ports 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.29 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, 26 Oct 2018 04:15:43 -0000 Author: yuri Date: Fri Oct 26 04:15:41 2018 New Revision: 483004 URL: https://svnweb.freebsd.org/changeset/ports/483004 Log: New port: devel/py-typechecks: Type checking helpers for Python This package really doesn't have a better description than this one line. Added: head/devel/py-typechecks/ head/devel/py-typechecks/Makefile (contents, props changed) head/devel/py-typechecks/distinfo (contents, props changed) head/devel/py-typechecks/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 26 03:55:24 2018 (r483003) +++ head/devel/Makefile Fri Oct 26 04:15:41 2018 (r483004) @@ -5172,6 +5172,7 @@ SUBDIR += py-twine SUBDIR += py-twisted SUBDIR += py-txaio + SUBDIR += py-typechecks SUBDIR += py-typed-ast SUBDIR += py-typing SUBDIR += py-tzlocal Added: head/devel/py-typechecks/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-typechecks/Makefile Fri Oct 26 04:15:41 2018 (r483004) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= typechecks +DISTVERSION= 0.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Type checking helpers for Python + +LICENSE= APACHE20 + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include Added: head/devel/py-typechecks/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-typechecks/distinfo Fri Oct 26 04:15:41 2018 (r483004) @@ -0,0 +1,3 @@ +TIMESTAMP = 1540527149 +SHA256 (typechecks-0.1.0.tar.gz) = 7d801a6018f60d2a10aa3debc3af65f590c96c455de67159f39b9b183107c83b +SIZE (typechecks-0.1.0.tar.gz) = 3397 Added: head/devel/py-typechecks/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-typechecks/pkg-descr Fri Oct 26 04:15:41 2018 (r483004) @@ -0,0 +1,3 @@ +Type checking helpers for Python. + +WWW: https://github.com/openvax/typechecks