4ffd0a05de
Version 0.10.1 -------------- Fix broken renderer argument in pipe() method and function. Version 0.10 ------------ Add format argument to Graph/Digraph.render(). This follows stand-alone render() function and mirrors the Graph/Digraph.pipe() method (usually, format is set on the instance). Add renderer and formatter arguments to Graph/Digraph.render() and pipe() methods, as well as stand-alone render() and pipe() functions.
25 lines
768 B
Makefile
25 lines
768 B
Makefile
# $NetBSD: Makefile,v 1.6 2018/11/25 15:10:06 adam Exp $
|
|
|
|
DISTNAME= graphviz-0.10.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=g/graphviz/}
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/xflr6/graphviz
|
|
COMMENT= Create and render graph descriptions in DOT language
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= graphviz-[0-9]*:../../graphics/graphviz
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test>=3.4:../../devel/py-test
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-mock>=1.8:../../devel/py-test-mock
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/tests && pytest-${PYVERSSUFFIX}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|