pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/py-sphinx



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Sep 28 11:18:24 UTC 2017

Modified Files:
        pkgsrc/textproc/py-sphinx: Makefile PLIST distinfo

Log Message:
py-sphinx: update to 1.6.4

Release 1.6.4:

Features added
* 3926: Add autodoc_warningiserror to suppress the behavior of -W option during importing target modules on autodoc

Bugs fixed
* 3924: docname lost after dynamically parsing RST in extension
* 3946: Typo in sphinx.sty (this was a bug with no effect in default context)
* pep: and :rfc: does not supports default-role directive (refs: 3960)
* 3960: default_role = ‘guilabel’ not functioning
* Missing texinputs_win/Makefile to be used in latexpdf builder on windows.
* 4026: nature: Fix macOS Safari scrollbar color
* 3877: Fix for C++ multiline signatures.
* 4006: Fix crash on parallel build
* 3969: private instance attributes causes AttributeError
* 4041: C++, remove extra name linking in function pointers.
* 4038: C, add missing documentation of member role.
* 4044: An empty multicolumn cell causes extra row height in PDF output
* 4049: Fix typo in output of sphinx-build -h
* 4062: hashlib.sha1() must take bytes, not unicode on Python 3
* Avoid indent after index entries in latex (refs: 4066)
* 4070: crashes when the warning message contains format strings
* 4067: Return non-zero exit status when make subprocess fails
* 4055: graphviz: the :align: option does not work for SVG output
* 4055: graphviz: the :align: center option does not work for latex output
* 4051: warn() function for HTML theme outputs ‘None’ string


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 pkgsrc/textproc/py-sphinx/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/textproc/py-sphinx/PLIST
cvs rdiff -u -r1.23 -r1.24 pkgsrc/textproc/py-sphinx/distinfo

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

Modified files:

Index: pkgsrc/textproc/py-sphinx/Makefile
diff -u pkgsrc/textproc/py-sphinx/Makefile:1.41 pkgsrc/textproc/py-sphinx/Makefile:1.42
--- pkgsrc/textproc/py-sphinx/Makefile:1.41     Sat Aug 19 13:58:00 2017
+++ pkgsrc/textproc/py-sphinx/Makefile  Thu Sep 28 11:18:24 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.41 2017/08/19 13:58:00 adam Exp $
+# $NetBSD: Makefile,v 1.42 2017/09/28 11:18:24 adam Exp $
 
-DISTNAME=      Sphinx-1.6.3
+DISTNAME=      Sphinx-1.6.4
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:tl}
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=S/Sphinx/}
@@ -28,7 +28,6 @@ DEPENDS+=     ${PYPKGPREFIX}-six-[0-9]*:../.
 DEPENDS+=      ${PYPKGPREFIX}-typing-[0-9]*:../../devel/py-typing
 .endif
 
-# test dependency
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-html5lib-[0-9]*:../../textproc/py-html5lib
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
@@ -43,10 +42,11 @@ do-test:
        cd ${WRKSRC}/tests && ${PYTHONBIN} run.py
 
 post-install:
-       ${MV} ${DESTDIR}${PREFIX}/bin/sphinx-apidoc ${DESTDIR}${PREFIX}/bin/sphinx-apidoc${PYVERSSUFFIX} || ${TRUE}
-       ${MV} ${DESTDIR}${PREFIX}/bin/sphinx-autogen ${DESTDIR}${PREFIX}/bin/sphinx-autogen${PYVERSSUFFIX} || ${TRUE}
-       ${MV} ${DESTDIR}${PREFIX}/bin/sphinx-build ${DESTDIR}${PREFIX}/bin/sphinx-build${PYVERSSUFFIX} || ${TRUE}
-       ${MV} ${DESTDIR}${PREFIX}/bin/sphinx-quickstart ${DESTDIR}${PREFIX}/bin/sphinx-quickstart${PYVERSSUFFIX} || ${TRUE}
+       cd ${DESTDIR}${PREFIX}/bin && \
+               ${MV} sphinx-apidoc sphinx-apidoc${PYVERSSUFFIX} && \
+               ${MV} sphinx-autogen sphinx-autogen${PYVERSSUFFIX} && \
+               ${MV} sphinx-build sphinx-build${PYVERSSUFFIX} && \
+               ${MV} sphinx-quickstart sphinx-quickstart${PYVERSSUFFIX} || ${TRUE}
 
 .include "../../lang/python/application.mk"
 .include "../../lang/python/egg.mk"

