pkgsrc/devel/py-doc8/Makefile
adam 407e6f2614 py-doc8: updated to 0.8.1
0.8.1
-----
* README: Further tweaks
* Resolve README issues
* Accept the :substitutions: option on code-block directives in Sphinx
* Ignore 'nowrap' option for 'math' directive

0.8.1rc3
--------
* Configure packaging and release
* Ignore 'label' option for 'math' directive
* doc8/checks: ignore emphasize-lines errors in Sphinx mode
* Accept the :caption: option on code-block directives in Sphinx

0.8.1rc2
--------
* Refactor to support direct invocation from python
* Add tests for command line invocation
* Standardise check name across python versions
* Adopt python black
* Enable pre-commit

0.8.1rc1
--------
* Fix formatting of pre-commit-hooks.yaml
* Fix '\_\_main\_\_'
* Added badges to the README
* Fix travis
* Fixed tox docs
* Add pre-commit hook definition
* Allow doc8 to be called as a module
* Integrate Travis
* Update hacking version
* gitignore: Ignore pbr generated metadata
* Modernize doc building process
* General cleanup
* setup.cfg: Indicate supported versions of Python
* CONTRIBUTING: Update after move to GitHub
* setup.cfg: Update author, maintainer details
* Add Pygments to the requirements list
2020-06-02 19:58:00 +00:00

27 lines
933 B
Makefile

# $NetBSD: Makefile,v 1.2 2020/06/02 19:58:00 adam Exp $
DISTNAME= doc8-0.8.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/doc8/}
MAINTAINER= minskim@NetBSD.org
HOMEPAGE= https://github.com/pycqa/doc8
COMMENT= Opinionated style checker for rst styles of documentation
LICENSE= apache-2.0
BUILD_DEPENDS+= ${PYPKGPREFIX}-pbr-[0-9]*:../../devel/py-pbr
DEPENDS+= ${PYPKGPREFIX}-chardet-[0-9]*:../../converters/py-chardet
DEPENDS+= ${PYPKGPREFIX}-docutils-[0-9]*:../../textproc/py-docutils
DEPENDS+= ${PYPKGPREFIX}-restructuredtext_lint>=0.7:../../devel/py-restructuredtext_lint
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
DEPENDS+= ${PYPKGPREFIX}-stevedore-[0-9]*:../../devel/py-stevedore
USE_LANGUAGES= # none
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} doc8 doc8-${PYVERSSUFFIX} || ${TRUE}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"