Date: Thu, 3 Nov 2016 00:51:37 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425182 - in head/devel: . py-invoke Message-ID: <201611030051.uA30pb3D086442@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <feld@FreeBSD.org> +# $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 <bsd.port.mk> 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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611030051.uA30pb3D086442>