pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-doc8



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Jun  2 19:58:00 UTC 2020

Modified Files:
        pkgsrc/devel/py-doc8: Makefile PLIST distinfo

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-doc8/Makefile \
    pkgsrc/devel/py-doc8/PLIST pkgsrc/devel/py-doc8/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-doc8/Makefile
diff -u pkgsrc/devel/py-doc8/Makefile:1.1 pkgsrc/devel/py-doc8/Makefile:1.2
--- pkgsrc/devel/py-doc8/Makefile:1.1   Tue Jun  5 19:34:21 2018
+++ pkgsrc/devel/py-doc8/Makefile       Tue Jun  2 19:58:00 2020
@@ -1,15 +1,16 @@
-# $NetBSD: Makefile,v 1.1 2018/06/05 19:34:21 minskim Exp $
+# $NetBSD: Makefile,v 1.2 2020/06/02 19:58:00 adam Exp $
 
-DISTNAME=      doc8-0.8.0
+DISTNAME=      doc8-0.8.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=d/doc8/}
 
 MAINTAINER=    minskim%NetBSD.org@localhost
-HOMEPAGE=      https://launchpad.net/doc8
+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
@@ -18,10 +19,9 @@ DEPENDS+=    ${PYPKGPREFIX}-stevedore-[0-9]
 
 USE_LANGUAGES= # none
 
-.include "../../lang/python/egg.mk"
-
 post-install:
-       ${MV} ${DESTDIR}${PREFIX}/bin/doc8 \
-             ${DESTDIR}${PREFIX}/bin/doc8-${PYVERSSUFFIX}
+       cd ${DESTDIR}${PREFIX}/bin && \
+       ${MV} doc8 doc8-${PYVERSSUFFIX} || ${TRUE}
 
+.include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/py-doc8/PLIST
diff -u pkgsrc/devel/py-doc8/PLIST:1.1 pkgsrc/devel/py-doc8/PLIST:1.2
--- pkgsrc/devel/py-doc8/PLIST:1.1      Tue Jun  5 19:34:21 2018
+++ pkgsrc/devel/py-doc8/PLIST  Tue Jun  2 19:58:00 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2018/06/05 19:34:21 minskim Exp $
+@comment $NetBSD: PLIST,v 1.2 2020/06/02 19:58:00 adam Exp $
 bin/doc8-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -11,6 +11,9 @@ ${PYSITELIB}/${EGG_INFODIR}/top_level.tx
 ${PYSITELIB}/doc8/__init__.py
 ${PYSITELIB}/doc8/__init__.pyc
 ${PYSITELIB}/doc8/__init__.pyo
+${PYSITELIB}/doc8/__main__.py
+${PYSITELIB}/doc8/__main__.pyc
+${PYSITELIB}/doc8/__main__.pyo
 ${PYSITELIB}/doc8/checks.py
 ${PYSITELIB}/doc8/checks.pyc
 ${PYSITELIB}/doc8/checks.pyo
@@ -26,6 +29,9 @@ ${PYSITELIB}/doc8/tests/__init__.pyo
 ${PYSITELIB}/doc8/tests/test_checks.py
 ${PYSITELIB}/doc8/tests/test_checks.pyc
 ${PYSITELIB}/doc8/tests/test_checks.pyo
+${PYSITELIB}/doc8/tests/test_main.py
+${PYSITELIB}/doc8/tests/test_main.pyc
+${PYSITELIB}/doc8/tests/test_main.pyo
 ${PYSITELIB}/doc8/utils.py
 ${PYSITELIB}/doc8/utils.pyc
 ${PYSITELIB}/doc8/utils.pyo
Index: pkgsrc/devel/py-doc8/distinfo
diff -u pkgsrc/devel/py-doc8/distinfo:1.1 pkgsrc/devel/py-doc8/distinfo:1.2
--- pkgsrc/devel/py-doc8/distinfo:1.1   Tue Jun  5 19:34:21 2018
+++ pkgsrc/devel/py-doc8/distinfo       Tue Jun  2 19:58:00 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2018/06/05 19:34:21 minskim Exp $
+$NetBSD: distinfo,v 1.2 2020/06/02 19:58:00 adam Exp $
 
-SHA1 (doc8-0.8.0.tar.gz) = 1db8f1f9b54b0344016d19c5d78755061583b6c9
-RMD160 (doc8-0.8.0.tar.gz) = 3d9a4bfc8dc949ccf4b8e0ba9e7bb222f0096cd4
-SHA512 (doc8-0.8.0.tar.gz) = a8a485e2d3f5b20eb172b4e6521ac0916eb99b90a93ab630ca60b93b61aa22ee636557de56a6605c1c49491d01cbbe8b153c2a4ce1606637b46140a5d7aa8fca
-Size (doc8-0.8.0.tar.gz) = 21864 bytes
+SHA1 (doc8-0.8.1.tar.gz) = 66dd56263c6a4236776db2f196066540c682a07c
+RMD160 (doc8-0.8.1.tar.gz) = af5a9469f60999d56d9a5e575919631fbeb25235
+SHA512 (doc8-0.8.1.tar.gz) = 855a00e24daba0c1a7caa4e888411c356570d2f30c7966bb2e566260edff13bc4c35124fd8d4129231bc7a3bec2ed959d23fb52961a5d8f6d1c67cff22bb35de
+Size (doc8-0.8.1.tar.gz) = 28775 bytes



Home | Main Index | Thread Index | Old Index