Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-sphinx-tabs for 
openSUSE:Factory checked in at 2025-01-29 16:16:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sphinx-tabs (Old)
 and      /work/SRC/openSUSE:Factory/.python-sphinx-tabs.new.2316 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-sphinx-tabs"

Wed Jan 29 16:16:42 2025 rev:11 rq:1241017 version:3.4.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-sphinx-tabs/python-sphinx-tabs.changes    
2024-10-31 16:09:56.468510380 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-sphinx-tabs.new.2316/python-sphinx-tabs.changes
  2025-01-29 16:17:09.752350596 +0100
@@ -1,0 +2,6 @@
+Wed Jan 22 01:07:17 UTC 2025 - Steve Kowalik <steven.kowa...@suse.com>
+
+- Add patch support-sphinx-8.1.patch:
+  * Support Sphinx 8.1 changes.
+
+-------------------------------------------------------------------

New:
----
  support-sphinx-8.1.patch

BETA DEBUG BEGIN:
  New:
- Add patch support-sphinx-8.1.patch:
  * Support Sphinx 8.1 changes.
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-sphinx-tabs.spec ++++++
--- /var/tmp/diff_new_pack.HaiCFw/_old  2025-01-29 16:17:10.452379625 +0100
+++ /var/tmp/diff_new_pack.HaiCFw/_new  2025-01-29 16:17:10.452379625 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-sphinx-tabs
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -38,6 +38,8 @@
 URL:            https://github.com/executablebooks/sphinx-tabs
 # Use the github tag instead of the pythonhosted.org to get the tests folder
 Source:         
https://github.com/executablebooks/sphinx-tabs/archive/refs/tags/v%{version}.tar.gz
+# PATCH-FIX-UPSTREAM gh#executablebooks/sphinx-tabs#200
+Patch0:         support-sphinx-8.1.patch
 BuildRequires:  %{python_module Pygments}
 BuildRequires:  %{python_module Sphinx}
 BuildRequires:  %{python_module docutils}
@@ -81,6 +83,8 @@
 
 %if !%{with test}
 %files %{python_files}
+%doc README.md
+%license LICENSE
 %{python_sitelib}/sphinx_tabs
 %{python_sitelib}/sphinx_tabs-%{version}.dist-info
 %endif

++++++ support-sphinx-8.1.patch ++++++
>From b5528ac02f472ecf1ef8c45eb4cc7249d3329b3d Mon Sep 17 00:00:00 2001
From: Dmitry Shachnev <mity...@gmail.com>
Date: Sun, 24 Nov 2024 20:55:02 +0300
Subject: [PATCH] Update the tests for Sphinx 8.1

Fixes #199.
---
 tests/conftest.py                                             | 4 ++++
 tests/test_build/test_basic.html                              | 2 ++
 .../test_conditional_assets_html_assets_policy_index_.html    | 2 ++
 .../test_conditional_assets_html_assets_policy_no_tabs1_.html | 2 ++
 .../test_conditional_assets_html_assets_policy_no_tabs2_.html | 2 ++
 tests/test_build/test_conditional_assets_index_.html          | 2 ++
 tests/test_build/test_conditional_assets_no_tabs1_.html       | 2 ++
 tests/test_build/test_conditional_assets_no_tabs2_.html       | 2 ++
 tests/test_build/test_custom_lexer.html                       | 2 ++
 tests/test_build/test_disable_closing.html                    | 2 ++
 tests/test_build/test_disable_css_loading.html                | 2 ++
 tests/test_build/test_nested_markup.html                      | 2 ++
 tests/test_build/test_no_tabs.html                            | 2 ++
 tests/test_build/test_other_with_assets.html                  | 2 ++
 14 files changed, 30 insertions(+)

diff --git a/tests/conftest.py b/tests/conftest.py
index 1dbf0ad..c4452df 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -91,6 +91,10 @@ def read(app, buildername="html", filename="index.html", 
encoding="utf-8"):
             for div in soup.find_all("div", {"class": "highlight"}):
                 div.decompose()
 
+            if sphinx.version_info < (8, 1):
+                body = soup.select("div.body")[0]
+                body.append(soup.new_tag("div", **{"class": "clearer"}))
+
             doc_div = soup.findAll("div", {"class": "documentwrapper"})[0]
             doc = doc_div.prettify()
 
diff --git a/tests/test_build/test_basic.html b/tests/test_build/test_basic.html
index af63887..a5cc924 100644
--- a/tests/test_build/test_basic.html
+++ b/tests/test_build/test_basic.html
@@ -37,6 +37,8 @@
      </p>
     </div>
    </div>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git 
