d4f1a32eef
* Python 3.6 is now supported, critical bug fixed (#302) * Commands: Better handling of return codes for pipelines (#288) * Paths: Return split support (regression) (#286) - also supports dummy args for better ``str`` compatibility * Paths: Added support for Python 3.6 path protocol * Paths: Support Python's ``in`` syntax * CLI: Added Config parser (provisional) (#304) * Color: image plots with `python -m plumbum.cli.image` (#304) * SSH: No longer hangs on failure (#306) * Test improvements, especially on non-linux systems
24 lines
554 B
Makefile
24 lines
554 B
Makefile
# Created by: David Naylor <dbn@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= plumbum
|
|
PORTVERSION= 1.6.3
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= sysutils python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= dbn@FreeBSD.org
|
|
COMMENT= Shell combinators and more for python
|
|
|
|
LICENSE= MIT
|
|
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest
|
|
|
|
USES= python
|
|
USE_GITHUB= yes
|
|
USE_PYTHON= autoplist distutils concurrent
|
|
GH_ACCOUNT= tomerfiliba
|
|
|
|
do-test:
|
|
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test)
|
|
.include <bsd.port.mk>
|