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 May  4 09:42:10 UTC 2023

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

Log Message:
py-sphinx: updated to 7.0.0

Release 7.0.0 (released Apr 29, 2023)
Incompatible changes
* Remove long-deprecated aliases for MecabSplitter and DefaultSplitter in sphinx.search.ja.
* Remove deprecated make_old_id functions in domain object description classes.
* Remove the Setuptools integration (build_sphinx hook in setup.py).
* Remove deprecated sphinx.ext.napoleon.iterators module.
* Remove support for the jsdump format in sphinx.search.
* Make locale a required argument to sphinx.util.i18n.format_date().
* Remove deprecated sphinx.util.stemmer module.
* Remove deprecated sphinx.pycode.ast.parse() function.
* Remove deprecated sphinx.io.read_doc() function.
* Removed deprecated sphinx.util.get_matching_files() function.
* Remove deprecated sphinx.util.docutils.is_html5_writer_available() function.
* Make the env argument to Builder subclasses required.
* autosummary: Always emit grouped import exceptions.
* Remove deprecated style key for HTML templates.
* Remove deprecated sphinx.writers.latex.LaTeXTranslator.docclasses attribute.
* Remove deprecated sphinx.builders.html.html5_ready and sphinx.builders.html.HTMLTranslator attributes.
* Remove support for HTML 4 output.


To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 pkgsrc/textproc/py-sphinx/Makefile
cvs rdiff -u -r1.31 -r1.32 pkgsrc/textproc/py-sphinx/PLIST
cvs rdiff -u -r1.61 -r1.62 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.88 pkgsrc/textproc/py-sphinx/Makefile:1.89
--- pkgsrc/textproc/py-sphinx/Makefile:1.88     Wed Mar 29 09:34:14 2023
+++ pkgsrc/textproc/py-sphinx/Makefile  Thu May  4 09:42:10 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.88 2023/03/29 09:34:14 wiz Exp $
+# $NetBSD: Makefile,v 1.89 2023/05/04 09:42:10 adam Exp $
 
-DISTNAME=      Sphinx-5.3.0
+DISTNAME=      Sphinx-7.0.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:tl}
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=S/Sphinx/}
@@ -10,16 +10,16 @@ HOMEPAGE=   https://www.sphinx-doc.org/
 COMMENT=       Python documentation generator
 LICENSE=       modified-bsd
 
-BUILD_DEPENDS+=        ${PYPKGPREFIX}-flit_core>=3.7:../../devel/py-flit_core
+TOOL_DEPENDS+= ${PYPKGPREFIX}-flit_core>=3.7:../../devel/py-flit_core
 DEPENDS+=      ${PYPKGPREFIX}-alabaster>=0.7:../../textproc/py-alabaster
 DEPENDS+=      ${PYPKGPREFIX}-babel>=2.9:../../devel/py-babel
-DEPENDS+=      ${PYPKGPREFIX}-docutils>=0.14:../../textproc/py-docutils
+DEPENDS+=      ${PYPKGPREFIX}-docutils>=0.18.1:../../textproc/py-docutils
 DEPENDS+=      ${PYPKGPREFIX}-imagesize>=1.3:../../graphics/py-imagesize
 DEPENDS+=      ${PYPKGPREFIX}-jinja2>=3.0:../../textproc/py-jinja2
 DEPENDS+=      ${PYPKGPREFIX}-packaging>=21.0:../../devel/py-packaging
-DEPENDS+=      ${PYPKGPREFIX}-pygments>=2.12:../../textproc/py-pygments
+DEPENDS+=      ${PYPKGPREFIX}-pygments>=2.13:../../textproc/py-pygments
 DEPENDS+=      ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
-DEPENDS+=      ${PYPKGPREFIX}-requests>=2.5.0:../../devel/py-requests
+DEPENDS+=      ${PYPKGPREFIX}-requests>=2.25.0:../../devel/py-requests
 DEPENDS+=      ${PYPKGPREFIX}-snowballstemmer>=2.0:../../textproc/py-snowballstemmer
 DEPENDS+=      ${PYPKGPREFIX}-sphinxcontrib-applehelp-[0-9]*:../../textproc/py-sphinxcontrib-applehelp
 DEPENDS+=      ${PYPKGPREFIX}-sphinxcontrib-devhelp-[0-9]*:../../textproc/py-sphinxcontrib-devhelp
@@ -27,6 +27,7 @@ DEPENDS+=     ${PYPKGPREFIX}-sphinxcontrib-h
 DEPENDS+=      ${PYPKGPREFIX}-sphinxcontrib-jsmath-[0-9]*:../../textproc/py-sphinxcontrib-jsmath
 DEPENDS+=      ${PYPKGPREFIX}-sphinxcontrib-qthelp-[0-9]*:../../textproc/py-sphinxcontrib-qthelp
 DEPENDS+=      ${PYPKGPREFIX}-sphinxcontrib-serializinghtml>=1.1.5:../../textproc/py-sphinxcontrib-serializinghtml
