Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-sphinx-removed-in for
openSUSE:Factory checked in at 2024-09-06 17:18:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sphinx-removed-in (Old)
and /work/SRC/openSUSE:Factory/.python-sphinx-removed-in.new.10096 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinx-removed-in"
Fri Sep 6 17:18:48 2024 rev:5 rq:1199098 version:0.2.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-sphinx-removed-in/python-sphinx-removed-in.changes
2023-12-04 23:02:14.113221640 +0100
+++
/work/SRC/openSUSE:Factory/.python-sphinx-removed-in.new.10096/python-sphinx-removed-in.changes
2024-09-06 17:19:14.201615767 +0200
@@ -1,0 +2,8 @@
+Fri Sep 6 02:26:48 UTC 2024 - Steve Kowalik <[email protected]>
+
+- Update to 0.2.3:
+ * Adjust import path for Sphinx v8
+- Switch to pyproject macros.
+- No more greedy globs in %files.
+
+-------------------------------------------------------------------
Old:
----
v0.2.2.tar.gz
New:
----
v0.2.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-sphinx-removed-in.spec ++++++
--- /var/tmp/diff_new_pack.FEDets/_old 2024-09-06 17:19:14.641634050 +0200
+++ /var/tmp/diff_new_pack.FEDets/_new 2024-09-06 17:19:14.641634050 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-sphinx-removed-in
#
-# 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,18 +16,18 @@
#
-%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-sphinx-removed-in
-Version: 0.2.2
+Version: 0.2.3
Release: 0
Summary: Sphinx directives versionremoved and removed-in
License: BSD-3-Clause
-Group: Development/Languages/Python
URL: https://github.com/MrSenko/sphinx-removed-in
Source:
https://github.com/MrSenko/sphinx-removed-in/archive/v%{version}.tar.gz
BuildRequires: %{python_module Sphinx}
+BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
+BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Sphinx
@@ -41,10 +41,10 @@
%autosetup -p1 -n sphinx-removed-in-%{version}
%build
-%python_build
+%pyproject_wheel
%install
-%python_install
+%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -53,5 +53,6 @@
%files %{python_files}
%license LICENSE
%doc README.rst
-%{python_sitelib}/*
+%{python_sitelib}/sphinx_removed_in
+%{python_sitelib}/sphinx_removed_in-%{version}.dist-info
++++++ v0.2.2.tar.gz -> v0.2.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sphinx-removed-in-0.2.2/sphinx_removed_in/__init__.py
new/sphinx-removed-in-0.2.3/sphinx_removed_in/__init__.py
--- old/sphinx-removed-in-0.2.2/sphinx_removed_in/__init__.py 2023-10-31
15:46:08.000000000 +0100
+++ new/sphinx-removed-in-0.2.3/sphinx_removed_in/__init__.py 2024-08-02
11:43:23.000000000 +0200
@@ -1,4 +1,4 @@
-__version__ = '0.2.2'
+__version__ = '0.2.3'
def setup(app):
@@ -6,7 +6,7 @@
from sphinx.domains.changeset import versionlabels
except ImportError:
from sphinx.locale import versionlabels
- from sphinx.directives.other import VersionChange
+ from sphinx.domains.changeset import VersionChange
try:
from sphinx.domains.changeset import versionlabel_classes