aaa8f87239
1.9.1 ----- * Handle IndexError during version string parsing 1.9.0 ----- * Updated from global requirements * package: fix wrong catch in email parsing * Do not convert git tags when searching history * Include wsgi_scripts in generated wheels * Correct the indentation in the classifiers example * Do not silently drop markers that fail to evaluate * Clarifications around tags and version numbers * Correct typo - s/enabeld/enabled/ * Use apt-cache generated packages to provide build deps * fix some variable names * Don't attempt to test with 0.6c11 with Py3 * Support entry point patching on setuptools < 12 * Updated from global requirements * Split changelog on nulls instead of ( * Add libjpeg and liberasurecode for tests * Handle markers to support sdist on pip < 6 * Deprecated tox -downloadcache option removed * passenv integration environment variables re-enabling integration tests * Enable pep8 H405 tests * Add patch to properly get all commands from dist * doc: Remove 'MANIFEST.in' * doc: Trivial cleanup of 'index.rst' * doc: Add deprecation note for 'requirements-pyN' * doc: Restructure 'Requirements' section * doc: Restructure 'Usage' section * doc: Add details of manifest generation * Support git://, git+ssh://, git+https:// without -e flag * More support Sphinx >=1.3b1 and <1.3.1 * Fix docs for markers * Do not error when running pep8 with py3 * Ensure changelog log output is written if it already exists * Cleanup jeepyb and pypi-mirror special casing
25 lines
713 B
Makefile
25 lines
713 B
Makefile
# $NetBSD: Makefile,v 1.10 2016/04/17 09:49:03 wiz Exp $
|
|
|
|
DISTNAME= pbr-1.9.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=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}
|
|
FILES_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"
|