forked from pool/python-sphinx-autobuild
- update to 2024.09.03:
* Fix support for Python 3.9. * Fix running sphinx-autobuild via entry point scripts. * Run sphinx-build in a subprocess to mitigate autdoc issues. * Support the -M 'make mode' option for sphinx-build. * Add a missing dependency on watchfiles. * Adopt Ruff in place of flake8 and black. * Drop python-livereload. * Add starlette and uvicorn as dependencies. * Implement hot reloading via websockets. * Run Sphinx rebuilds in an asynchronous executor. * Declare support for Python 3.9, 3.10, 3.11, and 3.12 * Drop support for Python 3.8 and earlier * Allow passing relative paths to --ignore * Support all valid sphinx-build options (except Make-mode) * Fix path issues on Windows * Differentiate pre-build command failures from Sphinx failures OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinx-autobuild?expand=0&rev=3
This commit is contained in:
@@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Sep 8 16:21:06 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 2024.09.03:
|
||||||
|
* Fix support for Python 3.9.
|
||||||
|
* Fix running sphinx-autobuild via entry point scripts.
|
||||||
|
* Run sphinx-build in a subprocess to mitigate autdoc issues.
|
||||||
|
* Support the -M 'make mode' option for sphinx-build.
|
||||||
|
* Add a missing dependency on watchfiles.
|
||||||
|
* Adopt Ruff in place of flake8 and black.
|
||||||
|
* Drop python-livereload.
|
||||||
|
* Add starlette and uvicorn as dependencies.
|
||||||
|
* Implement hot reloading via websockets.
|
||||||
|
* Run Sphinx rebuilds in an asynchronous executor.
|
||||||
|
* Declare support for Python 3.9, 3.10, 3.11, and 3.12
|
||||||
|
* Drop support for Python 3.8 and earlier
|
||||||
|
* Allow passing relative paths to --ignore
|
||||||
|
* Support all valid sphinx-build options (except Make-mode)
|
||||||
|
* Fix path issues on Windows
|
||||||
|
* Differentiate pre-build command failures from Sphinx failures
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 6 13:04:27 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
|
Mon Mar 6 13:04:27 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-sphinx-autobuild
|
# spec file for package python-sphinx-autobuild
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -17,26 +17,31 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: python-sphinx-autobuild
|
Name: python-sphinx-autobuild
|
||||||
Version: 2021.3.14
|
Version: 2024.9.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Rebuild Sphinx documentation on changes, with live-reload in the browser
|
Summary: Rebuild Sphinx documentation on changes, with live-reload in the browser
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/executablebooks/sphinx-autobuild
|
URL: https://github.com/executablebooks/sphinx-autobuild
|
||||||
Source: https://files.pythonhosted.org/packages/source/s/sphinx-autobuild/sphinx-autobuild-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/s/sphinx-autobuild/sphinx_autobuild-%{version}.tar.gz
|
||||||
BuildRequires: python-rpm-macros
|
|
||||||
BuildRequires: %{python_module setuptools}
|
|
||||||
BuildRequires: %{python_module Sphinx}
|
BuildRequires: %{python_module Sphinx}
|
||||||
BuildRequires: %{python_module colorama}
|
BuildRequires: %{python_module colorama}
|
||||||
BuildRequires: %{python_module livereload}
|
BuildRequires: %{python_module flit-core}
|
||||||
|
BuildRequires: %{python_module httpx}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module starlette}
|
||||||
|
BuildRequires: %{python_module uvicorn}
|
||||||
|
BuildRequires: %{python_module watchfiles}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
# /SECTION
|
# /SECTION
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
Requires: python-colorama
|
|
||||||
Requires: python-livereload
|
|
||||||
Requires: python-Sphinx
|
Requires: python-Sphinx
|
||||||
|
Requires: python-colorama
|
||||||
|
Requires: python-watchfiles
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun):update-alternatives
|
Requires(postun): update-alternatives
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@@ -44,18 +49,18 @@ BuildArch: noarch
|
|||||||
Rebuild Sphinx documentation on changes, with live-reload in the browser.
|
Rebuild Sphinx documentation on changes, with live-reload in the browser.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n sphinx-autobuild-%{version}
|
%setup -q -n sphinx_autobuild-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_clone -a %{buildroot}%{_bindir}/sphinx-autobuild
|
%python_clone -a %{buildroot}%{_bindir}/sphinx-autobuild
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%pytest
|
%pytest -k 'not test_application'
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%python_install_alternative sphinx-autobuild
|
%python_install_alternative sphinx-autobuild
|
||||||
@@ -64,10 +69,10 @@ Rebuild Sphinx documentation on changes, with live-reload in the browser.
|
|||||||
%python_uninstall_alternative sphinx-autobuild
|
%python_uninstall_alternative sphinx-autobuild
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc AUTHORS NEWS.rst README.md
|
%doc AUTHORS.rst NEWS.rst README.rst
|
||||||
%license LICENSE
|
%license LICENSE.rst
|
||||||
%python_alternative %{_bindir}/sphinx-autobuild
|
%python_alternative %{_bindir}/sphinx-autobuild
|
||||||
%{python_sitelib}/sphinx_autobuild
|
%{python_sitelib}/sphinx_autobuild
|
||||||
%{python_sitelib}/sphinx_autobuild-%{version}*-info
|
%{python_sitelib}/sphinx_autobuild-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:de1ca3b66e271d2b5b5140c35034c89e47f263f2cd5db302c9217065f7443f05
|
|
||||||
size 206402
|
|
3
sphinx_autobuild-2024.9.3.tar.gz
Normal file
3
sphinx_autobuild-2024.9.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:75929a5a92b932da8d29837406d6d973a927c456f30986a27f1f20b067897892
|
||||||
|
size 13370
|
Reference in New Issue
Block a user