Hello community,
here is the log from the commit of package python-pytest-httpbin for
openSUSE:Factory checked in at 2017-08-14 12:37:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytest-httpbin (Old)
and /work/SRC/openSUSE:Factory/.python-pytest-httpbin.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pytest-httpbin"
Mon Aug 14 12:37:34 2017 rev:3 rq:515253 version:0.2.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pytest-httpbin/python-pytest-httpbin.changes
2017-05-20 10:10:35.669899040 +0200
+++
/work/SRC/openSUSE:Factory/.python-pytest-httpbin.new/python-pytest-httpbin.changes
2017-08-14 12:37:34.180646666 +0200
@@ -1,0 +2,6 @@
+Tue Aug 8 19:57:56 UTC 2017 - [email protected]
+
+- add 0001-Remove-Flask-and-decorator-from-install_requires.patch
+- cleanup Requires
+
+-------------------------------------------------------------------
New:
----
0001-Remove-Flask-and-decorator-from-install_requires.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pytest-httpbin.spec ++++++
--- /var/tmp/diff_new_pack.uSiRW9/_old 2017-08-14 12:37:34.704573095 +0200
+++ /var/tmp/diff_new_pack.uSiRW9/_new 2017-08-14 12:37:34.704573095 +0200
@@ -25,10 +25,10 @@
Group: Development/Languages/Python
Url: https://github.com/kevin1024/pytest-httpbin
Source:
https://files.pythonhosted.org/packages/source/p/pytest-httpbin/pytest-httpbin-%{version}.tar.gz
+# PATCH-FEATURE-UPSTREAM
0001-Remove-Flask-and-decorator-from-install_requires.patch --
https://github.com/kevin1024/pytest-httpbin/pull/40
+Patch1: 0001-Remove-Flask-and-decorator-from-install_requires.patch
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
-Requires: python-Flask
-Requires: python-decorator
Requires: python-httpbin
Requires: python-pytest
Requires: python-six
@@ -48,6 +48,7 @@
%prep
%setup -q -n pytest-httpbin-%{version}
+%patch1 -p1
%build
++++++ 0001-Remove-Flask-and-decorator-from-install_requires.patch ++++++
>From 55058b289ed1d3f17d907b2a13514d5ac5d3c586 Mon Sep 17 00:00:00 2001
From: Thomas Bechtold <[email protected]>
Date: Tue, 8 Aug 2017 21:55:44 +0200
Subject: [PATCH] Remove Flask and decorator from install_requires
Both are not used.
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 11c649c..894b283 100644
--- a/setup.py
+++ b/setup.py
@@ -50,7 +50,7 @@ setup(
keywords='pytest-httpbin testing pytest httpbin',
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
include_package_data = True, # include files listed in MANIFEST.in
- install_requires = ['Flask','decorator','httpbin','six'],
+ install_requires = ['httpbin','six'],
# the following makes a plugin available to pytest
entry_points = {
--
2.13.3