Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-entrypoints for 
openSUSE:Factory checked in at 2026-08-24 12:11:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-entrypoints (Old)
 and      /work/SRC/openSUSE:Factory/.python-entrypoints.new.1258 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-entrypoints"

Mon Aug 24 12:11:38 2026 rev:9 rq:1373285 version:0.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-entrypoints/python-entrypoints.changes    
2023-07-06 18:30:20.147745595 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-entrypoints.new.1258/python-entrypoints.changes
  2026-08-24 12:16:59.977490995 +0200
@@ -1,0 +2,7 @@
+Mon Aug 24 01:37:57 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch support-flit-core-4.patch:
+  * Support building with flit-core 4+.
+- Remove Python 2 leftovers.
+
+-------------------------------------------------------------------

New:
----
  support-flit-core-4.patch

----------(New B)----------
  New:
- Add patch support-flit-core-4.patch:
  * Support building with flit-core 4+.
----------(New E)----------

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

Other differences:
------------------
++++++ python-entrypoints.spec ++++++
--- /var/tmp/diff_new_pack.VHfJbN/_old  2026-08-24 12:17:00.882523229 +0200
+++ /var/tmp/diff_new_pack.VHfJbN/_new  2026-08-24 12:17:00.895523692 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-entrypoints
 #
-# Copyright (c) 2022 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
@@ -24,19 +24,14 @@
 License:        MIT
 URL:            https://github.com/takluyver/entrypoints
 Source:         
https://files.pythonhosted.org/packages/source/e/entrypoints/entrypoints-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE Support flit-core >= 4
+Patch0:         support-flit-core-4.patch
 BuildRequires:  %{python_module flit-core}
 BuildRequires:  %{python_module pip}
 BuildRequires:  %{python_module pytest}
-BuildRequires:  %{python_module wheel}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildArch:      noarch
-%if %{with python2}
-BuildRequires:  python-configparser >= 3.5
-%endif
-%ifpython2
-Requires:       python-configparser >= 3.5
-%endif
 %python_subpackages
 
 %description
@@ -50,7 +45,7 @@
 plugins, or multiple groups if it has different kinds of plugins.
 
 %prep
-%setup -q -n entrypoints-%{version}
+%autosetup -p1 -n entrypoints-%{version}
 
 %build
 %pyproject_wheel
@@ -64,7 +59,7 @@
 
 %files %{python_files}
 %license LICENSE
-%{python_sitelib}/entrypoints.py*
-%pycache_only %{python_sitelib}/__pycache__/entrypoints*.py*
+%{python_sitelib}/entrypoints.py
+%pycache_only %{python_sitelib}/__pycache__/entrypoints*.pyc
 %{python_sitelib}/entrypoints-%{version}.dist-info
 

++++++ support-flit-core-4.patch ++++++
Index: entrypoints-0.4/pyproject.toml
===================================================================
--- entrypoints-0.4.orig/pyproject.toml
+++ entrypoints-0.4/pyproject.toml
@@ -1,18 +1,21 @@
 [build-system]
-requires = ["flit_core  >=2,<4"]
+requires = ["flit_core >=4"]
 build-backend = "flit_core.buildapi"
 
-[tool.flit.metadata]
-module = "entrypoints"
-author = "Thomas Kluyver"
-author-email = "[email protected]"
-home-page = "https://github.com/takluyver/entrypoints";
-description-file = "README.rst"
+[project]
+name = "entrypoints"
+version = "0.4"
+authors = [
+    {name = "Thomas Kluyver", email = "[email protected]"},
+]
+description = "functions to find and load entry points"
+readme = "README.rst"
 classifiers = [
     "License :: OSI Approved :: MIT License",
     "Programming Language :: Python :: 3"
 ]
 requires-python = ">=3.6"
 
-[tool.flit.metadata.urls]
+[project.urls]
 Documentation = "https://entrypoints.readthedocs.io/en/latest/";
+Homepage = "https://github.com/takluyver/entrypoints";

Reply via email to