Sync from SUSE:SLFO:Main python-alabaster revision 109d6b59075b086d49380e6ba0dcd877

This commit is contained in:
Adrian Schröter 2024-12-13 11:07:41 +01:00
parent 931536b823
commit c20ae7a37c
4 changed files with 96 additions and 19 deletions

BIN
alabaster-0.7.13.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
alabaster-1.0.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,80 @@
-------------------------------------------------------------------
Thu Aug 22 09:00:16 UTC 2024 - Frantisek Simorda <frantisek.simorda@suse.com>
- Update to 1.0.0:
* Dropped support for Python 3.9 and earlier.
* Dropped support for Sphinx 6.1 and earlier.
* Use a new SVG image for the GitHub banner.
* #217 Use the new searchfield component for the search box. Patch by Tim Hoffmann.
* #104 Allow translating strings in relations.html.
* #125 Do not underline linked images.
* Patch by Joshua Bronson.
* #169 Do not ignore the Pygments background colour. Patch by Matthias Geier.
* #174 Fix clipping caused by incorrect CSS breakpoints.
-------------------------------------------------------------------
Sun Jan 14 15:46:36 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.7.16:
* :bug:`215` Do not display logo_name if it is set to False.
* :feature:`213` Allow an arbitrary string in the logo_name
option.
* :feature:`114` Improved sidebar CSS styles.
* :issue:`178` Deprecated canonical_url in favor of
html_baseurl.
* :bug:`200` Removed duplicate <meta name="viewport" ... />
tag.
* :bug:`188` Removed underline from whitespace.
* :bug:`164` Removed type="text/javascript" from <script>
elements.
* :bug:`161` Replaced &copy; with unicode decimal code entity
#169;.
* Dropped support for Python 3.8 and earlier.
* Dropped support for Sphinx 3.3 and earlier.
* :issue:`198` Fix horizontal scrolling on mobile.
* :issue:`206` Properly support the html_support_sphinx config
value.
* :issue:`211` Fix the GitHub 'forkme' banner.
* Added alabaster_version_info to the HTML template context.
* Declare support for Python 3.13.
* Adopt the Ruff linter and formatter.
* Migrate from CircleCI to GitHub Actions.
* Modernized the project: s/Travis/Circle/ for CI, README
badges, setup.cfg removal, metadata refresh, etc.
* Modernized the project: s/Travis/Circle/ for CI, README
badges, setup.cfg removal, metadata refresh, etc.
* Dropped support for Python 2 and Python <3.6. This includes
various minor updates to work correctly with modern versions
of Sphinx (1.6 at the very least). Thanks to Adam Turner for
a pile of patches here. Warning This change is backwards
incompatible if you're on an old Python version.
-------------------------------------------------------------------
Mon Jan 8 20:50:45 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.7.15:
* :feature:`213` Allow an arbitrary string in the logo_name
option.
* :feature:`114` Improved sidebar CSS styles.
* :issue:`178` Deprecated canonical_url in favor of
html_baseurl.
* :bug:`200` Removed duplicate <meta name="viewport" ... />
tag.
* :bug:`188` Removed underline from whitespace.
* :bug:`164` Removed type="text/javascript" from <script>
elements.
* :bug:`161` Replaced &copy; with unicode decimal code entity
#169;.
* Dropped support for Python 3.8 and earlier.
* Dropped support for Sphinx 3.3 and earlier.
* :issue:`198` Fix horizontal scrolling on mobile.
* :issue:`206` Properly support the html_support_sphinx config
value.
* :issue:`211` Fix the GitHub 'forkme' banner.
* Added alabaster_version_info to the HTML template context.
* Declare support for Python 3.13.
-------------------------------------------------------------------
Fri Apr 21 12:21:46 UTC 2023 - Dirk Müller <dmueller@suse.com>
@ -13,7 +90,7 @@ Mon Jan 16 07:53:54 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.7.13:
* drop support for older than python 3.6
* require sphinx 6+
* require sphinx 6+
-------------------------------------------------------------------
Wed Mar 6 11:21:47 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package python-alabaster
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -16,41 +16,41 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%{?sle15_python_module_pythons}
Name: python-alabaster
Version: 0.7.13
Version: 1.0.0
Release: 0
Summary: Modified Kr Sphinx doc theme
Summary: (c)lean, responsive, configurable theme for the Sphinx
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/bitprophet/alabaster
Source: https://files.pythonhosted.org/packages/source/a/alabaster/alabaster-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
URL: https://alabaster.readthedocs.io/en/latest
Source: https://github.com/sphinx-doc/alabaster/archive/refs/tags/%{version}.tar.gz#/alabaster-%{version}.tar.gz
BuildRequires: %{python_module flit-core}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
This theme is a modified "Kr" Sphinx theme from @kennethreitz
(especially as used in his Requests project), which was itself
originally based on @mitsuhiko's theme used for Flask & related
projects.
Alabaster is a visually (c)lean, responsive, configurable theme for the Sphinx documentation system.
It requires Python 3.10 or newer and Sphinx 6.2 or newer.
%prep
%setup -q -n alabaster-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%{python_sitelib}/alabaster*
%license LICENSE
%license LICENSE.rst
%doc README.rst
%{python_sitelib}/alabaster
%{python_sitelib}/alabaster-%{version}.dist-info
%changelog