Index: pkgsrc/textproc/py-sphinx/PLIST
diff -u pkgsrc/textproc/py-sphinx/PLIST:1.17 pkgsrc/textproc/py-sphinx/PLIST:1.18
--- pkgsrc/textproc/py-sphinx/PLIST:1.17        Thu May 18 20:09:05 2017
+++ pkgsrc/textproc/py-sphinx/PLIST     Thu Sep 28 11:18:24 2017
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.17 2017/05/18 20:09:05 adam Exp $
+@comment $NetBSD: PLIST,v 1.18 2017/09/28 11:18:24 adam Exp $
 bin/sphinx-apidoc${PYVERSSUFFIX}
 bin/sphinx-autogen${PYVERSSUFFIX}
 bin/sphinx-build${PYVERSSUFFIX}
@@ -561,6 +561,7 @@ ${PYSITELIB}/sphinx/texinputs/sphinx.sty
 ${PYSITELIB}/sphinx/texinputs/sphinxhowto.cls
 ${PYSITELIB}/sphinx/texinputs/sphinxmanual.cls
 ${PYSITELIB}/sphinx/texinputs/sphinxmulticell.sty
+${PYSITELIB}/sphinx/texinputs_win/Makefile_t
 ${PYSITELIB}/sphinx/themes/agogo/layout.html
 ${PYSITELIB}/sphinx/themes/agogo/static/agogo.css_t
 ${PYSITELIB}/sphinx/themes/agogo/static/bgfooter.png

Index: pkgsrc/textproc/py-sphinx/distinfo
diff -u pkgsrc/textproc/py-sphinx/distinfo:1.23 pkgsrc/textproc/py-sphinx/distinfo:1.24
--- pkgsrc/textproc/py-sphinx/distinfo:1.23     Mon Jul  3 17:43:36 2017
+++ pkgsrc/textproc/py-sphinx/distinfo  Thu Sep 28 11:18:24 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.23 2017/07/03 17:43:36 adam Exp $
+$NetBSD: distinfo,v 1.24 2017/09/28 11:18:24 adam Exp $
 
-SHA1 (Sphinx-1.6.3.tar.gz) = f33215cb1242149b9621851e090a17ec2998c9d3
-RMD160 (Sphinx-1.6.3.tar.gz) = acd28eac169f8b20177348ff6b8586bd22a2166a
-SHA512 (Sphinx-1.6.3.tar.gz) = d5aec58e19239db4e61fcd6b103fcc838d97aad5a7aaf9279ff1097791d9cd1ba245989307a2d1049c123058b84ca4e91db192a1672c040d80fafed3907736ae
-Size (Sphinx-1.6.3.tar.gz) = 4674251 bytes
+SHA1 (Sphinx-1.6.4.tar.gz) = 25accd39bfca5cd93f771a363a19357300e7c52c
+RMD160 (Sphinx-1.6.4.tar.gz) = db373a7dd749d489da241f6e30d58d9cd8613535
+SHA512 (Sphinx-1.6.4.tar.gz) = df7dafce15b6a7025f3ed094a6274d697b2b6b58a91f073a25ea3f70d06a6f3b47808d6a453ed1e51fa6ecb6abceaa661aa6e2d63533ed0cd0e666ba972a9133
+Size (Sphinx-1.6.4.tar.gz) = 4678873 bytes



Home | Main Index | Thread Index | Old Index