Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-httpbin for openSUSE:Factory checked in at 2022-03-16 21:30:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-httpbin (Old) and /work/SRC/openSUSE:Factory/.python-httpbin.new.25692 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-httpbin" Wed Mar 16 21:30:17 2022 rev:5 rq:961776 version:0.7.0+git20181107.f8ec666 Changes: -------- --- /work/SRC/openSUSE:Factory/python-httpbin/python-httpbin.changes 2021-07-10 22:53:53.680040014 +0200 +++ /work/SRC/openSUSE:Factory/.python-httpbin.new.25692/python-httpbin.changes 2022-03-16 21:30:20.287392348 +0100 @@ -1,0 +2,7 @@ +Tue Mar 15 04:57:06 UTC 2022 - Steve Kowalik <steven.kowa...@suse.com> + +- Use of raven has been removed, drop it from {Build,}Requires. +- Add patch fix-setup-py.patch: + * Drop raven and fix brotli in setup.py + +------------------------------------------------------------------- New: ---- fix-setup-py.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-httpbin.spec ++++++ --- /var/tmp/diff_new_pack.cKpYng/_old 2022-03-16 21:30:20.867392787 +0100 +++ /var/tmp/diff_new_pack.cKpYng/_new 2022-03-16 21:30:20.867392787 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-httpbin # -# 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 @@ -27,6 +27,8 @@ Source: python-httpbin-%{version}.tar.xz # https://github.com/postmanlabs/httpbin/pull/555 Patch0: werkzeug.patch +# Based on https://github.com/postmanlabs/httpbin/pull/553 +Patch1: fix-setup-py.patch BuildRequires: %{python_module Brotli} BuildRequires: %{python_module Flask} BuildRequires: %{python_module MarkupSafe} @@ -37,7 +39,6 @@ BuildRequires: %{python_module gevent} BuildRequires: %{python_module itsdangerous} BuildRequires: %{python_module pytest} -BuildRequires: %{python_module raven} BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros @@ -50,7 +51,6 @@ Requires: python-flasgger Requires: python-gevent Requires: python-itsdangerous -Requires: python-raven Requires: python-six BuildArch: noarch %python_subpackages @@ -66,10 +66,7 @@ All endpoint responses are JSON-encoded. %prep -%setup -q -%patch0 -p1 -# use normal Brotli google module not wrapper -sed -i -e 's:brotlipy:brotli:' setup.py +%autosetup -p1 %build export LANG=en_US.UTF-8 ++++++ fix-setup-py.patch ++++++ Index: python-httpbin-0.7.0+git20181107.f8ec666/setup.py =================================================================== --- python-httpbin-0.7.0+git20181107.f8ec666.orig/setup.py +++ python-httpbin-0.7.0+git20181107.f8ec666/setup.py @@ -35,7 +35,7 @@ setup( packages=find_packages(), include_package_data = True, # include files listed in MANIFEST.in install_requires=[ - 'Flask', 'MarkupSafe', 'decorator', 'itsdangerous', 'six', 'brotlipy', - 'raven[flask]', 'werkzeug>=0.14.1', 'gevent', 'flasgger' + 'Flask', 'MarkupSafe', 'decorator', 'itsdangerous', 'six', 'brotli', + 'werkzeug>=0.14.1', 'gevent', 'flasgger' ], )