6b968c0c44
ALTERNATIVES. CHANGES ======= 0.10.8 ------ * Support script text override for newer develop 0.10.7 ------ * _get_revno only returns a commit count 0.10.6 ------ * Integration test PBR commits 0.10.5 ------ * Move write_pbr_json to avoid issues with nose 0.10.4 ------ * Properly check for git before getting git dir * Use post version signifiers * Only import sphinx during hook processing 0.10.3 ------ * Stop including git sha in version strings * Write and read more complex git sha info 0.10.2 ------ * Remove all 2.7 filtering * Stop filtering out argparse * Remove mirror testing from the integration script 0.10.1 ------ * Prefix git suffixes with + instead of
24 lines
691 B
Makefile
24 lines
691 B
Makefile
# $NetBSD: Makefile,v 1.3 2015/03/14 21:19:22 rodent Exp $
|
|
|
|
DISTNAME= pbr-0.10.8
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= https://pypi.python.org/packages/source/p/pbr/
|
|
|
|
MAINTAINER= rodent@NetBSD.org
|
|
HOMEPAGE= http://pypi.python.org/pypi/pbr
|
|
COMMENT= Python Build Reasonableness
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-pip-[0-9]*:../../devel/py-pip
|
|
|
|
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}
|
|
REPLACE_PYTHON+= pbr/tests/testpackage/setup.py
|
|
|
|
post-install:
|
|
${MV} ${DESTDIR}${PREFIX}/bin/pbr \
|
|
${DESTDIR}${PREFIX}/bin/pbr${PYVERSSUFFIX}
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|