freebsd-ports/deskutils/py-taskw/Makefile
Kubilay Kocak 8170a12808 [NEW] deskutils/py-taskw: Bindings for your taskwarrior database
This is a python API for the taskwarrior command line tool.

It contains two implementations: taskw.TaskWarriorShellout and
taskw.TaskWarriorDirect. The first implementation is the supported one
recommended by the upstream taskwarrior core project. It uses the task export
and task import commands to manipulate the task database.

The second implementation opens the task db file itself and directly
manipulates it. It exists for backwards compatibility, but should only
be used when necessary.

WWW: https://github.com/ralphbean/taskw
2015-06-25 15:11:02 +00:00

27 lines
739 B
Makefile

# Created by: Kubilay Kocak <koobs@FreeBSD.org>
# $FreeBSD$
PORTNAME= taskw
PORTVERSION= 1.0.3
CATEGORIES= deskutils python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= koobs@FreeBSD.org
COMMENT= Bindings for your taskwarrior database
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \
${PYTHON_PKGNAMEPREFIX}dateutil>0:${PORTSDIR}/devel/py-dateutil \
${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose
USES= python
USE_PYTHON= autoplist distutils
regression-test: build
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
.include <bsd.port.mk>