Hello community,

here is the log from the commit of package httpie for openSUSE:Leap:15.2 
checked in at 2020-01-30 06:07:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/httpie (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.httpie.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "httpie"

Thu Jan 30 06:07:30 2020 rev:4 rq:763578 version:1.0.3

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/httpie/httpie.changes  2020-01-15 
15:11:34.166111839 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.httpie.new.26092/httpie.changes       
2020-01-30 06:07:30.842434659 +0100
@@ -2 +2,9 @@
-Tue Aug 27 14:43:55 UTC 2019 - Martin Hauke <mar...@gmx.de>
+Sun Dec 22 16:32:41 UTC 2019 - Martin Hauke <mar...@gmx.de>
+
+- Add patch:
+  * httpie-adjust-requirements.patch
+    Lower requirements for requests and Pygemnts to make it work
+    on Leap 15.1
+
+-------------------------------------------------------------------
+Tue Aug 27 14:23:44 UTC 2019 - Martin Hauke <mar...@gmx.de>

New:
----
  httpie-adjust-requirements.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ httpie.spec ++++++
--- /var/tmp/diff_new_pack.56NwQV/_old  2020-01-30 06:07:31.414434980 +0100
+++ /var/tmp/diff_new_pack.56NwQV/_new  2020-01-30 06:07:31.414434980 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package httpie
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,8 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
+#
 
 
 %define skip_python2 1
@@ -26,6 +27,7 @@
 URL:            https://httpie.org/
 Source:         
https://github.com/jakubroztocil/httpie/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:        http.1
+Patch0:         httpie-adjust-requirements.patch
 BuildRequires:  %{python_module Pygments >= 2.1.3}
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module mock}
@@ -52,6 +54,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 #drop shebang
 sed -i -e '/^#!\//, 1d' httpie/__main__.py

++++++ httpie-adjust-requirements.patch ++++++
diff --git a/setup.py b/setup.py
index 3cb04c8..50075b3 100644
--- a/setup.py
+++ b/setup.py
@@ -35,8 +35,8 @@ tests_require = [
 
 
 install_requires = [
-    'requests>=2.21.0',
-    'Pygments>=2.3.1'
+    'requests>=2.20.0',
+    'Pygments>=2.2.0'
 ]
 
 

Reply via email to