Received: by mail.netbsd.org (Postfix, from userid 605) id E8D7F84EEF; Sat, 13 Jan 2024 07:04:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 238DB84EBB for ; Sat, 13 Jan 2024 07:04:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id HUymc5iZ4HEu for ; Sat, 13 Jan 2024 07:04:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id EB6CA84CE2 for ; Sat, 13 Jan 2024 07:04:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D6178FA42; Sat, 13 Jan 2024 07:04:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1705129472274890" MIME-Version: 1.0 Date: Sat, 13 Jan 2024 07:04:32 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-sphinxcontrib-bibtex To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240113070432.D6178FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1705129472274890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Jan 13 07:04:32 UTC 2024 Modified Files: pkgsrc/textproc/py-sphinxcontrib-bibtex: Makefile PLIST distinfo Log Message: py-sphinxcontrib-bibtex: updated to 2.6.2 2.6.2 (10 January 2023) ----------------------- * Fix bibliography header repetition when recompiling documents 2.6.1 (27 August 2023) ---------------------- * The ``:cite:alp:`` role in the super style now also suppresses the sup tag in addition to the brackets, to make it easier to apply the necessary formatting around the citation. 2.6.0 (24 August 2023) ---------------------- * Pre- and post-text in citations are now supported for the author_year, label, and super referencing styles. The syntax is ``:cite:p:`{pre-text}key{post-text}``` Refer to the documentation for more details. * New alternative style citations are now supported for the author_year, label, and super parenthetical referencing styles, which are identical to parenthetical citations but without the brackets. The syntax is ``:cite:alp:`key```. Refer to the documentation for more details. * Exclude docutils 0.18 and 0.19 to fix generation of a spurious div tag in the html builder. * Add test for running the extension on Cython modules. * Add test for running the extension with autoapi. * Sphinx versions 2.x (and lower) are no longer supported. New minimum required version of Sphinx is 3.5. * Running pytest without arguments will now by default skip all marked tests that require additional dependencies (currently numpydoc, rinohtype, and cython). * Fix encoding issues when running tests on Windows. * Python 3.6 is EOL and is therefore no longer officially supported. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/textproc/py-sphinxcontrib-bibtex/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/py-sphinxcontrib-bibtex/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/textproc/py-sphinxcontrib-bibtex/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1705129472274890 Content-Disposition: inline Content-Length: 9609 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-sphinxcontrib-bibtex/Makefile diff -u pkgsrc/textproc/py-sphinxcontrib-bibtex/Makefile:1.9 pkgsrc/textproc/py-sphinxcontrib-bibtex/Makefile:1.10 --- pkgsrc/textproc/py-sphinxcontrib-bibtex/Makefile:1.9 Tue Nov 7 22:38:06 2023 +++ pkgsrc/textproc/py-sphinxcontrib-bibtex/Makefile Sat Jan 13 07:04:32 2024 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2023/11/07 22:38:06 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2024/01/13 07:04:32 adam Exp $ -DISTNAME= sphinxcontrib-bibtex-1.0.0 +DISTNAME= sphinxcontrib-bibtex-2.6.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=s/sphinxcontrib-bibtex/} @@ -11,15 +10,21 @@ HOMEPAGE= https://github.com/mcmtroffaes COMMENT= Sphinx extension for BibTeX style citations LICENSE= 2-clause-bsd -DEPENDS+= ${PYPKGPREFIX}-oset>=0.1.3:../../devel/py-oset -DEPENDS+= ${PYPKGPREFIX}-six>=1.4.1:../../lang/py-six -DEPENDS+= ${PYPKGPREFIX}-sphinx>=2.0:../../textproc/py-sphinx -DEPENDS+= ${PYPKGPREFIX}-pybtex>=0.20:../../textproc/py-pybtex -DEPENDS+= ${PYPKGPREFIX}-pybtex-docutils>=0.2.0:../../textproc/py-pybtex-docutils +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel +DEPENDS+= ${PYPKGPREFIX}-docutils>=0.20:../../textproc/py-docutils +DEPENDS+= ${PYPKGPREFIX}-sphinx>=3.5:../../textproc/py-sphinx +DEPENDS+= ${PYPKGPREFIX}-pybtex>=0.24:../../textproc/py-pybtex +DEPENDS+= ${PYPKGPREFIX}-pybtex-docutils>=1.0.0:../../textproc/py-pybtex-docutils USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 38 -.include "../../lang/python/egg.mk" +.include "../../lang/python/pyversion.mk" +.if ${PYTHON_VERSION} < 310 +DEPENDS+= ${PYPKGPREFIX}-importlib-metadata>=3.6:../../devel/py-importlib-metadata +.endif + +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-sphinxcontrib-bibtex/PLIST diff -u pkgsrc/textproc/py-sphinxcontrib-bibtex/PLIST:1.3 pkgsrc/textproc/py-sphinxcontrib-bibtex/PLIST:1.4 --- pkgsrc/textproc/py-sphinxcontrib-bibtex/PLIST:1.3 Thu Jul 26 11:54:34 2018 +++ pkgsrc/textproc/py-sphinxcontrib-bibtex/PLIST Sat Jan 13 07:04:32 2024 @@ -1,27 +1,100 @@ -@comment $NetBSD: PLIST,v 1.3 2018/07/26 11:54:34 jaapb Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/namespace_packages.txt -${PYSITELIB}/${EGG_INFODIR}/not-zip-safe -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt -${PYSITELIB}/${EGG_NAME}-nspkg.pth +@comment $NetBSD: PLIST,v 1.4 2024/01/13 07:04:32 adam Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.rst +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt +${PYSITELIB}/${WHEEL_INFODIR}/namespace_packages.txt +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt ${PYSITELIB}/sphinxcontrib/bibtex/__init__.py ${PYSITELIB}/sphinxcontrib/bibtex/__init__.pyc ${PYSITELIB}/sphinxcontrib/bibtex/__init__.pyo -${PYSITELIB}/sphinxcontrib/bibtex/cache.py -${PYSITELIB}/sphinxcontrib/bibtex/cache.pyc -${PYSITELIB}/sphinxcontrib/bibtex/cache.pyo +${PYSITELIB}/sphinxcontrib/bibtex/bibfile.py +${PYSITELIB}/sphinxcontrib/bibtex/bibfile.pyc +${PYSITELIB}/sphinxcontrib/bibtex/bibfile.pyo +${PYSITELIB}/sphinxcontrib/bibtex/citation_target.py +${PYSITELIB}/sphinxcontrib/bibtex/citation_target.pyc +${PYSITELIB}/sphinxcontrib/bibtex/citation_target.pyo ${PYSITELIB}/sphinxcontrib/bibtex/directives.py ${PYSITELIB}/sphinxcontrib/bibtex/directives.pyc ${PYSITELIB}/sphinxcontrib/bibtex/directives.pyo +${PYSITELIB}/sphinxcontrib/bibtex/domain.py +${PYSITELIB}/sphinxcontrib/bibtex/domain.pyc +${PYSITELIB}/sphinxcontrib/bibtex/domain.pyo +${PYSITELIB}/sphinxcontrib/bibtex/foot_directives.py +${PYSITELIB}/sphinxcontrib/bibtex/foot_directives.pyc +${PYSITELIB}/sphinxcontrib/bibtex/foot_directives.pyo +${PYSITELIB}/sphinxcontrib/bibtex/foot_domain.py +${PYSITELIB}/sphinxcontrib/bibtex/foot_domain.pyc +${PYSITELIB}/sphinxcontrib/bibtex/foot_domain.pyo +${PYSITELIB}/sphinxcontrib/bibtex/foot_roles.py +${PYSITELIB}/sphinxcontrib/bibtex/foot_roles.pyc +${PYSITELIB}/sphinxcontrib/bibtex/foot_roles.pyo ${PYSITELIB}/sphinxcontrib/bibtex/nodes.py ${PYSITELIB}/sphinxcontrib/bibtex/nodes.pyc ${PYSITELIB}/sphinxcontrib/bibtex/nodes.pyo +${PYSITELIB}/sphinxcontrib/bibtex/plugin.py +${PYSITELIB}/sphinxcontrib/bibtex/plugin.pyc +${PYSITELIB}/sphinxcontrib/bibtex/plugin.pyo +${PYSITELIB}/sphinxcontrib/bibtex/py.typed +${PYSITELIB}/sphinxcontrib/bibtex/richtext.py +${PYSITELIB}/sphinxcontrib/bibtex/richtext.pyc +${PYSITELIB}/sphinxcontrib/bibtex/richtext.pyo ${PYSITELIB}/sphinxcontrib/bibtex/roles.py ${PYSITELIB}/sphinxcontrib/bibtex/roles.pyc ${PYSITELIB}/sphinxcontrib/bibtex/roles.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/__init__.py +${PYSITELIB}/sphinxcontrib/bibtex/style/__init__.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/__init__.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/names/__init__.py +${PYSITELIB}/sphinxcontrib/bibtex/style/names/__init__.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/names/__init__.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/names/last.py +${PYSITELIB}/sphinxcontrib/bibtex/style/names/last.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/names/last.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/__init__.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/__init__.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/__init__.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/author_year.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/author_year.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/author_year.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_author_year.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_author_year.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_author_year.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_foot.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_foot.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_foot.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_label.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_label.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_label.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_super.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_super.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/basic_super.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_author.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_author.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_author.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_empty.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_empty.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_empty.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_label.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_label.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_label.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_year.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_year.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/extra_year.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/foot.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/foot.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/foot.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/label.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/label.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/label.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/super_.py +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/super_.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/referencing/super_.pyo +${PYSITELIB}/sphinxcontrib/bibtex/style/template.py +${PYSITELIB}/sphinxcontrib/bibtex/style/template.pyc +${PYSITELIB}/sphinxcontrib/bibtex/style/template.pyo ${PYSITELIB}/sphinxcontrib/bibtex/transforms.py ${PYSITELIB}/sphinxcontrib/bibtex/transforms.pyc ${PYSITELIB}/sphinxcontrib/bibtex/transforms.pyo +${PYSITELIB}/sphinxcontrib_bibtex-2.6.2-py3.12-nspkg.pth Index: pkgsrc/textproc/py-sphinxcontrib-bibtex/distinfo diff -u pkgsrc/textproc/py-sphinxcontrib-bibtex/distinfo:1.6 pkgsrc/textproc/py-sphinxcontrib-bibtex/distinfo:1.7 --- pkgsrc/textproc/py-sphinxcontrib-bibtex/distinfo:1.6 Tue Oct 26 11:23:14 2021 +++ pkgsrc/textproc/py-sphinxcontrib-bibtex/distinfo Sat Jan 13 07:04:32 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2021/10/26 11:23:14 nia Exp $ +$NetBSD: distinfo,v 1.7 2024/01/13 07:04:32 adam Exp $ -BLAKE2s (sphinxcontrib-bibtex-1.0.0.tar.gz) = b032d12cbec38fba4061e1fa08ee81e4e7f069f0b9dff36a8d493fa38f4b4e54 -SHA512 (sphinxcontrib-bibtex-1.0.0.tar.gz) = 17822421e924eaa07c235ae0541fafd7a7d3dd89b8e8260dc0224c1c931fae8e2e1212864515863592b8938fe2b65b46d10a6260800b27e6172273b3407aa6d8 -Size (sphinxcontrib-bibtex-1.0.0.tar.gz) = 47829 bytes +BLAKE2s (sphinxcontrib-bibtex-2.6.2.tar.gz) = 6e3df02e2a67ae1e5cc435214a492559d4f217bc224db4f6ba01639e4da7bd45 +SHA512 (sphinxcontrib-bibtex-2.6.2.tar.gz) = a2b48306078de902cfdedbcafe94ea8aefcfff5285ec651fd1d0fe2c452818f9383ba486fb64e2ef4a294782445db2854bbdd158ab2aa1a49ed4adef85e9c82b +Size (sphinxcontrib-bibtex-2.6.2.tar.gz) = 117459 bytes --_----------=_1705129472274890--