pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/py-sphinx-gallery
Module Name: pkgsrc
Committed By: adam
Date: Wed May 20 04:42:54 UTC 2026
Modified Files:
pkgsrc/textproc/py-sphinx-gallery: Makefile PLIST distinfo
Log Message:
py-sphinx-gallery: updated to 0.21.0
v0.21.0
Support for Sphinx 5 dropped in this release. Requirement is now Sphinx >= 6.
Implemented enhancements:
- Add support for dynamic filtering by tag
Fixed bugs:
- Fix subsection header sanitization when ``nested_sections=False``
- Fix ``generate_gallery_rst`` when ``nested_sections=False`` user provides own ``index.rst``
Documentation
- DOC Add v0.20.0 to CHANGES.rst
- DOC Note sphinx bump in changes
- DOC Fix typos in nested_sections docs
- Small typo on the configuration page of documentation
- Update the list of projects
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/textproc/py-sphinx-gallery/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/textproc/py-sphinx-gallery/PLIST
cvs rdiff -u -r1.7 -r1.8 pkgsrc/textproc/py-sphinx-gallery/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-gallery/Makefile
diff -u pkgsrc/textproc/py-sphinx-gallery/Makefile:1.15 pkgsrc/textproc/py-sphinx-gallery/Makefile:1.16
--- pkgsrc/textproc/py-sphinx-gallery/Makefile:1.15 Tue Jan 6 11:18:18 2026
+++ pkgsrc/textproc/py-sphinx-gallery/Makefile Wed May 20 04:42:54 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2026/01/06 11:18:18 wiz Exp $
+# $NetBSD: Makefile,v 1.16 2026/05/20 04:42:54 adam Exp $
-DISTNAME= sphinx_gallery-0.20.0
+DISTNAME= sphinx_gallery-0.21.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
CATEGORIES= textproc python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/sphinx-gallery/}
@@ -11,20 +11,18 @@ COMMENT= Sphinx extension that builds an
LICENSE= modified-bsd
TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=78:../../devel/py-setuptools
-TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
+TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=7:../../devel/py-setuptools_scm
DEPENDS+= ${PYPKGPREFIX}-Pillow-[0-9]*:../../graphics/py-Pillow
-DEPENDS+= ${PYPKGPREFIX}-sphinx>=5:../../textproc/py-sphinx
+DEPENDS+= ${PYPKGPREFIX}-sphinx>=6:../../textproc/py-sphinx
TEST_DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml
TEST_DEPENDS+= ${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib
TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
USE_LANGUAGES= # none
-PYTHON_VERSIONS_INCOMPATIBLE= 310 311 # py-sphinx
+PY_RENAME_BINARIES= sphinx_gallery_py2jupyter
-post-install:
- cd ${DESTDIR}${PREFIX}/bin && \
- ${MV} sphinx_gallery_py2jupyter sphinx_gallery_py2jupyter-${PYVERSSUFFIX} || ${TRUE}
+PYTHON_VERSIONS_INCOMPATIBLE= 310 311 # py-sphinx
.include "../../lang/python/wheel.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/textproc/py-sphinx-gallery/PLIST
diff -u pkgsrc/textproc/py-sphinx-gallery/PLIST:1.8 pkgsrc/textproc/py-sphinx-gallery/PLIST:1.9
--- pkgsrc/textproc/py-sphinx-gallery/PLIST:1.8 Fri Dec 26 10:25:33 2025
+++ pkgsrc/textproc/py-sphinx-gallery/PLIST Wed May 20 04:42:54 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2025/12/26 10:25:33 adam Exp $
+@comment $NetBSD: PLIST,v 1.9 2026/05/20 04:42:54 adam Exp $
bin/sphinx_gallery_py2jupyter-${PYVERSSUFFIX}
${PYSITELIB}/${WHEEL_INFODIR}/METADATA
${PYSITELIB}/${WHEEL_INFODIR}/RECORD
@@ -19,10 +19,14 @@ ${PYSITELIB}/sphinx_gallery/_static/bind
${PYSITELIB}/sphinx_gallery/_static/broken_example.png
${PYSITELIB}/sphinx_gallery/_static/jupyterlite_badge_logo.svg
${PYSITELIB}/sphinx_gallery/_static/no_image.png
+${PYSITELIB}/sphinx_gallery/_static/sg-tags.js
${PYSITELIB}/sphinx_gallery/_static/sg_gallery-binder.css
${PYSITELIB}/sphinx_gallery/_static/sg_gallery-dataframe.css
${PYSITELIB}/sphinx_gallery/_static/sg_gallery-rendered-html.css
${PYSITELIB}/sphinx_gallery/_static/sg_gallery.css
+${PYSITELIB}/sphinx_gallery/_testing.py
+${PYSITELIB}/sphinx_gallery/_testing.pyc
+${PYSITELIB}/sphinx_gallery/_testing.pyo
${PYSITELIB}/sphinx_gallery/backreferences.py
${PYSITELIB}/sphinx_gallery/backreferences.pyc
${PYSITELIB}/sphinx_gallery/backreferences.pyo
@@ -264,6 +268,9 @@ ${PYSITELIB}/sphinx_gallery/tests/tinybu
${PYSITELIB}/sphinx_gallery/tests/tinybuild/utils.py
${PYSITELIB}/sphinx_gallery/tests/tinybuild/utils.pyc
${PYSITELIB}/sphinx_gallery/tests/tinybuild/utils.pyo
+${PYSITELIB}/sphinx_gallery/typing.py
+${PYSITELIB}/sphinx_gallery/typing.pyc
+${PYSITELIB}/sphinx_gallery/typing.pyo
${PYSITELIB}/sphinx_gallery/utils.py
${PYSITELIB}/sphinx_gallery/utils.pyc
${PYSITELIB}/sphinx_gallery/utils.pyo
Index: pkgsrc/textproc/py-sphinx-gallery/distinfo
diff -u pkgsrc/textproc/py-sphinx-gallery/distinfo:1.7 pkgsrc/textproc/py-sphinx-gallery/distinfo:1.8
--- pkgsrc/textproc/py-sphinx-gallery/distinfo:1.7 Fri Dec 26 10:25:33 2025
+++ pkgsrc/textproc/py-sphinx-gallery/distinfo Wed May 20 04:42:54 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2025/12/26 10:25:33 adam Exp $
+$NetBSD: distinfo,v 1.8 2026/05/20 04:42:54 adam Exp $
-BLAKE2s (sphinx_gallery-0.20.0.tar.gz) = 0b1cea37bfbe25e928ca176042df5ca8a2bda5732406b5446845ab2e017641dc
-SHA512 (sphinx_gallery-0.20.0.tar.gz) = 571ae48d7aba2b7807b68cdab7d73a538fe8cfb72436c80f85cd3c309d4ded6a5368400485f7684e607a980b1679438be4148ca9681c75a80f754ca084a716b3
-Size (sphinx_gallery-0.20.0.tar.gz) = 473502 bytes
+BLAKE2s (sphinx_gallery-0.21.0.tar.gz) = 1acebaaf89ba033f1233883548c49acca5048e9e73f2b02a4d1b5a4c7e4db9af
+SHA512 (sphinx_gallery-0.21.0.tar.gz) = 718c37ac4e90e06ee00afe5678fbce6db82cc117c48b10bd85b82d065a59fed49aaf8c33c047fe6574412d6c23514b3b14b7377b2b99ce2c46698fe79b83d6c0
+Size (sphinx_gallery-0.21.0.tar.gz) = 483616 bytes
Home |
Main Index |
Thread Index |
Old Index