a/tests/test_build/test_conditional_assets_html_assets_policy_index_.html 
b/tests/test_build/test_conditional_assets_html_assets_policy_index_.html
index b87a329..6e1cbc8 100644
--- a/tests/test_build/test_conditional_assets_html_assets_policy_index_.html
+++ b/tests/test_build/test_conditional_assets_html_assets_policy_index_.html
@@ -243,6 +243,8 @@ <h1>
      </div>
     </div>
    </section>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git 
a/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.html 
b/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.html
index b87a329..6e1cbc8 100644
--- a/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.html
+++ b/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs1_.html
@@ -243,6 +243,8 @@ <h1>
      </div>
     </div>
    </section>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git 
a/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.html 
b/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.html
index b87a329..6e1cbc8 100644
--- a/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.html
+++ b/tests/test_build/test_conditional_assets_html_assets_policy_no_tabs2_.html
@@ -243,6 +243,8 @@ <h1>
      </div>
     </div>
    </section>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git a/tests/test_build/test_conditional_assets_index_.html 
b/tests/test_build/test_conditional_assets_index_.html
index b87a329..6e1cbc8 100644
--- a/tests/test_build/test_conditional_assets_index_.html
+++ b/tests/test_build/test_conditional_assets_index_.html
@@ -243,6 +243,8 @@ <h1>
      </div>
     </div>
    </section>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git a/tests/test_build/test_conditional_assets_no_tabs1_.html 
b/tests/test_build/test_conditional_assets_no_tabs1_.html
index b87a329..6e1cbc8 100644
--- a/tests/test_build/test_conditional_assets_no_tabs1_.html
+++ b/tests/test_build/test_conditional_assets_no_tabs1_.html
@@ -243,6 +243,8 @@ <h1>
      </div>
     </div>
    </section>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git a/tests/test_build/test_conditional_assets_no_tabs2_.html 
b/tests/test_build/test_conditional_assets_no_tabs2_.html
index b87a329..6e1cbc8 100644
--- a/tests/test_build/test_conditional_assets_no_tabs2_.html
+++ b/tests/test_build/test_conditional_assets_no_tabs2_.html
@@ -243,6 +243,8 @@ <h1>
      </div>
     </div>
    </section>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git a/tests/test_build/test_custom_lexer.html 
b/tests/test_build/test_custom_lexer.html
index 954a10a..a0af59a 100644
--- a/tests/test_build/test_custom_lexer.html
+++ b/tests/test_build/test_custom_lexer.html
@@ -19,6 +19,8 @@
      </div>
     </div>
    </div>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git a/tests/test_build/test_disable_closing.html 
b/tests/test_build/test_disable_closing.html
index e245915..98ba6ef 100644
--- a/tests/test_build/test_disable_closing.html
+++ b/tests/test_build/test_disable_closing.html
@@ -37,6 +37,8 @@
      </p>
     </div>
    </div>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git a/tests/test_build/test_disable_css_loading.html 
b/tests/test_build/test_disable_css_loading.html
index af63887..a5cc924 100644
--- a/tests/test_build/test_disable_css_loading.html
+++ b/tests/test_build/test_disable_css_loading.html
@@ -37,6 +37,8 @@
      </p>
     </div>
    </div>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git a/tests/test_build/test_nested_markup.html 
b/tests/test_build/test_nested_markup.html
index 22588a9..b15d43e 100644
--- a/tests/test_build/test_nested_markup.html
+++ b/tests/test_build/test_nested_markup.html
@@ -207,6 +207,8 @@ <h1>
      </div>
     </div>
    </section>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git a/tests/test_build/test_no_tabs.html 
b/tests/test_build/test_no_tabs.html
index 6a0af85..26e2d70 100644
--- a/tests/test_build/test_no_tabs.html
+++ b/tests/test_build/test_no_tabs.html
@@ -4,6 +4,8 @@
    <p>
     There are no tabs here
    </p>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>
diff --git a/tests/test_build/test_other_with_assets.html 
b/tests/test_build/test_other_with_assets.html
index 85b55c4..c8ee530 100644
--- a/tests/test_build/test_other_with_assets.html
+++ b/tests/test_build/test_other_with_assets.html
@@ -19,6 +19,8 @@
      </div>
     </div>
    </div>
+   <div class="clearer">
+   </div>
   </div>
  </div>
 </div>

Reply via email to