git: 0fc6fa0565d7 - main - textproc/py-sphinx-inline-tabs: Update to 2023.4.21
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 27 May 2023 04:28:21 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=0fc6fa0565d74b7be1a6053e81a622c995bd1a49 commit 0fc6fa0565d74b7be1a6053e81a622c995bd1a49 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2023-05-27 04:10:35 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2023-05-27 04:10:35 +0000 textproc/py-sphinx-inline-tabs: Update to 2023.4.21 Changes: https://github.com/pradyunsg/sphinx-inline-tabs/commits/main --- textproc/py-sphinx-inline-tabs/Makefile | 3 +-- textproc/py-sphinx-inline-tabs/distinfo | 6 +++--- .../files/patch-src-sphinx_inline_tabs-_impl.py | 15 --------------- 3 files changed, 4 insertions(+), 20 deletions(-) diff --git a/textproc/py-sphinx-inline-tabs/Makefile b/textproc/py-sphinx-inline-tabs/Makefile index cb80943efa1d..4e22ca3ba203 100644 --- a/textproc/py-sphinx-inline-tabs/Makefile +++ b/textproc/py-sphinx-inline-tabs/Makefile @@ -1,6 +1,5 @@ PORTNAME= sphinx-inline-tabs -PORTVERSION= 2022.1.2b11 -PORTREVISION= 2 +PORTVERSION= 2023.4.21 CATEGORIES= textproc python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/textproc/py-sphinx-inline-tabs/distinfo b/textproc/py-sphinx-inline-tabs/distinfo index 0f4be8368297..07fad690445d 100644 --- a/textproc/py-sphinx-inline-tabs/distinfo +++ b/textproc/py-sphinx-inline-tabs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1643971134 -SHA256 (sphinx_inline_tabs-2022.1.2b11.tar.gz) = afb9142772ec05ccb07f05d8181b518188fc55631b26ee803c694e812b3fdd73 -SIZE (sphinx_inline_tabs-2022.1.2b11.tar.gz) = 42520 +TIMESTAMP = 1684104554 +SHA256 (sphinx_inline_tabs-2023.4.21.tar.gz) = 5df2f13f602c158f3f5f6c509e008aeada199a8c76d97ba3aa2822206683bebc +SIZE (sphinx_inline_tabs-2023.4.21.tar.gz) = 42664 diff --git a/textproc/py-sphinx-inline-tabs/files/patch-src-sphinx_inline_tabs-_impl.py b/textproc/py-sphinx-inline-tabs/files/patch-src-sphinx_inline_tabs-_impl.py deleted file mode 100644 index b98a87c5bb3d..000000000000 --- a/textproc/py-sphinx-inline-tabs/files/patch-src-sphinx_inline_tabs-_impl.py +++ /dev/null @@ -1,15 +0,0 @@ ---- src/sphinx_inline_tabs/_impl.py.orig 2021-04-11 11:03:11 UTC -+++ src/sphinx_inline_tabs/_impl.py -@@ -1,7 +1,11 @@ - """The actual implementation.""" - - import itertools --from typing import List, Literal -+from typing import List -+try: -+ from typing import Literal -+except ImportError: -+ from typing_extensions import Literal - - from docutils import nodes - from docutils.parsers.rst import directives