Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-respx for openSUSE:Factory checked in at 2023-06-16 16:55:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-respx (Old) and /work/SRC/openSUSE:Factory/.python-respx.new.15902 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-respx" Fri Jun 16 16:55:29 2023 rev:5 rq:1093417 version:0.20.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-respx/python-respx.changes 2023-01-18 14:23:14.380091530 +0100 +++ /work/SRC/openSUSE:Factory/.python-respx.new.15902/python-respx.changes 2023-06-16 16:56:32.514308355 +0200 @@ -1,0 +2,6 @@ +Fri Jun 16 06:03:28 UTC 2023 - Steve Kowalik <[email protected]> + +- Add patch use-real-ipv6-address.patch: + * Use a real IPv6 address to avoid an address parsing exception + +------------------------------------------------------------------- New: ---- use-real-ipv6-address.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-respx.spec ++++++ --- /var/tmp/diff_new_pack.raVtzE/_old 2023-06-16 16:56:32.986311140 +0200 +++ /var/tmp/diff_new_pack.raVtzE/_new 2023-06-16 16:56:32.990311163 +0200 @@ -23,6 +23,8 @@ License: BSD-3-Clause URL: https://github.com/lundberg/respx Source0: https://github.com/lundberg/respx/archive/refs/tags/%{version}.tar.gz#/respx-%{version}.tar.gz +# PATCH-FIX-OPENSUSE Use a real IPV6 address to avoid a test failure +Patch0: use-real-ipv6-address.patch BuildRequires: %{python_module Flask} BuildRequires: %{python_module httpx} BuildRequires: %{python_module pytest-asyncio} ++++++ use-real-ipv6-address.patch ++++++ Index: respx-0.20.1/tests/test_patterns.py =================================================================== --- respx-0.20.1.orig/tests/test_patterns.py +++ respx-0.20.1/tests/test_patterns.py @@ -280,9 +280,9 @@ def test_params_pattern_hash(): (Lookup.STARTS_WITH, "http://a.b/baz/", {}, "https://a.b/baz/", False), ( Lookup.EQUAL, - (b"https", b"fake:ipv6", None, b""), + (b"https", b"2001:db8::1", None, b""), {}, - "https://[fake:ipv6]", + "https://[2001:db8::1]", True, ), ],
