882b210927
- PyPI sources do not ship LICENSE_FILE or tests - ChangeLog: * Commands: Added run_* methods as an alternative to modifiers * CLI: Added support for ALLOW_ABREV * CLI: Added DESCRIPTION_MORE, preserves spacing * Color: Avoid throwing error in atexit in special cases (like pytest) * Smaller bugfixes and other testing improvements.
26 lines
599 B
Makefile
26 lines
599 B
Makefile
# Created by: David Naylor <dbn@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= plumbum
|
|
PORTVERSION= 1.6.7
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= sysutils python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= dbn@FreeBSD.org
|
|
COMMENT= Shell combinators and more for Python
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= tomerfiliba
|
|
|
|
do-test:
|
|
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test)
|
|
|
|
.include <bsd.port.mk>
|