[packages/sphinx-pdg] Up to 8.1.3

arekm arekm at pld-linux.org
Fri Feb 7 17:19:06 CET 2025


commit d3ff96fab7b166a8c146e7307a631560911b5ac7
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date:   Fri Feb 7 16:47:42 2025 +0100

    Up to 8.1.3

 Sphinx-docutils.patch | 33 ---------------------------------
 sphinx-pdg.spec       | 33 ++++++++++++++-------------------
 2 files changed, 14 insertions(+), 52 deletions(-)
---
diff --git a/sphinx-pdg.spec b/sphinx-pdg.spec
index 7d01d5b..373be00 100644
--- a/sphinx-pdg.spec
+++ b/sphinx-pdg.spec
@@ -11,15 +11,14 @@
 Summary:	Sphinx - Python documentation generator
 Summary(pl.UTF-8):	Sphinx - narzędzie do tworzenia dokumentacji dla Pythona
 Name:		sphinx-pdg
-Version:	4.5.0
-Release:	2
+Version:	8.1.3
+Release:	1
 License:	BSD
 Group:		Development/Languages/Python
 #Source0Download: https://pypi.org/simple/Sphinx/
-Source0:	https://files.pythonhosted.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
-# Source0-md5:	ed63e60d798d212c1afdecf8acda690e
+Source0:	https://pypi.debian.net/sphinx/sphinx-%{version}.tar.gz
+# Source0-md5:	845210d4c36be0dac08ec2ce2411a194
 Patch0:		float-ver.patch
-Patch1:		Sphinx-docutils.patch
 URL:		http://www.sphinx-doc.org/
 %if %{with tests} && %(locale -a | grep -q '^C\.utf8$'; echo $?)
 BuildRequires:	glibc-localedb-all
@@ -59,7 +58,7 @@ BuildRequires:	python3-snowballstemmer >= 1.1
 BuildRequires:	python3-sphinxcontrib-applehelp
 BuildRequires:	python3-sphinxcontrib-devhelp
 BuildRequires:	python3-sphinxcontrib-jsmath
-BuildRequires:	python3-sphinxcontrib-htmlhelp >= 2.0.0
+BuildRequires:	python3-sphinxcontrib-htmlhelp >= 2.1.0
 BuildRequires:	python3-sphinxcontrib-serializinghtml >= 1.1.5
 BuildRequires:	python3-sphinxcontrib-qthelp
 %endif
@@ -78,7 +77,7 @@ BuildRequires:	python3-pygments
 BuildRequires:	python3-requests >= 2.5.0
 BuildRequires:	python3-sphinxcontrib-applehelp
 BuildRequires:	python3-sphinxcontrib-devhelp
-BuildRequires:	python3-sphinxcontrib-htmlhelp >= 2.0.0
+BuildRequires:	python3-sphinxcontrib-htmlhelp >= 2.1.0
 BuildRequires:	python3-sphinxcontrib-qthelp
 BuildRequires:	python3-sphinxcontrib-serializinghtml >= 1.1.5
 BuildRequires:	python3-sphinxcontrib-websupport
@@ -151,18 +150,16 @@ Documentation for Sphinx Python documentation generator.
 Dokumentacja do generatora dokumentacji pythonowej Sphinx.
 
 %prep
-%setup -q -n Sphinx-%{version}
-%patch0 -p1
-%patch1 -p1
+%setup -q -n sphinx-%{version}
+%patch -P0 -p1
 
 # needs python-babel with at least de,en,ja locales installed
-%{__rm} tests/test_util_i18n.py
+#%{__rm} tests/test_util_i18n.py
 # requires various latex variants, fails in a ways difficult to diagnose
-%{__rm} tests/test_build_latex.py
+#%{__rm} tests/test_build_latex.py
 
 %build
-%py3_build
-%{__rm} -r sphinx/__pycache__
+%{__python3} -m build --wheel --no-isolation --outdir build-3
 
 %if %{with tests}
 LC_ALL=C.UTF-8 \
@@ -178,9 +175,7 @@ PYTHONPATH=$(pwd) \
 %install
 rm -rf $RPM_BUILD_ROOT
 
-%py3_install
-
-%{__rm} -r sphinx/__pycache__
+%{__python3} -m installer --destdir=$RPM_BUILD_ROOT build-3/*.whl
 
 for f in $RPM_BUILD_ROOT%{_bindir}/*; do
 	%{__mv} "${f}" "${f}-3"
@@ -223,9 +218,9 @@ rm -rf $RPM_BUILD_ROOT
 
 %files -n python3-Sphinx
 %defattr(644,root,root,755)
-%doc AUTHORS CHANGES EXAMPLES LICENSE README.rst
+%doc AUTHORS.rst CHANGES.rst EXAMPLES.rst LICENSE.rst README.rst
 %{py3_sitescriptdir}/sphinx
-%{py3_sitescriptdir}/Sphinx-%{version}-py*.egg-info
+%{py3_sitescriptdir}/sphinx-%{version}.dist-info
 
 %if %{with doc}
 %files doc
diff --git a/Sphinx-docutils.patch b/Sphinx-docutils.patch
deleted file mode 100644
index 0093263..0000000
--- a/Sphinx-docutils.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- Sphinx-4.5.0/setup.py.orig	2021-04-11 12:40:16.000000000 +0200
-+++ Sphinx-4.5.0/setup.py	2022-03-11 06:21:28.393510714 +0100
-@@ -22,7 +22,7 @@ install_requires = [
-     'sphinxcontrib-qthelp',
-     'Jinja2>=2.3',
-     'Pygments>=2.0',
--    'docutils>=0.14,<0.18',
-+    'docutils>=0.14,<0.19',
-     'snowballstemmer>=1.1',
-     'babel>=1.3',
-     'alabaster>=0.7,<0.8',
---- Sphinx-4.5.0/sphinx/ext/intersphinx.py.orig	2022-03-27 17:06:38.000000000 +0200
-+++ Sphinx-4.5.0/sphinx/ext/intersphinx.py	2023-01-07 19:56:37.663002393 +0100
-@@ -572,7 +572,7 @@ class IntersphinxRoleResolver(References
-     default_priority = ReferencesResolver.default_priority - 1
- 
-     def run(self, **kwargs: Any) -> None:
--        for node in self.document.traverse(pending_xref):
-+        for node in self.document.findall(pending_xref):
-             if 'intersphinx' not in node:
-                 continue
-             contnode = cast(nodes.TextElement, node[0].deepcopy())
---- Sphinx-4.5.0/sphinx/environment/__init__.py.orig	2022-03-27 17:06:38.000000000 +0200
-+++ Sphinx-4.5.0/sphinx/environment/__init__.py	2023-01-07 19:57:37.722677021 +0100
-@@ -38,7 +38,7 @@ logger = logging.getLogger(__name__)
- 
- default_settings: Dict[str, Any] = {
-     'auto_id_prefix': 'id',
--    'embed_images': False,
-+    'image_loading': 'link',
-     'embed_stylesheet': False,
-     'cloak_email_addresses': True,
-     'pep_base_url': 'https://peps.python.org/',
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/sphinx-pdg.git/commitdiff/d3ff96fab7b166a8c146e7307a631560911b5ac7



More information about the pld-cvs-commit mailing list