0.16: * Add LICENSE file to distribution * Don't rely on pkg_resources to calculate package version * Replace use of ``optparse`` by ``argparse`` as the former is deprecated * Attempt to reduce the maximum recursion needed to create the ModuleGraph * Don't include the file type in the result from ``zipio.getmode`` * Fix mismatched indents/dedents in ModuleGraph debug output
21 lines
615 B
Makefile
21 lines
615 B
Makefile
# $NetBSD: Makefile,v 1.12 2017/12/10 17:07:54 adam Exp $
|
|
|
|
DISTNAME= modulegraph-0.16
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=m/modulegraph/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://bitbucket.org/ronaldoussoren/modulegraph
|
|
COMMENT= Python module dependency analysis tool
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-altgraph>=0.12:../../graphics/py-altgraph
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && ${MV} modulegraph modulegraph${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|