python-sphinx_rtd_theme/python-sphinx_rtd_theme.spec

90 lines
2.8 KiB
RPMSpec
Raw Normal View History

#
# spec file
#
# Copyright (c) 2022 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
%bcond_without test
%else
%define psuffix %{nil}
%bcond_with test
%endif
Name: python-sphinx_rtd_theme%{psuffix}
Version: 1.1.1
Release: 0
Summary: ReadTheDocs.org theme for Sphinx
License: Apache-2.0 AND MIT AND OFL-1.1
Group: Development/Languages/Python
URL: https://github.com/snide/sphinx_rtd_theme/
Source: https://files.pythonhosted.org/packages/source/s/sphinx_rtd_theme/sphinx_rtd_theme-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: dos2unix
Accepting request 527415 from home:TheBlackCat:branches:devel:languages:python - Update to 0.2.4 * Yet another patch to deal with extra builders outside Spinx, such as the singlehtml builders from the Read the Docs Sphinx extension - Update to 0.2.3 * Temporarily patch Sphinx issue with ``singlehtml`` builder by inspecting the builder in template. - Update to 0.2.2 * Roll back toctree fix in 0.2.1 (#367). This didn't fix the issue and introduced another bug with toctrees display. - Update to 0.2.1 * Add the ``rel`` HTML attribute to the footer links which point to the previous and next pages. * Fix toctree issue caused by Sphinx singlehtml builder (#367) - Update to 0.2.0 * Adds the ``comments`` block after the ``body`` block in the template * Added "Edit on GitLab" support * Many bug fixes - Update to 0.1.10-alpha * Removes Sphinx dependency * Fixes hamburger on mobile display * Adds a ``body_begin`` block to the template * Add ``prev_next_buttons_location`` which can take the value ``bottom``, ``top``, ``both`` , ``None`` and will display the "Next" and "Previous" buttons accordingly - Update to 0.1.9 * Intermittent scrollbar visibility bug fixed. This change introduces a backwards incompatible change to the theme's layout HTML. This should only be a problem for derivative themes that have overridden styling of nav elements using direct decendant selectors. See `#215`_ for more information. * Safari overscroll bug fixed * Version added to the nav header * Revision id was added to the documentation footer if you are using RTD * An extra block, ``extrafooter`` was added to allow extra content in the document footer block * Fixed modernizr URL * Small display style changes on code blocks, figure captions, and nav elements OBS-URL: https://build.opensuse.org/request/show/527415 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinx_rtd_theme?expand=0&rev=10
2017-09-20 00:13:51 +02:00
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Sphinx
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module Sphinx}
# as per https://github.com/readthedocs/sphinx_rtd_theme/pull/1336 no changes are needed for the new docutils to work
BuildRequires: %{python_module docutils}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module readthedocs-sphinx-ext}
%endif
%python_subpackages
%description
This is a prototype mobile-friendly sphinx theme I made for readthedocs.org. It's
currently in development and includes some rtd variable checks that can be ignored
if you're just trying to use it on your project outside of that site.
%prep
%setup -q -n sphinx_rtd_theme-%{version}
dos2unix OFL-License.txt
# We cannot build the Javascript from source at this time, due to many missing
# dependencies. Convince the build script to skip building the Javascript and
# go on to the python.
mkdir -p build/lib/%{srcname}/static/js
cp -p sphinx_rtd_theme/static/js/badge_only.js build/lib/%{srcname}/static/js
cp -p sphinx_rtd_theme/static/js/theme.js build/lib/%{srcname}/static/js
sed -i "/'build_py'/d" setup.py
%build
%python_build
%install
%if !%{with test}
%python_install
Accepting request 527415 from home:TheBlackCat:branches:devel:languages:python - Update to 0.2.4 * Yet another patch to deal with extra builders outside Spinx, such as the singlehtml builders from the Read the Docs Sphinx extension - Update to 0.2.3 * Temporarily patch Sphinx issue with ``singlehtml`` builder by inspecting the builder in template. - Update to 0.2.2 * Roll back toctree fix in 0.2.1 (#367). This didn't fix the issue and introduced another bug with toctrees display. - Update to 0.2.1 * Add the ``rel`` HTML attribute to the footer links which point to the previous and next pages. * Fix toctree issue caused by Sphinx singlehtml builder (#367) - Update to 0.2.0 * Adds the ``comments`` block after the ``body`` block in the template * Added "Edit on GitLab" support * Many bug fixes - Update to 0.1.10-alpha * Removes Sphinx dependency * Fixes hamburger on mobile display * Adds a ``body_begin`` block to the template * Add ``prev_next_buttons_location`` which can take the value ``bottom``, ``top``, ``both`` , ``None`` and will display the "Next" and "Previous" buttons accordingly - Update to 0.1.9 * Intermittent scrollbar visibility bug fixed. This change introduces a backwards incompatible change to the theme's layout HTML. This should only be a problem for derivative themes that have overridden styling of nav elements using direct decendant selectors. See `#215`_ for more information. * Safari overscroll bug fixed * Version added to the nav header * Revision id was added to the documentation footer if you are using RTD * An extra block, ``extrafooter`` was added to allow extra content in the document footer block * Fixed modernizr URL * Small display style changes on code blocks, figure captions, and nav elements OBS-URL: https://build.opensuse.org/request/show/527415 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinx_rtd_theme?expand=0&rev=10
2017-09-20 00:13:51 +02:00
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%endif
%if %{with test}
%check
%pytest
%endif
%if !%{with test}
%files %{python_files}
%license LICENSE OFL-License.txt Apache-License-2.0.txt
%doc README.rst
%{python_sitelib}/sphinx_rtd_theme*
%endif
%changelog