Date: Mon, 7 Jul 2014 06:18:55 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361026 - in head/devel: . py-doit Message-ID: <201407070618.s676ItlP077058@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Mon Jul 7 06:18:54 2014 New Revision: 361026 URL: http://svnweb.freebsd.org/changeset/ports/361026 QAT: https://qat.redports.org/buildarchive/r361026/ Log: [NEW] devel/py-doit: Python Automation Tool doit comes from the idea of bringing the power of build-tools to execute any kind of task. A task describes some computation to be done (actions), and contains some extra meta-data. Actions: * can be external programs (executed as shell commands) or python functions. * a single task may define more than one action. WWW: http://pydoit.org Added: head/devel/py-doit/ head/devel/py-doit/Makefile (contents, props changed) head/devel/py-doit/distinfo (contents, props changed) head/devel/py-doit/pkg-descr (contents, props changed) head/devel/py-doit/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jul 7 06:00:19 2014 (r361025) +++ head/devel/Makefile Mon Jul 7 06:18:54 2014 (r361026) @@ -3621,6 +3621,7 @@ SUBDIR += py-docopt SUBDIR += py-dogpile.cache SUBDIR += py-dogpile.core + SUBDIR += py-doit SUBDIR += py-durus SUBDIR += py-dynrules SUBDIR += py-eggtestinfo Added: head/devel/py-doit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-doit/Makefile Mon Jul 7 06:18:54 2014 (r361026) @@ -0,0 +1,26 @@ +# Created by: Kubilay Kocak <koobs@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= doit +PORTVERSION= 0.25.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Python Automation Tool + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test + +.include <bsd.port.mk> Added: head/devel/py-doit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-doit/distinfo Mon Jul 7 06:18:54 2014 (r361026) @@ -0,0 +1,2 @@ +SHA256 (doit-0.25.0.tar.gz) = 4584ba69cbb2a8dc27faf020c47c20bec3fb04c7159a959876b7bb8aafe0de54 +SIZE (doit-0.25.0.tar.gz) = 342659 Added: head/devel/py-doit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-doit/pkg-descr Mon Jul 7 06:18:54 2014 (r361026) @@ -0,0 +1,11 @@ +doit comes from the idea of bringing the power of build-tools to execute +any kind of task. + +A task describes some computation to be done (actions), and contains some +extra meta-data. Actions: + + * can be external programs (executed as shell commands) or python + functions. + * a single task may define more than one action. + +WWW: http://pydoit.org Added: head/devel/py-doit/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-doit/pkg-plist Mon Jul 7 06:18:54 2014 (r361026) @@ -0,0 +1 @@ +@comment $FreeBSD$
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407070618.s676ItlP077058>