|
|
@ -1,58 +1,71 @@
|
|
|
|
# When bootstrapping sphinx, we don't yet have sphinxcontrib-websupport
|
|
|
|
# When bootstrapping sphinx in Fedora, we don't yet have sphinxcontrib-*
|
|
|
|
# Without it we have warnings in docs, but it's not a hard dependency
|
|
|
|
# Without the packages, we have warnings in docs, but it's not a hard dependency
|
|
|
|
%bcond_without websupport
|
|
|
|
# We don't want to support sphinxcontrib-* in RHEL, hence disabling the dependencies
|
|
|
|
|
|
|
|
%bcond sphinxcontrib %{undefined rhel}
|
|
|
|
# Also, we don't have all the tests requirements
|
|
|
|
# Also, we don't have all the tests requirements
|
|
|
|
%bcond_without tests
|
|
|
|
%bcond tests 1
|
|
|
|
|
|
|
|
|
|
|
|
# Unset -s on python shebang to allow RPM-installed sphinx to be used
|
|
|
|
# Unset -s on python shebang to allow RPM-installed sphinx to be used
|
|
|
|
# with user-installed modules (#1903763)
|
|
|
|
# with user-installed modules (#1903763)
|
|
|
|
%global py3_shebang_flags %nil
|
|
|
|
%undefine _py3_shebang_s
|
|
|
|
|
|
|
|
|
|
|
|
# No internet in Koji
|
|
|
|
# No internet in Koji
|
|
|
|
%bcond_with internet
|
|
|
|
%bcond internet 0
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?rhel} > 7
|
|
|
|
|
|
|
|
# Build without BuildRequires ImageMagick, to skip imgconverter tests
|
|
|
|
# Build without BuildRequires ImageMagick, to skip imgconverter tests
|
|
|
|
%bcond_with imagemagick_tests
|
|
|
|
%bcond imagemagick_tests %{undefined rhel}
|
|
|
|
%else
|
|
|
|
# Same for filelock -- we don't want it in RHEL just to run a handful of tests here
|
|
|
|
%bcond_without imagemagick_tests
|
|
|
|
%bcond filelock_tests %{undefined rhel}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# During texlive updates, sometimes the latex environment is unstable
|
|
|
|
# During texlive updates, sometimes the latex environment is unstable
|
|
|
|
%bcond_without latex_tests
|
|
|
|
%bcond latex_tests 1
|
|
|
|
|
|
|
|
|
|
|
|
%global upstream_name Sphinx
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Name: python-sphinx
|
|
|
|
Name: python-sphinx
|
|
|
|
%global general_version 3.4.3
|
|
|
|
%global general_version 7.2.6
|
|
|
|
#global prerel ...
|
|
|
|
#global prerel ...
|
|
|
|
%global upstream_version %{general_version}%{?prerel}
|
|
|
|
%global upstream_version %{general_version}%{?prerel}
|
|
|
|
Version: %{general_version}%{?prerel:~%{prerel}}
|
|
|
|
Version: %{general_version}%{?prerel:~%{prerel}}
|
|
|
|
Release: 8%{?dist}
|
|
|
|
Release: 10%{?dist}
|
|
|
|
Epoch: 1
|
|
|
|
Epoch: 1
|
|
|
|
Summary: Python documentation generator
|
|
|
|
Summary: Python documentation generator
|
|
|
|
|
|
|
|
|
|
|
|
# Unless otherwise noted, the license for code is BSD
|
|
|
|
# Unless otherwise noted, the license for code is BSD-2-Clause
|
|
|
|
# sphinx/util/inspect.py has bits licensed with PSF license v2 (Python)
|
|
|
|
|
|
|
|
# sphinx/themes/haiku/static/haiku.css_t has bits licensed with MIT
|
|
|
|
# sphinx/themes/haiku/static/haiku.css_t has bits licensed with MIT
|
|
|
|
# JS: JQuery, Underscore, css3-mediaqueries are available under MIT
|
|
|
|
License: BSD-2-Clause AND MIT
|
|
|
|
License: BSD and Python and MIT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
URL: https://www.sphinx-doc.org/
|
|
|
|
URL: https://www.sphinx-doc.org/
|
|
|
|
Source0: %{pypi_source %{upstream_name} %{upstream_version}}
|
|
|
|
Source: %{pypi_source sphinx %{upstream_version}}
|
|
|
|
|
|
|
|
|
|
|
|
# Allow extra themes to exist. We pull in python3-sphinx-theme-alabaster
|
|
|
|
# Allow extra themes to exist. We pull in python3-sphinx-theme-alabaster
|
|
|
|
# which causes that test to fail.
|
|
|
|
# which causes that test to fail.
|
|
|
|
Patch1: sphinx-test_theming.diff
|
|
|
|
Patch: sphinx-test_theming.diff
|
|
|
|
|
|
|
|
|
|
|
|
# Fix autodoc build with extension modules:
|
|
|
|
# Make the first party extensions optional
|
|
|
|
# additionally to AttributeError catch also PycodeError
|
|
|
|
# This removes the runtime dependencies on:
|
|
|
|
# Upstream has replaced one with another in Sphinx 3.5.x and later,
|
|
|
|
# - sphinxcontrib.applehelp
|
|
|
|
# but to prevent any compatibility issues it's safer to only extend
|
|
|
|
# - sphinxcontrib.devhelp
|
|
|
|
# the list of exceptions. Upstream fix:
|
|
|
|
# - sphinxcontrib.jsmath
|
|
|
|
# https://github.com/sphinx-doc/sphinx/commit/50295f18c25020e15e9bc398a0689
|
|
|
|
# - sphinxcontrib.htmlhelp
|
|
|
|
# Bug: https://issues.redhat.com/browse/RHEL-5664
|
|
|
|
# - sphinxcontrib.serializinghtml
|
|
|
|
Patch2: Enable-autodoc-build-with-extension-modules.patch
|
|
|
|
# - sphinxcontrib.qthelp
|
|
|
|
|
|
|
|
# The majority of Fedora RPM packages does not need any of those.
|
|
|
|
|
|
|
|
# By removing the dependencies, we minimize the stuff that's pulled into
|
|
|
|
|
|
|
|
# the buildroots of 700+ of packages.
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
# This is a downstream-only change - rejected upstream.
|
|
|
|
|
|
|
|
# https://github.com/sphinx-doc/sphinx/pull/11747
|
|
|
|
|
|
|
|
Patch: Make-the-first-party-extensions-optional.patch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Fix the expected test docstring to match output in Python 3.11.7, 3.12.1 and later
|
|
|
|
|
|
|
|
# Proposed upstream.
|
|
|
|
|
|
|
|
Patch: https://github.com/sphinx-doc/sphinx/pull/11774.patch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Downstream-only patch replacing snowballstemmer
|
|
|
|
|
|
|
|
# with a dummy implementation doing nothing.
|
|
|
|
|
|
|
|
Patch: Patch-out-snowballstemmer.patch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Account for the changes is enum and type aliases representations
|
|
|
|
|
|
|
|
Patch: Fix-autodoc-tests-with-Python-3.12.3.patch
|
|
|
|
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
|
@ -60,13 +73,15 @@ BuildRequires: make
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
BuildRequires: pyproject-rpm-macros
|
|
|
|
BuildRequires: pyproject-rpm-macros
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with websupport}
|
|
|
|
%if %{with sphinxcontrib}
|
|
|
|
|
|
|
|
# applehelp and jsmath have been orphaned, we cannot use the [docs] extra directly
|
|
|
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinxcontrib-devhelp
|
|
|
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinxcontrib-htmlhelp
|
|
|
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinxcontrib-serializinghtml
|
|
|
|
|
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinxcontrib-qthelp
|
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinxcontrib-websupport
|
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinxcontrib-websupport
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
# for fixes
|
|
|
|
|
|
|
|
BuildRequires: dos2unix
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with tests}
|
|
|
|
%if %{with tests}
|
|
|
|
# tests import _testcapi
|
|
|
|
# tests import _testcapi
|
|
|
|
BuildRequires: python%{python3_pkgversion}-test
|
|
|
|
BuildRequires: python%{python3_pkgversion}-test
|
|
|
@ -149,14 +164,15 @@ Summary: Python documentation generator
|
|
|
|
Recommends: graphviz
|
|
|
|
Recommends: graphviz
|
|
|
|
Recommends: ImageMagick
|
|
|
|
Recommends: ImageMagick
|
|
|
|
|
|
|
|
|
|
|
|
# Bundled JavaScript
|
|
|
|
# Upstream Requires those, but we have a patch to remove the dependency.
|
|
|
|
Provides: bundled(jquery) = 3.5.1
|
|
|
|
# We keep them Recommended to preserve the default user experience.
|
|
|
|
Provides: bundled(underscore) = 1.3.1
|
|
|
|
%if %{with sphinxcontrib}
|
|
|
|
Provides: bundled(css3-mediaqueries) = 1.0
|
|
|
|
# applehelp and jsmath have been orphaned
|
|
|
|
|
|
|
|
Recommends: python%{python3_pkgversion}-sphinxcontrib-devhelp
|
|
|
|
# Obsolete and provide the locale package for a clean upgrade path from RHEL 8->9
|
|
|
|
Recommends: python%{python3_pkgversion}-sphinxcontrib-htmlhelp
|
|
|
|
Obsoletes: python-sphinx-locale < 1:2
|
|
|
|
Recommends: python%{python3_pkgversion}-sphinxcontrib-serializinghtml
|
|
|
|
Provides: python-sphinx-locale = %{epoch}:%{version}-%{release}
|
|
|
|
Recommends: python%{python3_pkgversion}-sphinxcontrib-qthelp
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%description -n python%{python3_pkgversion}-sphinx
|
|
|
|
%description -n python%{python3_pkgversion}-sphinx
|
|
|
|
Sphinx is a tool that makes it easy to create intelligent and
|
|
|
|
Sphinx is a tool that makes it easy to create intelligent and
|
|
|
@ -238,7 +254,7 @@ builder.
|
|
|
|
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
%package doc
|
|
|
|
Summary: Documentation for %{name}
|
|
|
|
Summary: Documentation for %{name}
|
|
|
|
License: BSD
|
|
|
|
License: BSD-2-Clause
|
|
|
|
Recommends: python%{python3_pkgversion}-sphinx = %{epoch}:%{version}-%{release}
|
|
|
|
Recommends: python%{python3_pkgversion}-sphinx = %{epoch}:%{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
%description doc
|
|
|
@ -249,32 +265,36 @@ Brandl. It was originally created to translate the new Python
|
|
|
|
documentation, but has now been cleaned up in the hope that it will be
|
|
|
|
documentation, but has now been cleaned up in the hope that it will be
|
|
|
|
useful to many other projects.
|
|
|
|
useful to many other projects.
|
|
|
|
|
|
|
|
|
|
|
|
This package contains documentation in reST and HTML formats.
|
|
|
|
This package contains documentation in the HTML format.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%prep
|
|
|
|
%autosetup -n %{upstream_name}-%{upstream_version} -p1
|
|
|
|
%autosetup -n sphinx-%{upstream_version} -p1
|
|
|
|
|
|
|
|
|
|
|
|
# fix line encoding of bundled jquery.js
|
|
|
|
|
|
|
|
dos2unix -k ./sphinx/themes/basic/static/jquery.js
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{without imagemagick_tests}
|
|
|
|
%if %{without imagemagick_tests}
|
|
|
|
rm tests/test_ext_imgconverter.py
|
|
|
|
rm tests/test_ext_imgconverter.py
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
# Don't measure coverage:
|
|
|
|
%if %{without filelock_tests}
|
|
|
|
sed -i '/pytest-cov/d' setup.py
|
|
|
|
sed -i '/filelock/d' pyproject.toml
|
|
|
|
# Not needed on recent Pythons, https://github.com/sphinx-doc/sphinx/pull/8483
|
|
|
|
rm tests/test_build_linkcheck.py tests/test_ext_intersphinx.py
|
|
|
|
sed -i '/typed_ast/d' setup.py
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{defined rhel}
|
|
|
|
# unwanted dependency in RHEL, https://bugzilla.redhat.com/show_bug.cgi?id=1945182
|
|
|
|
# unwanted dependency in RHEL, https://bugzilla.redhat.com/show_bug.cgi?id=1945182
|
|
|
|
sed -i '/html5lib/d' setup.py
|
|
|
|
sed -i '/html5lib/d' pyproject.toml
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
# Fix broken links in the bundled underscore.js library
|
|
|
|
# Sphinx' tests import from each other, this feature is not supported by
|
|
|
|
sed -i 's|http://documentcloud.github.com/underscore|https://underscorejs.org|' \
|
|
|
|
# the 'importlib' import mode in pytest. Upstream mitigates this by invoking
|
|
|
|
./sphinx/themes/basic/static/underscore*
|
|
|
|
# `python -m pytest` rather than `pytest` directly, but in the context of the
|
|
|
|
|
|
|
|
# RPM build we explicitly want to test the installed library rather than the
|
|
|
|
|
|
|
|
# one from PWD.
|
|
|
|
|
|
|
|
# https://github.com/sphinx-doc/sphinx/issues/11740
|
|
|
|
|
|
|
|
sed -i '/"--import-mode=importlib",/d' pyproject.toml
|
|
|
|
|
|
|
|
|
|
|
|
%generate_buildrequires
|
|
|
|
%generate_buildrequires
|
|
|
|
%pyproject_buildrequires %{?with_tests:-x test}
|
|
|
|
%pyproject_buildrequires -r %{?with_tests:-x test}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%build
|
|
|
@ -286,6 +306,10 @@ export SPHINXBUILD="%{python3} ../sphinx/cmd/build.py"
|
|
|
|
make html SPHINXBUILD="$SPHINXBUILD"
|
|
|
|
make html SPHINXBUILD="$SPHINXBUILD"
|
|
|
|
make man SPHINXBUILD="$SPHINXBUILD"
|
|
|
|
make man SPHINXBUILD="$SPHINXBUILD"
|
|
|
|
rm -rf _build/html/.buildinfo
|
|
|
|
rm -rf _build/html/.buildinfo
|
|
|
|
|
|
|
|
# Those files are copied to _build/html/_images and loaded to the
|
|
|
|
|
|
|
|
# html pages from there - we can safely remove the duplicated and unused files
|
|
|
|
|
|
|
|
rm -rf _build/html/_static/themes _build/html/_static/tutorial
|
|
|
|
|
|
|
|
rm -f _build/html/_static/more.png _build/html/_static/translation.svg
|
|
|
|
mv _build/html ..
|
|
|
|
mv _build/html ..
|
|
|
|
popd
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
@ -312,12 +336,6 @@ do
|
|
|
|
done
|
|
|
|
done
|
|
|
|
popd
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
|
# Deliver rst files
|
|
|
|
|
|
|
|
rm -rf doc/_build
|
|
|
|
|
|
|
|
sed -i 's|python ../sphinx-build.py|/usr/bin/sphinx-build|' doc/Makefile
|
|
|
|
|
|
|
|
mv doc reST
|
|
|
|
|
|
|
|
rm reST/make.bat
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Move language files to /usr/share;
|
|
|
|
# Move language files to /usr/share;
|
|
|
|
# patch to support this incorporated in 0.6.6
|
|
|
|
# patch to support this incorporated in 0.6.6
|
|
|
|
pushd %{buildroot}%{python3_sitelib}
|
|
|
|
pushd %{buildroot}%{python3_sitelib}
|
|
|
@ -351,16 +369,30 @@ mkdir %{buildroot}%{python3_sitelib}/sphinxcontrib
|
|
|
|
%if %{with tests}
|
|
|
|
%if %{with tests}
|
|
|
|
%check
|
|
|
|
%check
|
|
|
|
# Currently, all linkcheck tests and test_latex_images need internet
|
|
|
|
# Currently, all linkcheck tests and test_latex_images need internet
|
|
|
|
# Ignored files use html5lib
|
|
|
|
# test_build_latex_doc needs internet to download pictures,
|
|
|
|
|
|
|
|
# but fails also with it enabled, we decided to skip it entirely
|
|
|
|
|
|
|
|
# In RHEL builds, skip tests which use html5lib (excluded above)
|
|
|
|
|
|
|
|
# Without snowballstememr, some tests have to be skipped as well.
|
|
|
|
|
|
|
|
k="${k-}${k+ and }not test_meta_keys_are_handled_for_language_en"
|
|
|
|
|
|
|
|
k="${k-}${k+ and }not test_stemmer"
|
|
|
|
|
|
|
|
k="${k-}${k+ and }not test_term_in_heading_and_section"
|
|
|
|
|
|
|
|
k="${k-}${k+ and }not test_IndexBuilder"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{without internet}
|
|
|
|
|
|
|
|
k="${k-}${k+ and }not linkcheck"
|
|
|
|
|
|
|
|
k="${k-}${k+ and }not test_latex_images"
|
|
|
|
|
|
|
|
k="${k-}${k+ and }not test_build_latex_doc"
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%pytest \
|
|
|
|
%pytest \
|
|
|
|
|
|
|
|
%if %{defined rhel}
|
|
|
|
--ignore tests/test_build_html.py \
|
|
|
|
--ignore tests/test_build_html.py \
|
|
|
|
--ignore tests/test_build_latex.py \
|
|
|
|
--ignore tests/test_build_latex.py \
|
|
|
|
--ignore tests/test_build_texinfo.py \
|
|
|
|
--ignore tests/test_build_texinfo.py \
|
|
|
|
--ignore tests/test_domain_std.py \
|
|
|
|
--ignore tests/test_domain_std.py \
|
|
|
|
%if %{without internet}
|
|
|
|
--ignore tests/test_smartquotes.py \
|
|
|
|
-k "not linkcheck and not test_latex_images" \
|
|
|
|
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
;
|
|
|
|
${k+-k }"${k-}"
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -370,7 +402,7 @@ mkdir %{buildroot}%{python3_sitelib}/sphinxcontrib
|
|
|
|
%{_bindir}/sphinx-*
|
|
|
|
%{_bindir}/sphinx-*
|
|
|
|
%{python3_sitelib}/sphinx/
|
|
|
|
%{python3_sitelib}/sphinx/
|
|
|
|
%dir %{python3_sitelib}/sphinxcontrib/
|
|
|
|
%dir %{python3_sitelib}/sphinxcontrib/
|
|
|
|
%{python3_sitelib}/Sphinx-%{upstream_version}.dist-info/
|
|
|
|
%{python3_sitelib}/sphinx-%{upstream_version}.dist-info/
|
|
|
|
%dir %{_datadir}/sphinx/
|
|
|
|
%dir %{_datadir}/sphinx/
|
|
|
|
%dir %{_datadir}/sphinx/locale
|
|
|
|
%dir %{_datadir}/sphinx/locale
|
|
|
|
%dir %{_datadir}/sphinx/locale/*
|
|
|
|
%dir %{_datadir}/sphinx/locale/*
|
|
|
@ -383,32 +415,176 @@ mkdir %{buildroot}%{python3_sitelib}/sphinxcontrib
|
|
|
|
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
%files doc
|
|
|
|
%license LICENSE
|
|
|
|
%license LICENSE
|
|
|
|
%doc html reST
|
|
|
|
%doc html
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
* Tue Nov 21 2023 Karolina Surma <ksurma@redhat.com> - 1:3.4.3-8
|
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1:7.2.6-10
|
|
|
|
- Fix autodoc build with the compiled extension modules
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
Resolves: RHEL-5664
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Aug 22 2024 Karolina Surma <ksurma@redhat.com> - 1:7.2.6-9
|
|
|
|
|
|
|
|
- Fix build with Python 3.12.3+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1:7.2.6-8
|
|
|
|
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jun 10 2024 Lumír Balhar <lbalhar@redhat.com> - 1:7.2.6-7
|
|
|
|
|
|
|
|
- Replace snowballstemmer with a dummy implementation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jan 24 2024 Karolina Surma <ksurma@redhat.com> - 1:7.2.6-6
|
|
|
|
|
|
|
|
- Suppress traceback when importing the weakened sphinxcontrib* dependencies
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1:7.2.6-5
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Dec 12 2023 Karolina Surma <ksurma@redhat.com> - 1:7.2.6-4
|
|
|
|
|
|
|
|
- Fix the tests run when building with Python 3.11.7, 3.12.1 and later
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Nov 16 2023 Miro Hrončok <mhroncok@redhat.com> - 1:7.2.6-3
|
|
|
|
|
|
|
|
- On Fedora, BuildRequire the sphinxcontrib packages to build the documentation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Nov 08 2023 Miro Hrončok <mhroncok@redhat.com> - 1:7.2.6-2
|
|
|
|
|
|
|
|
- Weaken the runtime dependency on:
|
|
|
|
|
|
|
|
- python3-sphinxcontrib-applehelp
|
|
|
|
|
|
|
|
- python3-sphinxcontrib-devhelp
|
|
|
|
|
|
|
|
- python3-sphinxcontrib-jsmath
|
|
|
|
|
|
|
|
- python3-sphinxcontrib-htmlhelp
|
|
|
|
|
|
|
|
- python3-sphinxcontrib-serializinghtml
|
|
|
|
|
|
|
|
- python3-sphinxcontrib-qthelp
|
|
|
|
|
|
|
|
- Packages that want to use them during build need to BuildRequire them explicitly
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Oct 26 2023 Karolina Surma <ksurma@redhat.com> - 1:7.2.6-1
|
|
|
|
|
|
|
|
- Update to 7.2.6
|
|
|
|
|
|
|
|
- Fixes rhbz#2232469
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Sep 21 2023 Karolina Surma <ksurma@redhat.com> - 1:7.1.2-2
|
|
|
|
|
|
|
|
- Fix FTBFS with Pygments 2.16+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Aug 14 2023 Karolina Surma <ksurma@redhat.com> - 1:7.1.2-1
|
|
|
|
|
|
|
|
- Update to 7.1.2
|
|
|
|
|
|
|
|
- Fixes rhbz#2225274
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Aug 07 2023 Karolina Surma <ksurma@redhat.com> - 1:7.0.1-1
|
|
|
|
|
|
|
|
- Update to 7.0.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jul 27 2023 Miro Hrončok <mhroncok@redhat.com> - 1:6.2.1-4
|
|
|
|
|
|
|
|
- Don't use filelock to test this package on RHEL
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:6.2.1-3
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Jul 13 2023 Karolina Surma <ksurma@redhat.com> - 1:6.2.1-2
|
|
|
|
|
|
|
|
- Don't use websupport to build documentation on RHEL
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jun 26 2023 Karolina Surma <ksurma@redhat.com> - 1:6.2.1-1
|
|
|
|
|
|
|
|
- Update to 6.2.1
|
|
|
|
|
|
|
|
- Fixes rhbz#2188968
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jun 16 2023 Python Maint <python-maint@redhat.com> - 1:6.1.3-4
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.12
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 1:6.1.3-3
|
|
|
|
|
|
|
|
- Bootstrap for Python 3.12
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed May 31 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 1:6.1.3-2
|
|
|
|
|
|
|
|
- Avoid html5lib test dependency in RHEL builds
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Mar 10 2023 Karolina Surma <ksurma@redhat.com> - 1:6.1.3-1
|
|
|
|
|
|
|
|
- Update to 6.1.3
|
|
|
|
|
|
|
|
- Fixes rhbz#2135122
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Mar 09 2023 Karolina Surma <ksurma@redhat.com> - 1:5.3.0-4
|
|
|
|
|
|
|
|
- Fix tests related to missing setuptools and Babel 2.12
|
|
|
|
|
|
|
|
- Fixes rhbz#2176685
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jan 31 2023 Karolina Surma <ksurma@redhat.com> - 1:5.3.0-3
|
|
|
|
|
|
|
|
- Fix tests with python-pygments 2.14+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.3.0-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Nov 08 2022 Karolina Surma <ksurma@redhat.com> - 1:5.3.0-1
|
|
|
|
|
|
|
|
- Update to 5.3.0
|
|
|
|
|
|
|
|
- Fixes rhbz#2129546
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Aug 15 2022 Karolina Surma <ksurma@redhat.com> - 1:5.1.1-1
|
|
|
|
|
|
|
|
- Update to 5.1.1
|
|
|
|
|
|
|
|
- Fixes rhbz#2110473
|
|
|
|
|
|
|
|
- Remove reST documentation from the -doc package, ship only HTML
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.0.2-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Jun 21 2022 Karolina Surma <ksurma@redhat.com> - 1:5.0.2-1
|
|
|
|
|
|
|
|
- Update to 5.0.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1:4.5.0-3
|
|
|
|
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1:4.5.0-2
|
|
|
|
|
|
|
|
- Bootstrap for Python 3.11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Apr 01 2022 Karolina Surma <ksurma@redhat.com> - 1:4.5.0-1
|
|
|
|
|
|
|
|
- Update to 4.5.0
|
|
|
|
|
|
|
|
- Fixes rhbz#2068924
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Feb 01 2022 Karolina Surma <ksurma@redhat.com> - 1:4.4.0-1
|
|
|
|
|
|
|
|
- Update to 4.4.0
|
|
|
|
|
|
|
|
- Fixes rhbz#2033955
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.3.1-2
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Nov 29 2021 Karolina Surma <ksurma@redhat.com> - 1:4.3.1-1
|
|
|
|
|
|
|
|
- Update to 4.3.1
|
|
|
|
|
|
|
|
- Fixes rhbz#2027059
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Nov 19 2021 Karolina Surma <ksurma@redhat.com> - 1:4.3.0-1
|
|
|
|
|
|
|
|
- Update to 4.3.0
|
|
|
|
|
|
|
|
- Fixes rhbz#2022111
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Sep 17 2021 Karolina Surma <ksurma@redhat.com> - 1:4.2.0-1
|
|
|
|
|
|
|
|
- Update to 4.2.0
|
|
|
|
|
|
|
|
- Fixes rhbz#2003427
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Sep 16 2021 Karolina Surma <ksurma@redhat.com> - 1:4.1.2-3
|
|
|
|
|
|
|
|
- Display typing objects correctly with Python 3.10 (fix FTBFS)
|
|
|
|
|
|
|
|
- Generate correct reference to parent class if class has `_name` attribute
|
|
|
|
|
|
|
|
- Enable previously deselected test
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Aug 18 2021 Karolina Surma <ksurma@redhat.com> - 1:4.1.2-2
|
|
|
|
|
|
|
|
- Patch python-sphinx to work with python-pygments >=2.10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Mon Aug 02 2021 Karolina Surma <ksurma@redhat.com> - 1:4.1.2-1
|
|
|
|
|
|
|
|
- Update to 4.1.2
|
|
|
|
|
|
|
|
- Fixes rhbz#1979326
|
|
|
|
|
|
|
|
- Backport commit to fix python-sphinx with Python 3.10-rc1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.0.2-4
|
|
|
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jun 11 2021 Karolina Surma <ksurma@redhat.com> - 1:4.0.2-1
|
|
|
|
|
|
|
|
- Update to 4.0.2
|
|
|
|
|
|
|
|
- Fixes rhbz#1948279
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Oct 08 2021 Charalampos Stratakis <cstratak@redhat.com> - 1:3.4.3-7
|
|
|
|
* Thu Jun 03 2021 Python Maint <python-maint@redhat.com> - 1:3.5.4-3
|
|
|
|
- Obsolete and provide the python-sphinx-locale package to fix the upgrade path
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
Related: rhbz#1985219
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Oct 06 2021 Charalampos Stratakis <cstratak@redhat.com> - 1:3.4.3-6
|
|
|
|
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 1:3.5.4-2
|
|
|
|
- Fix broken links in the bundled underscore.js library
|
|
|
|
- Bootstrap for Python 3.10
|
|
|
|
Resolves: rhbz#1985219
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1:3.4.3-5
|
|
|
|
* Mon May 10 2021 Karolina Surma <ksurma@redhat.com> - 1:3.5.4-1
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
- Update to 3.5.4
|
|
|
|
Related: rhbz#1991688
|
|
|
|
- Fixes rhbz#1949477
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:3.4.3-4
|
|
|
|
* Thu Apr 01 2021 Karolina Surma <ksurma@redhat.com> - 1:3.5.3-1
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
- Update to 3.5.3
|
|
|
|
|
|
|
|
- Fixes rhbz#1941161
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Mar 31 2021 Miro Hrončok <mhroncok@redhat.com> - 1:3.4.3-3
|
|
|
|
* Wed Mar 10 2021 Charalampos Stratakis <cstratak@redhat.com> - 1:3.5.2-1
|
|
|
|
- Remove a dependency on html5lib
|
|
|
|
- Update 3.5.2
|
|
|
|
Resolves: rhbz#1945182
|
|
|
|
- Fixes rhbz#1928459
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.4.3-2
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.4.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|