From owner-svn-ports-all@freebsd.org Thu Nov 3 00:51:39 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 70DB1C2B8D0; Thu, 3 Nov 2016 00:51:39 +0000 (UTC) (envelope-from feld@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 173C41BEF; Thu, 3 Nov 2016 00:51:38 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA30pcjo086446; Thu, 3 Nov 2016 00:51:38 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA30pb3D086442; Thu, 3 Nov 2016 00:51:37 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201611030051.uA30pb3D086442@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 3 Nov 2016 00:51:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425182 - in head/devel: . py-invoke 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.23 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: Thu, 03 Nov 2016 00:51:39 -0000 Author: feld Date: Thu Nov 3 00:51:37 2016 New Revision: 425182 URL: https://svnweb.freebsd.org/changeset/ports/425182 Log: Invoke is a Python (2.6+ and 3.3+) task execution tool & library, drawing inspiration from various sources to arrive at a powerful & clean feature set. WWW: https://github.com/pyinvoke/invoke/ Added: head/devel/py-invoke/ head/devel/py-invoke/Makefile (contents, props changed) head/devel/py-invoke/distinfo (contents, props changed) head/devel/py-invoke/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Nov 3 00:42:57 2016 (r425181) +++ head/devel/Makefile Thu Nov 3 00:51:37 2016 (r425182) @@ -4210,6 +4210,7 @@ SUBDIR += py-instant SUBDIR += py-interface SUBDIR += py-intervaltree + SUBDIR += py-invoke SUBDIR += py-ioflo SUBDIR += py-ipaddr SUBDIR += py-ipdb Added: head/devel/py-invoke/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-invoke/Makefile Thu Nov 3 00:51:37 2016 (r425182) @@ -0,0 +1,26 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= invoke +PORTVERSION= 0.13.0 +PORTREVISION= 0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Python task execution tool & library + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= autoplist distutils + +RUN_DEPEDS+= ${PYTHON_PKGNAMEPREFIX}semantic_version>0:devel/py-semantic_version +RUN_DEPEDS+= ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel +RUN_DEPEDS+= ${PYTHON_PKGNAMEPREFIX}twine>0:devel/py-twine +RUN_DEPEDS+= ${PYTHON_PKGNAMEPREFIX}coverage>0:devel/py-coverage + +NO_ARCH= YES + +.include Added: head/devel/py-invoke/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-invoke/distinfo Thu Nov 3 00:51:37 2016 (r425182) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478133941 +SHA256 (invoke-0.13.0.tar.gz) = 1a1992fac5292b97448d1c85dc0793e309c4c376acbc39ff067056d71fdc241d +SIZE (invoke-0.13.0.tar.gz) = 230552 Added: head/devel/py-invoke/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-invoke/pkg-descr Thu Nov 3 00:51:37 2016 (r425182) @@ -0,0 +1,5 @@ +Invoke is a Python (2.6+ and 3.3+) task execution tool & library, +drawing inspiration from various sources to arrive at a powerful & clean +feature set. + +WWW: https://github.com/pyinvoke/invoke/