57d0c2050e
Gitinspector is a statistical analysis tool for git repositories. The default analysis shows general statistics per author, which can be complemented with a timeline analysis that shows the workload and activity of each author. Under normal operation, it filters the results to only show statistics about a number of given extensions and by default only includes source files in the statistical analysis. This is a development version of devel/py-gitinspector.
22 lines
670 B
Makefile
22 lines
670 B
Makefile
# $NetBSD: Makefile,v 1.1 2018/05/18 18:17:28 minskim Exp $
|
|
|
|
GITHUB_PROJECT= gitinspector
|
|
DISTNAME= gitinspector-0.5.0.dev0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=ejwa/}
|
|
GITHUB_TAG= 6d77989e341e043c9a7f09757000d75701b32d84
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/ejwa/gitinspector/
|
|
COMMENT= The statistical analysis tool for git repositories
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
DEPENDS+= git-base-[0-9]*:../../devel/git-base
|
|
|
|
post-install:
|
|
${MV} ${DESTDIR}${PREFIX}/bin/gitinspector \
|
|
${DESTDIR}${PREFIX}/bin/gitinspector${PYVERSSUFFIX}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|