Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-pyproject-examples for
openSUSE:Factory checked in at 2026-02-05 17:57:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pyproject-examples (Old)
and /work/SRC/openSUSE:Factory/.python-pyproject-examples.new.1670 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pyproject-examples"
Thu Feb 5 17:57:15 2026 rev:3 rq:1330963 version:2023.6.30
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pyproject-examples/python-pyproject-examples.changes
2025-03-05 13:39:27.453875388 +0100
+++
/work/SRC/openSUSE:Factory/.python-pyproject-examples.new.1670/python-pyproject-examples.changes
2026-02-05 17:58:36.179083947 +0100
@@ -1,0 +2,6 @@
+Wed Feb 4 09:40:11 UTC 2026 - Marius Grossu <[email protected]>
+
+- Add fix_regex.patch: relax regex because of new version of packaging
+ (gh#repo-helper/pyproject-examples#52)
+
+-------------------------------------------------------------------
New:
----
fix_regex.patch
----------(New B)----------
New:
- Add fix_regex.patch: relax regex because of new version of packaging
(gh#repo-helper/pyproject-examples#52)
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pyproject-examples.spec ++++++
--- /var/tmp/diff_new_pack.lBYAl6/_old 2026-02-05 17:58:37.575142508 +0100
+++ /var/tmp/diff_new_pack.lBYAl6/_new 2026-02-05 17:58:37.575142508 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-pyproject-examples
#
-# Copyright (c) 2024 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,6 +24,8 @@
License: MIT
URL: https://github.com/repo-helper/pyproject-examples
Source:
https://files.pythonhosted.org/packages/source/p/pyproject-examples/pyproject_examples-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM fix_regex.patch -- based on PR
+Patch0: fix_regex.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module whey}
BuildRequires: fdupes
++++++ fix_regex.patch ++++++
Index: pyproject_examples-2023.6.30/pyproject_examples/__init__.py
===================================================================
--- pyproject_examples-2023.6.30.orig/pyproject_examples/__init__.py
+++ pyproject_examples-2023.6.30/pyproject_examples/__init__.py
@@ -159,7 +159,7 @@ bad_pep621_config = [
pytest.param(
f'{MINIMAL_CONFIG}\ndependencies = ["foo]]]"]',
InvalidRequirement,
- r"'foo]]]'\n Expected end or semicolon
\(after name and no valid version specifier\)\n foo]]]\n \^",
+ r"'foo]]]'.*",
id="dependencies_invalid_requirement",
marks=pytest.mark.skipif(sys.version_info < (3,
7), reason="Error differs on 3.6"),
),
@@ -243,7 +243,7 @@ bad_buildsystem_config = [
pytest.param(
'[build-system]\nrequires = ["foo]]]"]',
InvalidRequirement,
- r"'foo]]]'\n Expected end or semicolon
\(after name and no valid version specifier\)\n foo]]]\n \^",
+ r"'foo]]]'.*",
id="requires_invalid_requirement",
marks=pytest.mark.skipif(sys.version_info < (3,
7), reason="Error differs on 3.6"),
),