commit be7b634f223d0d9a6a60a05720b37633d2727c72 Author: Adrian Schröter Date: Thu Oct 19 04:43:47 2023 +0200 Sync from SUSE:ALP:Source:Standard:1.0 python-sphinxcontrib-serializinghtml revision f731a0ddbcf0fb9c5697e96f038ed8c2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fecc750 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/_multibuild b/_multibuild new file mode 100644 index 0000000..83bd4e9 --- /dev/null +++ b/_multibuild @@ -0,0 +1,3 @@ + + test + diff --git a/python-sphinxcontrib-serializinghtml.changes b/python-sphinxcontrib-serializinghtml.changes new file mode 100644 index 0000000..3d57a10 --- /dev/null +++ b/python-sphinxcontrib-serializinghtml.changes @@ -0,0 +1,42 @@ +------------------------------------------------------------------- +Tue Aug 29 19:11:22 UTC 2023 - Matej Cepl + +- Clean up the SPEC file + +------------------------------------------------------------------- +Mon Aug 28 11:50:32 UTC 2023 - Markéta Machová + +- Update to 1.0.9 + * Drop support for Python 3.5, 3.6, 3.7, and 3.8 + * Raise minimum required Sphinx version to 5.0 + * Fix tests for Sphinx 7.1 and below + * Use ``os.PathLike`` over ``pathlib.Path`` + * Serialise context["script_files"] and context["css_files"] as their filenames + on Sphinx 7.2.0. + +------------------------------------------------------------------- +Fri Apr 21 12:37:01 UTC 2023 - Dirk Müller + +- add sle15_python_module_pythons (jsc#PED-68) + +------------------------------------------------------------------- +Thu Apr 13 22:45:11 UTC 2023 - Matej Cepl + +- Make calling of %{sle15modernpython} optional. + +------------------------------------------------------------------- +Sun Jun 6 12:16:15 UTC 2021 - Dirk Müller + +- update to 1.1.5: + * Remove deprecation warnings for Sphinx-3.x + +------------------------------------------------------------------- +Fri Mar 6 11:07:42 UTC 2020 - pgajdos@suse.com + +- version update to 1.1.4 + * Fix package metadata + +------------------------------------------------------------------- +Thu Jun 6 12:35:53 UTC 2019 - Tomáš Chvátal + +- Initial commit, needed by Sphinx diff --git a/python-sphinxcontrib-serializinghtml.spec b/python-sphinxcontrib-serializinghtml.spec new file mode 100644 index 0000000..50b6eaf --- /dev/null +++ b/python-sphinxcontrib-serializinghtml.spec @@ -0,0 +1,81 @@ +# +# spec file +# +# Copyright (c) 2023 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +%define skip_python2 1 +%global flavor @BUILD_FLAVOR@%{nil} +%if "%{flavor}" == "test" +%define psuffix -test +%bcond_without test +%else +%define psuffix %{nil} +%bcond_with test +%endif +%{?sle15_python_module_pythons} +Name: python-sphinxcontrib-serializinghtml%{psuffix} +Version: 1.1.9 +Release: 0 +Summary: Sphinx extension which outputs serialized HTML files +License: BSD-2-Clause +Group: Development/Languages/Python +URL: https://github.com/sphinx-doc/sphinxcontrib-serializinghtml +Source: https://files.pythonhosted.org/packages/source/s/sphinxcontrib-serializinghtml/sphinxcontrib_serializinghtml-%{version}.tar.gz +BuildRequires: %{python_module flit-core} +BuildRequires: %{python_module pip} +BuildRequires: %{python_module wheel} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-Sphinx >= 5.0 +BuildArch: noarch +%if %{with test} +BuildRequires: %{python_module Sphinx >= 5.0} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module sphinxcontrib-serializinghtml >= %{version}} +%endif +%python_subpackages + +%description +sphinxcontrib-serializinghtml is a sphinx extension which outputs +"serialized" HTML files (json and pickle). + +%prep +%setup -q -n sphinxcontrib_serializinghtml-%{version} + +%build +%pyproject_wheel + +%install +%if !%{with test} +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} +%endif + +%if %{with test} +%check +%pytest +%endif + +%if !%{with test} +%files %{python_files} +%doc README.rst CHANGES +%license LICENSE +%dir %{python_sitelib}/sphinxcontrib +%{python_sitelib}/sphinxcontrib/serializinghtml +%{python_sitelib}/sphinxcontrib_serializinghtml-%{version}*-info +%endif + +%changelog diff --git a/sphinxcontrib_serializinghtml-1.1.9.tar.gz b/sphinxcontrib_serializinghtml-1.1.9.tar.gz new file mode 100644 index 0000000..1a9ba32 --- /dev/null +++ b/sphinxcontrib_serializinghtml-1.1.9.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c64ff898339e1fac29abd2bf5f11078f3ec413cfe9c046d3120d7ca65530b54 +size 15446