+TEST_DEPENDS+= ${PYPKGPREFIX}-filelock-[0-9]*:../../devel/py-filelock
 TEST_DEPENDS+= ${PYPKGPREFIX}-html5lib-[0-9]*:../../textproc/py-html5lib
 TEST_DEPENDS+= ${PYPKGPREFIX}-test>=4.6:../../devel/py-test
 
@@ -36,7 +37,7 @@ WHEEL_NAME?=  ${DISTNAME:tl:C/-([^0-9])/_
 
 PYSETUPTESTTARGET=     pytest
 
-PYTHON_VERSIONS_INCOMPATIBLE=  27
+PYTHON_VERSIONS_INCOMPATIBLE=  27 37
 
 .include "../../lang/python/pyversion.mk"
 

Index: pkgsrc/textproc/py-sphinx/PLIST
diff -u pkgsrc/textproc/py-sphinx/PLIST:1.31 pkgsrc/textproc/py-sphinx/PLIST:1.32
--- pkgsrc/textproc/py-sphinx/PLIST:1.31        Tue Oct 25 18:36:42 2022
+++ pkgsrc/textproc/py-sphinx/PLIST     Thu May  4 09:42:10 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.31 2022/10/25 18:36:42 adam Exp $
+@comment $NetBSD: PLIST,v 1.32 2023/05/04 09:42:10 adam Exp $
 bin/sphinx-apidoc-${PYVERSSUFFIX}
 bin/sphinx-autogen-${PYVERSSUFFIX}
 bin/sphinx-build-${PYVERSSUFFIX}
@@ -186,8 +186,6 @@ ${PYSITELIB}/sphinx/ext/napoleon/__init_
 ${PYSITELIB}/sphinx/ext/napoleon/__init__.pyc
 ${PYSITELIB}/sphinx/ext/napoleon/docstring.py
 ${PYSITELIB}/sphinx/ext/napoleon/docstring.pyc
-${PYSITELIB}/sphinx/ext/napoleon/iterators.py
-${PYSITELIB}/sphinx/ext/napoleon/iterators.pyc
 ${PYSITELIB}/sphinx/ext/todo.py
 ${PYSITELIB}/sphinx/ext/todo.pyc
 ${PYSITELIB}/sphinx/ext/viewcode.py
@@ -475,8 +473,6 @@ ${PYSITELIB}/sphinx/search/tr.py
 ${PYSITELIB}/sphinx/search/tr.pyc
 ${PYSITELIB}/sphinx/search/zh.py
 ${PYSITELIB}/sphinx/search/zh.pyc
-${PYSITELIB}/sphinx/setup_command.py
-${PYSITELIB}/sphinx/setup_command.pyc
 ${PYSITELIB}/sphinx/templates/apidoc/module.rst_t
 ${PYSITELIB}/sphinx/templates/apidoc/package.rst_t
 ${PYSITELIB}/sphinx/templates/apidoc/toc.rst_t
@@ -568,21 +564,17 @@ ${PYSITELIB}/sphinx/themes/basic/page.ht
 ${PYSITELIB}/sphinx/themes/basic/relations.html
 ${PYSITELIB}/sphinx/themes/basic/search.html
 ${PYSITELIB}/sphinx/themes/basic/searchbox.html
+${PYSITELIB}/sphinx/themes/basic/searchfield.html
 ${PYSITELIB}/sphinx/themes/basic/sourcelink.html
-${PYSITELIB}/sphinx/themes/basic/static/_sphinx_javascript_frameworks_compat.js
 ${PYSITELIB}/sphinx/themes/basic/static/basic.css_t
 ${PYSITELIB}/sphinx/themes/basic/static/doctools.js
 ${PYSITELIB}/sphinx/themes/basic/static/documentation_options.js_t
 ${PYSITELIB}/sphinx/themes/basic/static/file.png
-${PYSITELIB}/sphinx/themes/basic/static/jquery-3.6.0.js
-${PYSITELIB}/sphinx/themes/basic/static/jquery.js
 ${PYSITELIB}/sphinx/themes/basic/static/language_data.js_t
 ${PYSITELIB}/sphinx/themes/basic/static/minus.png
 ${PYSITELIB}/sphinx/themes/basic/static/plus.png
 ${PYSITELIB}/sphinx/themes/basic/static/searchtools.js
 ${PYSITELIB}/sphinx/themes/basic/static/sphinx_highlight.js
-${PYSITELIB}/sphinx/themes/basic/static/underscore-1.13.1.js
-${PYSITELIB}/sphinx/themes/basic/static/underscore.js
 ${PYSITELIB}/sphinx/themes/basic/theme.conf
 ${PYSITELIB}/sphinx/themes/bizstyle/layout.html
 ${PYSITELIB}/sphinx/themes/bizstyle/static/background_b01.png
@@ -668,18 +660,22 @@ ${PYSITELIB}/sphinx/util/build_phase.py
 ${PYSITELIB}/sphinx/util/build_phase.pyc
 ${PYSITELIB}/sphinx/util/cfamily.py
 ${PYSITELIB}/sphinx/util/cfamily.pyc
-${PYSITELIB}/sphinx/util/compat.py
-${PYSITELIB}/sphinx/util/compat.pyc
 ${PYSITELIB}/sphinx/util/console.py
 ${PYSITELIB}/sphinx/util/console.pyc
+${PYSITELIB}/sphinx/util/display.py
+${PYSITELIB}/sphinx/util/display.pyc
 ${PYSITELIB}/sphinx/util/docfields.py
 ${PYSITELIB}/sphinx/util/docfields.pyc
 ${PYSITELIB}/sphinx/util/docstrings.py
 ${PYSITELIB}/sphinx/util/docstrings.pyc
 ${PYSITELIB}/sphinx/util/docutils.py
 ${PYSITELIB}/sphinx/util/docutils.pyc
+${PYSITELIB}/sphinx/util/exceptions.py
+${PYSITELIB}/sphinx/util/exceptions.pyc
 ${PYSITELIB}/sphinx/util/fileutil.py
 ${PYSITELIB}/sphinx/util/fileutil.pyc
+${PYSITELIB}/sphinx/util/http_date.py
+${PYSITELIB}/sphinx/util/http_date.pyc
 ${PYSITELIB}/sphinx/util/i18n.py
 ${PYSITELIB}/sphinx/util/i18n.pyc
 ${PYSITELIB}/sphinx/util/images.py
@@ -688,8 +684,6 @@ ${PYSITELIB}/sphinx/util/inspect.py
 ${PYSITELIB}/sphinx/util/inspect.pyc
 ${PYSITELIB}/sphinx/util/inventory.py
 ${PYSITELIB}/sphinx/util/inventory.pyc
-${PYSITELIB}/sphinx/util/jsdump.py
-${PYSITELIB}/sphinx/util/jsdump.pyc
 ${PYSITELIB}/sphinx/util/logging.py
 ${PYSITELIB}/sphinx/util/logging.pyc
 ${PYSITELIB}/sphinx/util/matching.py
@@ -704,16 +698,10 @@ ${PYSITELIB}/sphinx/util/parallel.py
 ${PYSITELIB}/sphinx/util/parallel.pyc
 ${PYSITELIB}/sphinx/util/png.py
 ${PYSITELIB}/sphinx/util/png.pyc
-${PYSITELIB}/sphinx/util/pycompat.py
-${PYSITELIB}/sphinx/util/pycompat.pyc
 ${PYSITELIB}/sphinx/util/requests.py
 ${PYSITELIB}/sphinx/util/requests.pyc
 ${PYSITELIB}/sphinx/util/rst.py
 ${PYSITELIB}/sphinx/util/rst.pyc
-${PYSITELIB}/sphinx/util/smartypants.py
-${PYSITELIB}/sphinx/util/smartypants.pyc
-${PYSITELIB}/sphinx/util/stemmer/__init__.py
-${PYSITELIB}/sphinx/util/stemmer/__init__.pyc
 ${PYSITELIB}/sphinx/util/tags.py
 ${PYSITELIB}/sphinx/util/tags.pyc
 ${PYSITELIB}/sphinx/util/template.py

Index: pkgsrc/textproc/py-sphinx/distinfo
diff -u pkgsrc/textproc/py-sphinx/distinfo:1.61 pkgsrc/textproc/py-sphinx/distinfo:1.62
--- pkgsrc/textproc/py-sphinx/distinfo:1.61     Tue Oct 25 18:36:42 2022
+++ pkgsrc/textproc/py-sphinx/distinfo  Thu May  4 09:42:10 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.61 2022/10/25 18:36:42 adam Exp $
+$NetBSD: distinfo,v 1.62 2023/05/04 09:42:10 adam Exp $
 
-BLAKE2s (Sphinx-5.3.0.tar.gz) = 0d8f4c51fb958d609389482cb90a4c6b0464101ee0dbf0a798c0492982c8cc57
-SHA512 (Sphinx-5.3.0.tar.gz) = cd2321409f7566c6333d6fc5c4eb4ed2d07490923b0c8762a31f062d9e5d86bbd9bd2c2bb3b93a00b37f31940173404dba8259de940fe402a248cf66a72cd7ae
-Size (Sphinx-5.3.0.tar.gz) = 6811365 bytes
+BLAKE2s (Sphinx-7.0.0.tar.gz) = 43ee3e1bcb9e517f84bdf6678403a70bcd644ab4a5e48db7f51ab9bcc4877271
+SHA512 (Sphinx-7.0.0.tar.gz) = a0fbfc1ae2e08cbaac712339f44878a8604bff981967f0b2f729052a264179593f25a592702f03b06576ea1ca227513f3d3a3ba6c5b0a13f8aa3282949090711
+Size (Sphinx-7.0.0.tar.gz) = 6663795 bytes



Home | Main Index | Thread Index | Old Index