Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-zope.event for openSUSE:Factory checked in at 2024-09-08 11:59:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-zope.event (Old) and /work/SRC/openSUSE:Factory/.python-zope.event.new.10096 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-zope.event" Sun Sep 8 11:59:05 2024 rev:21 rq:1199148 version:5.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-zope.event/python-zope.event.changes 2023-09-08 21:15:12.393753359 +0200 +++ /work/SRC/openSUSE:Factory/.python-zope.event.new.10096/python-zope.event.changes 2024-09-08 11:59:06.464299168 +0200 @@ -1,0 +2,6 @@ +Thu Sep 5 18:28:35 UTC 2024 - Christoph G <f...@grueninger.de> + +- Add patch intersphinx.patch for compatibility with recent + version of Sphinx + +------------------------------------------------------------------- New: ---- intersphinx.patch BETA DEBUG BEGIN: New: - Add patch intersphinx.patch for compatibility with recent version of Sphinx BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-zope.event.spec ++++++ --- /var/tmp/diff_new_pack.cRKk1X/_old 2024-09-08 11:59:08.264373690 +0200 +++ /var/tmp/diff_new_pack.cRKk1X/_new 2024-09-08 11:59:08.268373856 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-zope.event # -# 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 @@ -25,6 +25,8 @@ License: ZPL-2.1 URL: https://pypi.python.org/pypi/%{modname} Source: https://files.pythonhosted.org/packages/source/z/zope.event/%{modname}-%{version}.tar.gz +# fix upstream, compatible with recent Sphinx +Patch1: intersphinx.patch BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros @@ -47,6 +49,7 @@ %prep %setup -q -n %{modname}-%{version} +%autopatch -p1 %build %python_build ++++++ intersphinx.patch ++++++ >From cfcb34ea5c61d71c77529cbf2400738473e25bac Mon Sep 17 00:00:00 2001 From: Michael Howitz <ice...@gmx.net> Date: Fri, 9 Aug 2024 18:29:08 +0200 Subject: Add support for Python 3.12. - Drop support for Python 3.7 --- a/docs/conf.py +++ b/docs/conf.py @@ -36,7 +36,7 @@ templates_path = ['_templates'] # The suffix of source filenames. -source_suffix = '.rst' +source_suffix = {'.rst': 'restructuredtext'} # The encoding of source files. #source_encoding = 'utf-8' @@ -203,9 +203,7 @@ # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = { - 'https://docs.python.org/': None -} +intersphinx_mapping = {'python': ('https://docs.python.org/', None)} autodoc_default_flags = ['members', 'show-inheritance'] autodoc_member_order = 'bysource'