the proper MIT rather than the incorrect GPLv3. Drop kn@ from maintainer per his request. OK kn sthen
28 lines
500 B
Makefile
28 lines
500 B
Makefile
# $OpenBSD: Makefile,v 1.2 2019/04/20 15:40:23 kmos Exp $
|
|
|
|
COMMENT = simple library for color and formatting in terminal
|
|
|
|
MODPY_EGG_VERSION = 1.3.93
|
|
DISTNAME = colored-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = textproc
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/python
|
|
MODPY_PI = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
TEST_DEPENDS = ${FULLPKGNAME}:${FULLPKGPATH}
|
|
|
|
do-test:
|
|
for _t in ${WRKSRC}/tests/test_*.py; do \
|
|
${MODPY_BIN} $${_t}; \
|
|
done
|
|
|
|
.include <bsd.port.mk>
|