Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-sphinxcontrib-github-alt for
openSUSE:Factory checked in at 2026-08-25 13:20:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sphinxcontrib-github-alt (Old)
and /work/SRC/openSUSE:Factory/.python-sphinxcontrib-github-alt.new.1258
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinxcontrib-github-alt"
Tue Aug 25 13:20:26 2026 rev:7 rq:1373497 version:1.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-sphinxcontrib-github-alt/python-sphinxcontrib-github-alt.changes
2025-06-13 18:48:40.342785540 +0200
+++
/work/SRC/openSUSE:Factory/.python-sphinxcontrib-github-alt.new.1258/python-sphinxcontrib-github-alt.changes
2026-08-25 13:21:08.492185528 +0200
@@ -1,0 +2,7 @@
+Tue Aug 25 00:56:16 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Update URL to be correct.
+- Add patch support-flit-core-4.patch:
+ * Support changes required by flit-core 4.
+
+-------------------------------------------------------------------
New:
----
support-flit-core-4.patch
----------(New B)----------
New:- Update URL to be correct.
- Add patch support-flit-core-4.patch:
* Support changes required by flit-core 4.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-sphinxcontrib-github-alt.spec ++++++
--- /var/tmp/diff_new_pack.G3UCay/_old 2026-08-25 13:21:09.669227088 +0200
+++ /var/tmp/diff_new_pack.G3UCay/_new 2026-08-25 13:21:09.670227123 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-sphinxcontrib-github-alt
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -22,14 +22,14 @@
Release: 0
Summary: Sphinx extension to link to GitHub issues, pull requests,
commits and users
License: BSD-2-Clause
-Group: Development/Languages/Python
-URL: https://github.com/Calysto/octave_kernel
+URL: https://github.com/jupyter/sphinxcontrib_github_alt
Source0:
https://files.pythonhosted.org/packages/source/s/sphinxcontrib_github_alt/sphinxcontrib_github_alt-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE Support flit-core 4
+Patch0: support-flit-core-4.patch
BuildRequires: %{python_module Sphinx}
BuildRequires: %{python_module docutils}
BuildRequires: %{python_module flit-core}
BuildRequires: %{python_module pip}
-BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Sphinx
@@ -45,7 +45,7 @@
and set the variable github_project_url:
%prep
-%setup -q -n sphinxcontrib_github_alt-%{version}
+%autosetup -p1 -n sphinxcontrib_github_alt-%{version}
%build
%pyproject_wheel
@@ -61,6 +61,7 @@
%files %{python_files}
%license COPYING.md
%doc README.rst
-%{python_sitelib}/sphinxcontrib_github_alt*
-%pycache_only %{python_sitelib}/__pycache__/sphinxcontrib_github_alt*.py*
+%{python_sitelib}/sphinxcontrib_github_alt.py
+%{python_sitelib}/sphinxcontrib_github_alt-%{version}.dist-info
+%pycache_only %{python_sitelib}/__pycache__/sphinxcontrib_github_alt*.pyc
++++++ support-flit-core-4.patch ++++++
Index: sphinxcontrib_github_alt-1.2/pyproject.toml
===================================================================
--- sphinxcontrib_github_alt-1.2.orig/pyproject.toml
+++ sphinxcontrib_github_alt-1.2/pyproject.toml
@@ -1,14 +1,16 @@
[build-system]
-requires = ["flit_core >=2,<4"]
+requires = ["flit_core >=2,<5"]
build-backend = "flit_core.buildapi"
-[tool.flit.metadata]
-module = "sphinxcontrib_github_alt"
-author = "Jupyter Development Team"
-author-email = "[email protected]"
-home-page = "https://github.com/jupyter/sphinxcontrib_github_alt"
-description-file = "README.rst"
-requires = [
+[project]
+name = "sphinxcontrib_github_alt"
+version = "1.2"
+authors = [
+ {"name" = "Jupyter Development Team", "email" =
"[email protected]"},
+]
+urls.homepage = "https://github.com/jupyter/sphinxcontrib_github_alt"
+dynamic = ["description"]
+dependencies = [
"docutils",
"sphinx",
]