From owner-svn-ports-all@freebsd.org Sat Jan 18 18:22:43 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E33A91FCED8; Sat, 18 Jan 2020 18:22:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 480R9v5gzTz4CcL; Sat, 18 Jan 2020 18:22:43 +0000 (UTC) (envelope-from sunpoet@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 A4E0B26161; Sat, 18 Jan 2020 18:22:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00IIMhke081025; Sat, 18 Jan 2020 18:22:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00IIMgdL081021; Sat, 18 Jan 2020 18:22:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202001181822.00IIMgdL081021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 18 Jan 2020 18:22:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r523433 - in head/devel: . py-monkeytype X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-monkeytype X-SVN-Commit-Revision: 523433 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: Sat, 18 Jan 2020 18:22:44 -0000 Author: sunpoet Date: Sat Jan 18 18:22:42 2020 New Revision: 523433 URL: https://svnweb.freebsd.org/changeset/ports/523433 Log: Add py-monkeytype 19.11.2 MonkeyType collects runtime types of function arguments and return values, and can automatically generate stub files or even add draft type annotations directly to your Python code based on the types collected at runtime. WWW: https://github.com/Instagram/MonkeyType Added: head/devel/py-monkeytype/ head/devel/py-monkeytype/Makefile (contents, props changed) head/devel/py-monkeytype/distinfo (contents, props changed) head/devel/py-monkeytype/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jan 18 18:22:35 2020 (r523432) +++ head/devel/Makefile Sat Jan 18 18:22:42 2020 (r523433) @@ -4654,6 +4654,7 @@ SUBDIR += py-molecule SUBDIR += py-mondrian SUBDIR += py-mongokit + SUBDIR += py-monkeytype SUBDIR += py-monotonic SUBDIR += py-monty SUBDIR += py-more-itertools Added: head/devel/py-monkeytype/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-monkeytype/Makefile Sat Jan 18 18:22:42 2020 (r523433) @@ -0,0 +1,25 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= monkeytype +PORTVERSION= 19.11.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= MonkeyType-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Generate type annotations from sampled production types + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mypy_extensions>=0:devel/py-mypy_extensions@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}retype>=0:devel/py-retype@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}stringcase>=0:devel/py-stringcase@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/devel/py-monkeytype/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-monkeytype/distinfo Sat Jan 18 18:22:42 2020 (r523433) @@ -0,0 +1,3 @@ +TIMESTAMP = 1579339393 +SHA256 (MonkeyType-19.11.2.tar.gz) = 9f052b42851bc24603836ce3105166c8cc5edabeb25e8fcf256fa25777122618 +SIZE (MonkeyType-19.11.2.tar.gz) = 31099 Added: head/devel/py-monkeytype/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-monkeytype/pkg-descr Sat Jan 18 18:22:42 2020 (r523433) @@ -0,0 +1,5 @@ +MonkeyType collects runtime types of function arguments and return values, and +can automatically generate stub files or even add draft type annotations +directly to your Python code based on the types collected at runtime. + +WWW: https://github.com/Instagram/MonkeyType