lang/python port module. I've not yet come up with a port that would not need this and one can always set MODPY_TESTDEP to "no" to prevent the module from touching TEST_DEPENDS. Idea from afresh1 who pointed out the cpan module already does this. aja "I support this move." OK sthen@
30 lines
541 B
Makefile
30 lines
541 B
Makefile
# $OpenBSD: Makefile,v 1.3 2019/05/15 12:04:37 kmos Exp $
|
|
|
|
COMMENT = draw Python object reference graphs
|
|
|
|
MODPY_EGG_VERSION = 3.4.1
|
|
DISTNAME = objgraph-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
REVISION = 0
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://mg.pov.lt/objgraph/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
MODULES = lang/python
|
|
MODPY_PI = Yes
|
|
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
RUN_DEPENDS = math/py-graphviz${MODPY_FLAVOR}
|
|
TEST_DEPENDS = devel/py-mock${MODPY_FLAVOR} \
|
|
math/graphviz
|
|
|
|
.include <bsd.port.mk>
|