Sync from SUSE:SLFO:Main python-sphinxcontrib-jsmath revision 7146610ab779ee117a5488b02aa273a2
This commit is contained in:
commit
c3f7007929
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -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
|
3
_multibuild
Normal file
3
_multibuild
Normal file
@ -0,0 +1,3 @@
|
||||
<multibuild>
|
||||
<package>test</package>
|
||||
</multibuild>
|
27
python-sphinxcontrib-jsmath.changes
Normal file
27
python-sphinxcontrib-jsmath.changes
Normal file
@ -0,0 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 21 12:36:56 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- add sle15_python_module_pythons (jsc#PED-68)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 13 22:45:09 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Make calling of %{sle15modernpython} optional.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 30 10:40:01 UTC 2022 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Add upstream patch sphinx5.patch to fix build with the new Sphinx
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 31 01:54:06 UTC 2020 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
|
||||
|
||||
- Add required suffix to package name for test package. Although
|
||||
no binary package is created, the OBS blocks any dependent
|
||||
packages until also the test package has been built (Giveaway:
|
||||
main and test flavor create the same .src.rpm)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 6 12:26:30 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
||||
- Initial commit, needed by sphinx
|
79
python-sphinxcontrib-jsmath.spec
Normal file
79
python-sphinxcontrib-jsmath.spec
Normal file
@ -0,0 +1,79 @@
|
||||
#
|
||||
# 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
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}%global flavor @BUILD_FLAVOR@%{nil}
|
||||
%if "%{flavor}" == "test"
|
||||
%define psuffix -test
|
||||
%bcond_without test
|
||||
%else
|
||||
%bcond_with test
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-sphinxcontrib-jsmath%{?psuffix}
|
||||
Version: 1.0.1
|
||||
Release: 0
|
||||
Summary: Sphinx extension which renders display math in HTML via JavaScript
|
||||
License: BSD-2-Clause
|
||||
Group: Development/Languages/Python
|
||||
URL: http://sphinx-doc.org/
|
||||
Source: https://files.pythonhosted.org/packages/source/s/sphinxcontrib-jsmath/sphinxcontrib-jsmath-%{version}.tar.gz
|
||||
# PATCH-FIX-UPSTREAM https://github.com/sphinx-doc/sphinxcontrib-jsmath/commit/3297b27177ab4862d1b2408a2db66235397fe212 Fix #9361: RemovedInSphinx50Warning on testing
|
||||
Patch0: sphinx5.patch
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-Sphinx
|
||||
BuildArch: noarch
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module Sphinx}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module sphinxcontrib-jsmath >= %{version}}
|
||||
%endif
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
sphinxcontrib-jsmath is a sphinx extension which renders display math in HTML
|
||||
via JavaScript.
|
||||
|
||||
%prep
|
||||
%setup -q -n sphinxcontrib-jsmath-%{version}
|
||||
%autopatch -p1
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
||||
%install
|
||||
%if !%{with test}
|
||||
%python_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
|
||||
%{python_sitelib}/*
|
||||
%endif
|
||||
|
||||
%changelog
|
38
sphinx5.patch
Normal file
38
sphinx5.patch
Normal file
@ -0,0 +1,38 @@
|
||||
From 3297b27177ab4862d1b2408a2db66235397fe212 Mon Sep 17 00:00:00 2001
|
||||
From: Takeshi KOMIYA <i.tkomiya@gmail.com>
|
||||
Date: Sat, 17 Jul 2021 19:25:37 +0900
|
||||
Subject: [PATCH] Fix #9361: RemovedInSphinx50Warning on testing
|
||||
|
||||
---
|
||||
tests/test_jsmath.py | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/tests/test_jsmath.py b/tests/test_jsmath.py
|
||||
index 573d262..eea8a95 100644
|
||||
--- a/tests/test_jsmath.py
|
||||
+++ b/tests/test_jsmath.py
|
||||
@@ -14,7 +14,7 @@
|
||||
@pytest.mark.sphinx('html', testroot='basic')
|
||||
def test_basic(app, status, warning):
|
||||
app.builder.build_all()
|
||||
- content = (app.outdir / 'math.html').text()
|
||||
+ content = (app.outdir / 'math.html').read_text()
|
||||
print(content)
|
||||
assert '<div class="math notranslate nohighlight">\nE = mc^2</div>' in content
|
||||
assert ('<span class="eqno">(1)<a class="headerlink" href="#equation-pythagorean" '
|
||||
@@ -34,7 +34,7 @@ def test_basic(app, status, warning):
|
||||
def test_numfig_enabled(app, status, warning):
|
||||
app.builder.build_all()
|
||||
|
||||
- content = (app.outdir / 'math.html').text()
|
||||
+ content = (app.outdir / 'math.html').read_text()
|
||||
assert '<div class="math notranslate nohighlight">\nE = mc^2</div>' in content
|
||||
assert ('<span class="eqno">(1.1)<a class="headerlink" href="#equation-pythagorean" '
|
||||
'title="Permalink to this equation">¶</a></span>'
|
||||
@@ -52,5 +52,5 @@ def test_numfig_enabled(app, status, warning):
|
||||
def test_disabled_when_equations_not_found(app, status, warning):
|
||||
app.builder.build_all()
|
||||
|
||||
- content = (app.outdir / 'index.html').text()
|
||||
+ content = (app.outdir / 'index.html').read_text()
|
||||
assert 'jsmath.js' not in content
|
BIN
sphinxcontrib-jsmath-1.0.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
sphinxcontrib-jsmath-1.0.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user