1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

[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
This commit is contained in:
Kubilay Kocak 2014-07-07 06:18:54 +00:00
parent 347b051c8d
commit f971d1bd56
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=361026
5 changed files with 41 additions and 0 deletions

View File

@ -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

26
devel/py-doit/Makefile Normal file
View File

@ -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>

2
devel/py-doit/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (doit-0.25.0.tar.gz) = 4584ba69cbb2a8dc27faf020c47c20bec3fb04c7159a959876b7bb8aafe0de54
SIZE (doit-0.25.0.tar.gz) = 342659

11
devel/py-doit/pkg-descr Normal file
View File

@ -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

1
devel/py-doit/pkg-plist Normal file
View File

@ -0,0 +1 @@
@comment $FreeBSD$