Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-rnginline for
openSUSE:Factory checked in at 2026-01-19 18:36:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-rnginline (Old)
and /work/SRC/openSUSE:Factory/.python-rnginline.new.1928 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-rnginline"
Mon Jan 19 18:36:54 2026 rev:7 rq:1327975 version:1.0.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-rnginline/python-rnginline.changes
2024-03-18 16:45:49.965777985 +0100
+++
/work/SRC/openSUSE:Factory/.python-rnginline.new.1928/python-rnginline.changes
2026-01-19 18:40:59.485224002 +0100
@@ -1,0 +2,7 @@
+Mon Jan 19 05:07:20 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Use poetry-core rather than poetry for building.
+- Add patch support-python-314.patch:
+ * Support Python 3.14 normalizing.
+
+-------------------------------------------------------------------
New:
----
support-python-314.patch
----------(New B)----------
New:- Use poetry-core rather than poetry for building.
- Add patch support-python-314.patch:
* Support Python 3.14 normalizing.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-rnginline.spec ++++++
--- /var/tmp/diff_new_pack.MkSajf/_old 2026-01-19 18:41:00.057247670 +0100
+++ /var/tmp/diff_new_pack.MkSajf/_new 2026-01-19 18:41:00.057247670 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-rnginline
#
-# 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,9 +24,10 @@
License: Apache-2.0
URL: https://github.com/h4l/rnginline
Source:
https://files.pythonhosted.org/packages/source/r/rnginline/rnginline-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE Support Python 3.14 normalizing
+Patch0: support-python-314.patch
BuildRequires: %{python_module pip}
-BuildRequires: %{python_module poetry}
-BuildRequires: %{python_module setuptools}
+BuildRequires: %{python_module poetry-core}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-docopt
@@ -55,7 +56,7 @@
into a single RELAX NG schema.
%prep
-%setup -q -n rnginline-%{version}
+%autosetup -p1 -n rnginline-%{version}
%build
%pyproject_wheel
++++++ support-python-314.patch ++++++
Index: rnginline-1.0.0/rnginline/test/test_urlhandlers.py
===================================================================
--- rnginline-1.0.0.orig/rnginline/test/test_urlhandlers.py
+++ rnginline-1.0.0/rnginline/test/test_urlhandlers.py
@@ -1,6 +1,7 @@
from __future__ import annotations
import os
+import sys
import tempfile
from urllib import parse
@@ -32,6 +33,8 @@ def test_ensure_parsed() -> None:
def test_file_url_roundtrip(
path: str, abs: bool | None, expected_url: str, expected_path: str
) -> None:
+ if sys.version_info[:2] >= (3, 14) and expected_url.startswith('/some'):
+ expected_url = f"//{expected_url}"
kwargs = {"abs": abs} if abs is not None else {}
result_url = file.makeurl(path, **kwargs)