diff --git a/textproc/py-furo/Makefile b/textproc/py-furo/Makefile index 4ff634455a02..8e3141608f0f 100644 --- a/textproc/py-furo/Makefile +++ b/textproc/py-furo/Makefile @@ -1,33 +1,33 @@ PORTNAME= furo -PORTVERSION= 2022.9.29 +PORTVERSION= 2022.12.7 CATEGORIES= textproc python MASTER_SITES= PYPI \ LOCAL/sunpoet:static PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ ${DISTNAME}-static${EXTRACT_SUFX}:static MAINTAINER= sunpoet@FreeBSD.org COMMENT= Clean customizable Sphinx documentation theme WWW= https://github.com/pradyunsg/furo LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=0:www/py-beautifulsoup@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pygments>=2.7:textproc/py-pygments@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}sphinx>=4.0,1<6.0,1:textproc/py-sphinx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx>=5.0,1<7.0,1:textproc/py-sphinx@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sphinx-basic-ng>=0:textproc/py-sphinx-basic-ng@${PY_FLAVOR} USES= python:3.7+ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes post-patch: @${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${FILESDIR}/setup.py > ${WRKSRC}/setup.py post-install: cd ${WRKDIR}/static/ && ${COPYTREE_SHARE} . ${STAGEDIR}${PYTHON_SITELIBDIR}/furo/theme/furo/static/ .include diff --git a/textproc/py-furo/distinfo b/textproc/py-furo/distinfo index 36a7d02c695e..79eafe517f02 100644 --- a/textproc/py-furo/distinfo +++ b/textproc/py-furo/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1664767986 -SHA256 (furo-2022.9.29.tar.gz) = d4238145629c623609c2deb5384f8d036e2a1ee2a101d64b67b4348112470dbd -SIZE (furo-2022.9.29.tar.gz) = 1675250 -SHA256 (furo-2022.9.29-static.tar.gz) = c2ad1ac4f6f7c73b3f467edef131f7ce13bd3576eb40315376469a168b60c8fa -SIZE (furo-2022.9.29-static.tar.gz) = 176128 +TIMESTAMP = 1674590014 +SHA256 (furo-2022.12.7.tar.gz) = d8008f8efbe7587a97ba533c8b2df1f9c21ee9b3e5cad0d27f61193d38b1a986 +SIZE (furo-2022.12.7.tar.gz) = 1675740 +SHA256 (furo-2022.12.7-static.tar.gz) = e86933de920d21f141e3e53e0aed73722c3636fb73bb09aece5eda7b502bd31e +SIZE (furo-2022.12.7-static.tar.gz) = 177664 diff --git a/textproc/py-furo/files/setup.py b/textproc/py-furo/files/setup.py index a6f7a73fef68..1dc7299a3630 100644 --- a/textproc/py-furo/files/setup.py +++ b/textproc/py-furo/files/setup.py @@ -1,47 +1,47 @@ #!/usr/bin/env python # setup.py generated by flit for tools that don't yet use PEP 517 from distutils.core import setup packages = \ ['furo'] package_data = \ {'': ['*'], 'furo': ['assets/*', 'assets/scripts/*', 'assets/styles/*', 'assets/styles/base/*', 'assets/styles/components/*', 'assets/styles/content/*', 'assets/styles/extensions/*', 'assets/styles/variables/*', 'theme/*', 'theme/furo/*', 'theme/furo/components/*', 'theme/furo/partials/*', 'theme/furo/sidebar/*', 'theme/furo/static/*']} package_dir = \ {'': 'src'} install_requires = \ -['beautifulsoup4', 'sphinx >= 4.0,<6.0', 'sphinx-basic-ng', 'pygments >= 2.7'] +['beautifulsoup4', 'sphinx >= 5.0,<7.0', 'sphinx-basic-ng', 'pygments >= 2.7'] entry_points = \ {'sphinx.html_themes': ['furo = furo']} setup(name='furo', version='%%PORTVERSION%%', description='A clean customisable Sphinx documentation theme.', author=None, author_email='Pradyun Gedam ', url=None, packages=packages, package_data=package_data, package_dir=package_dir, install_requires=install_requires, entry_points=entry_points, python_requires='>=3.7', )