From fbe435e249982422e99f2a6f729fd9f692b589d4 Mon Sep 17 00:00:00 2001 From: tigro Date: Sat, 14 Dec 2024 23:15:55 +0300 Subject: [PATCH] import python-breathe-4.35.0-13.el10 --- .gitignore | 40 +--- .python-breathe.metadata | 1 + SOURCES/956.patch | 27 +++ SOURCES/964.patch | 25 +++ SOURCES/breathe-4.35.0.tar.gz.sig | Bin 0 -> 566 bytes SOURCES/vermware.key | 127 +++++++++++ SPECS/python-breathe.spec | 342 ++++++++++++++++++++++++++++++ python-breathe.spec | 95 --------- rhel_sphinx.patch | 11 - sources | 2 - 10 files changed, 523 insertions(+), 147 deletions(-) create mode 100644 .python-breathe.metadata create mode 100644 SOURCES/956.patch create mode 100644 SOURCES/964.patch create mode 100644 SOURCES/breathe-4.35.0.tar.gz.sig create mode 100644 SOURCES/vermware.key create mode 100644 SPECS/python-breathe.spec delete mode 100644 python-breathe.spec delete mode 100644 rhel_sphinx.patch delete mode 100644 sources diff --git a/.gitignore b/.gitignore index ad11089..bdb066c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,39 +1 @@ -/breathe-a423389dfe2935962b3b27586602cfc3521fb54a.tar.gz -/breathe-3375ea3c582e190fa08f5cfbd5eea8d68492ac75.tar.gz -/breathe-3ba9c2046322415ef8933654395c84de896ac7b7.tar.gz -/breathe-5bbf647bb222d1d26351dc4ff808ede03f750705.tar.gz -/breathe-c60e46ef189af6cb3bab918a87236dabfe1ecb53.tar.gz -/v4.7.2.tar.gz -/v4.7.3.tar.gz -/v4.13.0.post0.tar.gz -/v4.13.1.tar.gz -/v4.14.0.tar.gz -/v4.14.1.tar.gz -/v4.14.2.tar.gz -/v4.15.0.tar.gz -/v4.16.0.tar.gz -/v4.18.0.tar.gz -/v4.19.2.tar.gz -/v4.20.0.tar.gz -/v4.21.0.tar.gz -/v4.22.0.tar.gz -/v4.22.1.tar.gz -/v4.23.0.tar.gz -/v4.24.0.tar.gz -/v4.24.1.tar.gz -/v4.25.1.tar.gz -/v4.26.0.tar.gz -/v4.27.0.tar.gz -/v4.29.0.tar.gz -/v4.29.1.tar.gz -/breathe-4.29.1.tar.gz.sig -/breathe-4.30.0.tar.gz.sig -/v4.30.0.tar.gz -/breathe-4.31.0.tar.gz.sig -/v4.31.0.tar.gz -/v4.33.0.tar.gz -/breathe-4.33.0.tar.gz.sig -/v4.33.1.tar.gz -/breathe-4.33.1.tar.gz.sig -/v4.34.0.tar.gz -/breathe-4.34.0.tar.gz.sig +SOURCES/v4.35.0.tar.gz diff --git a/.python-breathe.metadata b/.python-breathe.metadata new file mode 100644 index 0000000..96341de --- /dev/null +++ b/.python-breathe.metadata @@ -0,0 +1 @@ +7aa56955d19e778185f7e2775b395e92cf5b6b5d SOURCES/v4.35.0.tar.gz diff --git a/SOURCES/956.patch b/SOURCES/956.patch new file mode 100644 index 0000000..6531d8c --- /dev/null +++ b/SOURCES/956.patch @@ -0,0 +1,27 @@ +From 46abd77157a2a57e81586e4f8765ae8f1a09d167 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Mark=C3=A9ta?= +Date: Wed, 4 Oct 2023 15:53:59 +0200 +Subject: [PATCH] support Sphinx 7.2 + +--- + breathe/project.py | 2 +- + tests/test_renderer.py | 6 +++++- + 2 files changed, 6 insertions(+), 2 deletions(-) + +diff --git a/tests/test_renderer.py b/tests/test_renderer.py +index a858c65d..73a29e4e 100644 +--- a/tests/test_renderer.py ++++ b/tests/test_renderer.py +@@ -35,7 +35,11 @@ def app(test_params, app_params, make_app, shared_result): + """ + args, kwargs = app_params + assert "srcdir" in kwargs +- kwargs["srcdir"].makedirs(exist_ok=True) ++ try: ++ kwargs["srcdir"].mkdir(parents=True, exist_ok=True) ++ except AttributeError: ++ # old version of Sphinx ++ kwargs["srcdir"].makedirs(exist_ok=True) + (kwargs["srcdir"] / "conf.py").write_text("") + app_ = make_app(*args, **kwargs) + yield app_ diff --git a/SOURCES/964.patch b/SOURCES/964.patch new file mode 100644 index 0000000..52fbfb7 --- /dev/null +++ b/SOURCES/964.patch @@ -0,0 +1,25 @@ +From e487d63ca45304fc9e4c0b27de163302aa91ed35 Mon Sep 17 00:00:00 2001 +From: Scott Main +Date: Fri, 8 Dec 2023 10:41:12 -0800 +Subject: [PATCH] Fix PosixPath issue with Sphinx 7.2 + +Just need to cast the path to a string. + +Fixes https://github.com/breathe-doc/breathe/issues/944 +--- + breathe/project.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/breathe/project.py b/breathe/project.py +index 865236e8..f5b780a4 100644 +--- a/breathe/project.py ++++ b/breathe/project.py +@@ -113,7 +113,7 @@ def __init__(self, app: Sphinx): + # Assume general build directory is the doctree directory without the last component. + # We strip off any trailing slashes so that dirname correctly drops the last part. + # This can be overridden with the breathe_build_directory config variable +- self._default_build_dir = os.path.dirname(app.doctreedir.rstrip(os.sep)) ++ self._default_build_dir = os.path.dirname(str(app.doctreedir).rstrip(os.sep)) + self.project_count = 0 + self.project_info_store: Dict[str, ProjectInfo] = {} + self.project_info_for_auto_store: Dict[str, AutoProjectInfo] = {} diff --git a/SOURCES/breathe-4.35.0.tar.gz.sig b/SOURCES/breathe-4.35.0.tar.gz.sig new file mode 100644 index 0000000000000000000000000000000000000000..17d406636ce53a5162000ac47a086850b5694c1e GIT binary patch literal 566 zcmV-60?GY}0y6{v0SW*e79j+R?N|aI>dn>id!Xj0FJgBV>YbJa0%RvPvj7SS5T`F< zcNXfMmiw3x0MC^}Vi16gZ_**NRCvaD&YmB{PrufTap3VuuJorvGbk$t-6H5ikQ%xq z(S3i!J$ozNqX;!s=9cW2D}nuty-HGEVN)}8WkW2iNw`mVR!2(sMQDrZ*=q_x3P18YNO%t?I%a7=piYqGR zgXbMhjssp#(rx?j=5}iSL@PJFt@nP*UpphyJXyR%CZ)1h3I-W>g3bYO-sS9X=bDmd zIqE?zSE-v}sZ+(!t*#-y-5@eS>?#g&uU3Yf`9mTComL>n)USwBetYqP1oxxHCKD8( zfY4o3Bz>KF<=;%oRtOUMnRx|hXZraE4Gg#GRYTk|e`VYvs72&MSyEn80b|Oysq@ep zBq+d1;CVyDxhEaOk-(u7{qudVZ#9Fo$6=1b|A%E34r2-OlJMUx_W*Muu4z(|MQG?t z&JrGT7yuCYsQZ#6woAeEe{mx@h<1MCtw#H8>GmZmm?dW!tz4AovPG-S$8B=xkruwI zDA#h0zq4yT?99-?tE2ZACf+;!y8P7`@0B?(n=py+khYXBjtYIl_MJ_Vtl7Ry!(xQ@ Eo= 1.8.4 +BuildRequires: python%{python3_pkgversion}-devel +BuildRequires: python%{python3_pkgversion}-setuptools +BuildRequires: %{py3_dist six} >= 1.9 +%if 0%{?rhel} +BuildRequires: %{py3_dist Sphinx} +%else +# Sphinx>=4.0,!=5.0.0 +BuildRequires: ((%{py3_dist Sphinx} >= 4.0 and %{py3_dist Sphinx} < 5.0.0) or %{py3_dist Sphinx} > 5.0.0) +%endif +BuildRequires: %{py3_dist docutils} >= 0.12 +BuildRequires: %{py3_dist Jinja2} >= 2.7.3 +BuildRequires: %{py3_dist MarkupSafe} >= 0.23 +BuildRequires: %{py3_dist Pygments} >= 1.6 +BuildRequires: %{py3_dist pytest} +%if %{with doc} +BuildRequires: %{py3_dist sphinx-copybutton} +BuildRequires: %{py3_dist furo} +%endif +# NOTE: git is only needed because part of the build process checks if it's in +# a git repo +BuildRequires: git +BuildRequires: make +BuildRequires: gnupg2 + +# Set the name of the documentation directory +%global _docdir_fmt %{name} + +%description %_description + +%package -n python%{python3_pkgversion}-%{srcname} +Summary: %{summary} +Requires: python%{python3_pkgversion}-six +Requires: doxygen >= 1.8.4 +%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} + +%description -n python%{python3_pkgversion}-%{srcname} %_description + +%package doc +Summary: Documentation files for %{srcname} +# tinyxml uses zlib license +License: BSD-3-Clause AND Zlib + +%description doc +This package contains documentation for developer documentation for %{srcname}. + +%prep +%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}' +%autosetup -n %{srcname}-%{version} -p1 + +%build +%py3_build +%if %{with doc} +# Build the documentation +# Remove -W (turn warnings into errors) from SPHINXOPTS to fix the build for f39 +%make_build SPHINXOPTS="-v -E" DOXYGEN=$(which doxygen) PYTHONPATH=$(pwd) html +# Remove temporary build files +rm documentation/build/html/.buildinfo +%endif + +%install +%py3_install + +%check +%make_build dev-test + +%files -n python%{python3_pkgversion}-%{srcname} +%doc README.rst +%{_bindir}/breathe-apidoc +%{python3_sitelib}/* +%license LICENSE + +%if %{with doc} +%files doc +%doc documentation/build/html +%license LICENSE +%endif + +%changelog +* Sat Dec 14 2024 Arkady L. Shane - 4.35.0-13 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Tue Oct 29 2024 Troy Dawson - 4.35.0-13 +- Bump release for October 2024 mass rebuild: + +* Thu Jul 04 2024 George Pantelakis - 4.35.0-12 +- add gating for RHEL-10 + +* Mon Jun 24 2024 Troy Dawson - 4.35.0-11 +- Bump release for June 2024 mass rebuild + +* Fri Jan 26 2024 Fedora Release Engineering - 4.35.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 4.35.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Thu Jan 11 2024 Sérgio M. Basto - 4.35.0-8 +- Fix for Sphinx 7.2 compatlble with older Sphinx + +* Thu Jan 11 2024 Sérgio M. Basto - 4.35.0-7 +- Fix the build for f39 and rawhide + +* Fri Aug 04 2023 Dmitry Belyavskiy - 4.35.0-6 +- migrated to SPDX license + +* Fri Jul 21 2023 Fedora Release Engineering - 4.35.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Thu Jun 29 2023 Python Maint - 4.35.0-4 +- Rebuilt for Python 3.12 + +* Thu Apr 20 2023 Yaakov Selkowitz - 4.35.0-3 +- Do not build docs in RHEL builds + +* Fri Apr 07 2023 Dan Čermák - 4.35.0-2 +- Add gpg source verification back + +* Thu Mar 30 2023 Karolina Surma - 4.35.0-1 +- Update to 4.35.0 (resolves rhbz#2179094) + +* Fri Jan 20 2023 Fedora Release Engineering - 4.34.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Wed Nov 09 2022 Karolina Surma - 4.34.0-5 +- Backport upstream patch to enable successful build with Sphinx 5.3+ + +* Mon Sep 19 2022 Tom Rix - 4.34.0-4 +- Use any version of sphinx on RHEL + +* Fri Jul 22 2022 Fedora Release Engineering - 4.34.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 4.30.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Sat Jun 12 2021 Dan Čermák - 4.30.0-1 +- New upstream release 4.30.0 +- Fixes rhbz#1955833 + +* Fri Jun 04 2021 Python Maint - 4.29.1-2 +- Rebuilt for Python 3.10 + +* Sat Apr 24 2021 Dan Čermák - 4.29.1-1 +- New upstream release 4.29.1 +- Fixes rhbz#1953104 + +* Thu Apr 15 2021 Dan Čermák - 4.29.0-1 +- New upstream release 4.29.0 +- Fixes rhbz#1944821 + +* Wed Mar 10 2021 Charalampos Stratakis - 4.27.0-2 +- Fix an IndexError when generating toctree (rhbz#1930910) + +* Tue Feb 16 2021 Charalampos Stratakis - 4.27.0-1 +- New upstream release 4.27.0 (rhbz#1918566, rhbz#1929448) + +* Wed Jan 27 2021 Fedora Release Engineering - 4.26.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Thu Jan 14 2021 Charalampos Stratakis - 4.26.0-1 +- New upstream release 4.26.0 (rhbz#1914147) + +* Sun Dec 20 2020 Dan Čermák - 4.25.1-1 +- New upstream release 4.25.1 (rhbz#1908213) + +* Mon Dec 7 2020 Dan Čermák - 4.24.1-1 +- New upstream release 4.24.1 (rhbz#1903366) + +* Mon Nov 16 2020 Dan Čermák - 4.24.0-1 +- New upstream release 4.24.0 (rhbz#1897984) + +* Tue Nov 3 2020 Dan Čermák - 4.23.0-1 +- New upstream release 4.23.0 (rhbz#1889874) + +* Thu Oct 1 2020 Dan Čermák - 4.22.1-1 +- New upstream release 4.22.1 (rhbz#1880753) + +* Thu Oct 1 2020 Dan Čermák - 4.22.0-1 +- New upstream release 4.22.0 (rhbz#1880753) + +* Sun Sep 13 2020 Dan Čermák - 4.21.0-1 +- New upstream release 4.21.0 (rhbz#1878050) + +* Thu Aug 20 2020 Dan Čermák - 4.20.0-1 +- New upstream release 4.20.0 (rhbz#1870404) + +* Thu Aug 20 2020 Dan Čermák - 4.19.2-3 +- Add patch to add support for sphinx 3.2 + +* Wed Jul 29 2020 Fedora Release Engineering - 4.19.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Thu Jul 9 2020 Dan Čermák - 4.19.2-1 +- New upstream release 4.19.2 (rhbz#1821614, rhbz#1823718) + +* Mon Jun 8 2020 Dan Čermák - 4.19.1-1 +- New upstream release 4.19.1 (rhbz#1821614, rhbz#1823718) + +* Tue May 26 2020 Miro Hrončok - 4.14.2-2 +- Rebuilt for Python 3.9 + +* Tue May 5 2020 Dan Čermák - 4.18.0-1 +- New upstream release 4.18.0 (rhbz#1821614, rhbz#1823718) + +* Thu Apr 23 2020 Dan Čermák - 4.16.0-1 +- New upstream release 4.16.0 (rhbz#1821614, rhbz#1823718) + +* Wed Apr 15 2020 Dan Čermák - 4.15.0-1 +- New upstream release 4.15.0 + +* Wed Apr 8 2020 Dan Čermák - 4.14.2-1 +- New upstream release 4.14.2 + +* Sun Feb 2 2020 Dan Čermák - 4.14.1-1 +- New upstream release 4.14.1 + +* Thu Jan 30 2020 Fedora Release Engineering - 4.14.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Nov 26 2019 Dan Čermák - 4.14.0-1 +- New upstream release 4.14.0 + +* Thu Oct 03 2019 Miro Hrončok - 4.13.1-2 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Wed Aug 28 2019 Dan Čermák - 4.13.1-1 +- New upstream release 4.13.1 +- Enable test run in %%check + +* Mon Aug 19 2019 Miro Hrončok - 4.13.0.post0-3 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 4.13.0.post0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Mon Jul 15 2019 Dan Čermák - 4.13.0.post0-1 +- New upstream release 4.13.0.post0 + +* Mon Mar 18 2019 Miro Hrončok - 4.7.3-7 +- Subpackage python2-breathe has been removed + See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal + +* Sat Feb 02 2019 Fedora Release Engineering - 4.7.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jul 13 2018 Fedora Release Engineering - 4.7.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jun 19 2018 Miro Hrončok - 4.7.3-4 +- Rebuilt for Python 3.7 + +* Wed Feb 21 2018 Iryna Shcherbina - 4.7.3-3 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Fri Feb 09 2018 Fedora Release Engineering - 4.7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Tue Oct 24 2017 Dave Johansen - 4.7.3-1 +- Upstream update + +* Tue Aug 22 2017 Dave Johansen - 4.7.2-1 +- Upstream update + +* Wed Aug 16 2017 Dave Johansen - 4.7.1-1 +- Upstream update + +* Wed Aug 09 2017 Dave Johansen - 4.7.0-1 +- Upstream update + +* Sat Aug 05 2017 Dave Johansen - 4.6.0-3 +- Fix for node without parent + +* Thu Jul 27 2017 Fedora Release Engineering - 4.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Apr 29 2017 Miro Hrončok - 4.6.0-1 +- Upstream update + +* Sat Feb 11 2017 Fedora Release Engineering - 4.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Dec 20 2016 Miro Hrončok - 4.4.0-2 +- Rebuild for Python 3.6 + +* Mon Dec 19 2016 Dave Johansen - 4.4.0-1 +- Upstream release + +* Mon Dec 19 2016 Miro Hrončok - 4.2.0-5 +- Rebuild for Python 3.6 + +* Tue Jul 19 2016 Fedora Release Engineering - 4.2.0-4 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Fri May 13 2016 Dave Johansen - 4.2.0-3 +- Fix for Python 3 + +* Sun Apr 10 2016 Orion Poplawski - 4.2.0-2 +- Fix BR/Rs + +* Wed Apr 06 2016 Dave Johansen - 4.2.0-1 +- Initial RPM release + +## END: Generated by rpmautospec diff --git a/python-breathe.spec b/python-breathe.spec deleted file mode 100644 index 5f88a11..0000000 --- a/python-breathe.spec +++ /dev/null @@ -1,95 +0,0 @@ -%global owner michaeljones -%global srcname breathe -%global _description \ -Breathe is an extension to reStructuredText and Sphinx to be able to read and \ -render the Doxygen xml output. - -Name: python-%{srcname} -Version: 4.34.0 -Release: %autorelease -Summary: Adds support for Doxygen xml output to reStructuredText and Sphinx - -License: BSD -URL: https://github.com/%{owner}/%{srcname} -Source0: %{URL}/archive/v%{version}.tar.gz -Source1: %{URL}/releases/download/v%{version}/%{srcname}-%{version}.tar.gz.sig -Source2: https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x8aed58021feacdd5f27ba0e6a72f627716ea9d96#./vermware.key - -Patch1: rhel_sphinx.patch - -BuildArch: noarch - -BuildRequires: doxygen >= 1.8.4 -BuildRequires: python%{python3_pkgversion}-devel -BuildRequires: python%{python3_pkgversion}-setuptools -BuildRequires: %{py3_dist six} >= 1.9 -%if 0%{?rhel} -BuildRequires: %{py3_dist Sphinx} -%else -# Sphinx>=4.0,<6,!=5.0.0 -BuildRequires: ((%{py3_dist Sphinx} >= 4.0 and %{py3_dist Sphinx} < 5.0.0) or (%{py3_dist Sphinx} > 5.0.0 and %{py3_dist Sphinx} < 6)) -%endif -BuildRequires: %{py3_dist docutils} >= 0.12 -BuildRequires: %{py3_dist Jinja2} >= 2.7.3 -BuildRequires: %{py3_dist MarkupSafe} >= 0.23 -BuildRequires: %{py3_dist Pygments} >= 1.6 -BuildRequires: %{py3_dist pytest} -# NOTE: git is only needed because part of the build process checks if it's in -# a git repo -BuildRequires: git -BuildRequires: make -BuildRequires: gnupg2 - -# Set the name of the documentation directory -%global _docdir_fmt %{name} - -%description %_description - -%package -n python%{python3_pkgversion}-%{srcname} -Summary: %{summary} -Requires: python%{python3_pkgversion}-six -Requires: doxygen >= 1.8.4 -%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} - -%description -n python%{python3_pkgversion}-%{srcname} %_description - -%package doc -Summary: Documentation files for %{srcname} -# tinyxml uses zlib license -License: BSD and zlib - -%description doc -This package contains documentation for developer documentation for %{srcname}. - -%prep -%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}' -%setup -n %{srcname}-%{version} -%if 0%{?rhel} -%patch1 -p1 -%endif - -%build -%py3_build -# Build the documentation -%make_build DOXYGEN=$(which doxygen) PYTHONPATH=$(pwd) html -# Remove temporary build files -rm documentation/build/html/.buildinfo - -%install -%py3_install - -%check -%make_build dev-test - -%files -n python%{python3_pkgversion}-%{srcname} -%doc README.rst -%{_bindir}/breathe-apidoc -%{python3_sitelib}/* -%license LICENSE - -%files doc -%doc documentation/build/html -%license LICENSE - -%changelog -%autochangelog diff --git a/rhel_sphinx.patch b/rhel_sphinx.patch deleted file mode 100644 index d2a3793..0000000 --- a/rhel_sphinx.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ./setup.py.orig 2022-09-27 22:28:17.199596002 +0100 -+++ ./setup.py 2022-09-27 22:28:31.967541206 +0100 -@@ -17,7 +17,7 @@ Breathe is an extension to reStructuredT - render `Doxygen `__ xml output. - """ - --requires = ["Sphinx>=4.0,<6,!=5.0.0", "docutils>=0.12"] -+requires = ["Sphinx", "docutils>=0.12"] - - if sys.version_info < (3, 6): - print("ERROR: Sphinx requires at least Python 3.6 to run.") diff --git a/sources b/sources deleted file mode 100644 index cfe7689..0000000 --- a/sources +++ /dev/null @@ -1,2 +0,0 @@ -SHA512 (v4.34.0.tar.gz) = 7f3134575f1b8c4d7c96ebc735e33f656b5c6046de3fa2aee95d5e895fb33f0a83fb4b1c64dd69b9deca20b785868b42d6b1d5e39741500ff5f9d82bf3f130b4 -SHA512 (breathe-4.34.0.tar.gz.sig) = b400b70ebced30c53bea68ff6a14054e0357bfb92d1adc875069c185adc4da3b64a4138627a10e22804aafd920cfcc3519d7697ba226af9fa629639917553587