diff --git a/.gitignore b/.gitignore index bbe40c2..247a3ab 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,4 @@ /Sphinx-4.2.0.tar.gz /Sphinx-4.3.0.tar.gz /Sphinx-4.3.1.tar.gz +/Sphinx-4.4.0.tar.gz diff --git a/python-sphinx.spec b/python-sphinx.spec index 5d578a2..b078b31 100644 --- a/python-sphinx.spec +++ b/python-sphinx.spec @@ -24,11 +24,11 @@ %global upstream_name Sphinx Name: python-sphinx -%global general_version 4.3.1 +%global general_version 4.4.0 #global prerel ... %global upstream_version %{general_version}%{?prerel} Version: %{general_version}%{?prerel:~%{prerel}} -Release: 2%{?dist} +Release: 1%{?dist} Epoch: 1 Summary: Python documentation generator @@ -364,6 +364,10 @@ mkdir %{buildroot}%{python3_sitelib}/sphinxcontrib %changelog +* Tue Feb 01 2022 Karolina Surma - 1:4.4.0-1 +- Update to 4.4.0 +- Fixes rhbz#2033955 + * Fri Jan 21 2022 Fedora Release Engineering - 1:4.3.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index 522a0fd..fa001e2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (Sphinx-4.3.1.tar.gz) = 0b7ceb369783d30685c10783fe10b58e92a2f5ae50dda1b6cfb021b0d33fb424a2c6cddc6b97018b63347127fc74ed4f7a442c312ce9e75ceb537f127a46bb9d +SHA512 (Sphinx-4.4.0.tar.gz) = f5780a7da7a5d758b0e145ab9a7f191a9c65fd3ca4624ca3a04f0d161e3cd6c7133df53ff56e42f012687cbce0460178c2e7957974b5b929b341c98db996c640 diff --git a/sphinx-test_theming.diff b/sphinx-test_theming.diff index 966528a..18e3cb0 100644 --- a/sphinx-test_theming.diff +++ b/sphinx-test_theming.diff @@ -5,8 +5,8 @@ diff -ru Sphinx-1.7.6/tests/test_theming.py Sphinx-1.7.6_patched/tests/test_them themes.append('alabaster') # test Theme class API -- assert set(app.html_themes.keys()) == set(themes) -+ assert set(app.html_themes.keys()) >= set(themes) - assert app.html_themes['test-theme'] == app.srcdir / 'test_theme' / 'test-theme' - assert app.html_themes['ziptheme'] == app.srcdir / 'ziptheme.zip' - assert app.html_themes['staticfiles'] == app.srcdir / 'test_theme' / 'staticfiles' +- assert set(app.registry.html_themes.keys()) == set(themes) ++ assert set(app.registry.html_themes.keys()) >= set(themes) + assert app.registry.html_themes['test-theme'] == app.srcdir / 'test_theme' / 'test-theme' + assert app.registry.html_themes['ziptheme'] == app.srcdir / 'ziptheme.zip' + assert app.registry.html_themes['staticfiles'] == app.srcdir / 'test_theme' / 'staticfiles'