Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-hiredis for openSUSE:Factory checked in at 2022-01-16 23:18:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-hiredis (Old) and /work/SRC/openSUSE:Factory/.python-hiredis.new.1892 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-hiredis" Sun Jan 16 23:18:25 2022 rev:7 rq:946784 version:2.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-hiredis/python-hiredis.changes 2022-01-03 10:50:02.547594762 +0100 +++ /work/SRC/openSUSE:Factory/.python-hiredis.new.1892/python-hiredis.changes 2022-01-16 23:19:22.618380785 +0100 @@ -1,0 +2,15 @@ +Sat Jan 15 15:37:17 UTC 2022 - Matthias Fehring <[email protected]> + +- Update to 2.0.0 + * Bump hiredis from 0.13.3 to 1.0.0 and consequently add support + for RESP3 (see #104) + * Add type hints (see #106) + * Drop support for EOL Python versions 2.7, 3.4, and 3.5 (see #103) +- Drop obsolete patches + * hiredis1.patch + * bump_hiredis_0.14.1.patch +- Update patches + * 0001-Use-system-libhiredis.patch + * drop-vendor-sources.patch + +------------------------------------------------------------------- Old: ---- bump_hiredis_0.14.1.patch hiredis-py-1.1.0.tar.gz hiredis1.patch New: ---- hiredis-2.0.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-hiredis.spec ++++++ --- /var/tmp/diff_new_pack.3IVUlg/_old 2022-01-16 23:19:23.074381009 +0100 +++ /var/tmp/diff_new_pack.3IVUlg/_new 2022-01-16 23:19:23.078381011 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-hiredis # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,22 +17,17 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} -%define modname hiredis-py Name: python-hiredis -Version: 1.1.0 +Version: 2.0.0 Release: 0 Summary: Python wrapper for hiredis License: BSD-3-Clause URL: https://github.com/redis/hiredis-py -Source: https://github.com/redis/%{modname}/archive/v%{version}.tar.gz#/%{modname}-%{version}.tar.gz +Source: https://files.pythonhosted.org/packages/source/h/hiredis/hiredis-%{version}.tar.gz Patch0: 0001-Use-system-libhiredis.patch # PATCH-FIX-UPSTREAM drop-vendor-sources.patch gh#redis/hiredis-py#90 [email protected] # Allow to use platform hiredis libs on build Patch2: drop-vendor-sources.patch -# PATCH-FIX-UPSTREAM bump_hiredis_0.14.1.patch gh#redis/hiredis-py#95 [email protected] -# Use more recent version of hiredis. -Patch3: bump_hiredis_0.14.1.patch -Patch4: hiredis1.patch BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} BuildRequires: fdupes @@ -44,7 +39,7 @@ Python wrapper for hiredis C connector. %prep -%setup -q -n hiredis-py-%{version} +%setup -q -n hiredis-%{version} %autopatch -p1 %build ++++++ 0001-Use-system-libhiredis.patch ++++++ --- /var/tmp/diff_new_pack.3IVUlg/_old 2022-01-16 23:19:23.102381023 +0100 +++ /var/tmp/diff_new_pack.3IVUlg/_new 2022-01-16 23:19:23.106381025 +0100 @@ -6,22 +6,21 @@ Patch setup.py to not build hiredis in vendor/ Forwarded: no -Last-Updated: 2014-07-02 +Last-Updated: 2022-01-15 Patch-Name: 0001-Use-system-libhiredis.patch --- - setup.py | 9 ++++++--- - 1 file changed, 6 insertions(+), 3 deletions(-) + setup.py 2022-01-15 16:17:07.715728053 +0100 | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) ---- a/setup.py -+++ b/setup.py -@@ -13,7 +13,8 @@ def version(): +--- a/setup.py 2021-03-28 17:11:23.000000000 +0200 ++++ b/setup.py 2022-01-15 16:17:07.715728053 +0100 +@@ -13,7 +13,7 @@ def version(): ext = Extension("hiredis.hiredis", sources=sorted(glob.glob("src/*.c") + - ["vendor/hiredis/%s.c" % src for src in ("read", "sds")]), + ["vendor/hiredis/%s.c" % src for src in ("alloc", "read", "sds")]), - include_dirs=["vendor"]) -+ include_dirs=["vendor"], + extra_link_args=["-lhiredis"]) - + setup( name="hiredis", ++++++ drop-vendor-sources.patch ++++++ --- /var/tmp/diff_new_pack.3IVUlg/_old 2022-01-16 23:19:23.122381032 +0100 +++ /var/tmp/diff_new_pack.3IVUlg/_new 2022-01-16 23:19:23.122381032 +0100 @@ -1,17 +1,17 @@ --- - setup.py | 3 +-- +setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---- a/setup.py -+++ b/setup.py +--- a/setup.py 2022-01-15 16:32:39.379711369 +0100 ++++ b/setup.py 2022-01-15 16:33:03.091710944 +0100 @@ -11,8 +11,7 @@ def version(): return module.__version__ ext = Extension("hiredis.hiredis", - sources=sorted(glob.glob("src/*.c") + -- ["vendor/hiredis/%s.c" % src for src in ("read", "sds")]), +- ["vendor/hiredis/%s.c" % src for src in ("alloc", "read", "sds")]), + sources=sorted(glob.glob("src/*.c")), - include_dirs=["vendor"], extra_link_args=["-lhiredis"]) + setup( ++++++ hiredis-py-1.1.0.tar.gz -> hiredis-2.0.0.tar.gz ++++++ ++++ 10262 lines of diff (skipped)
