Hello community, here is the log from the commit of package python-stdeb for openSUSE:Factory checked in at 2017-09-23 21:37:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-stdeb (Old) and /work/SRC/openSUSE:Factory/.python-stdeb.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-stdeb" Sat Sep 23 21:37:24 2017 rev:2 rq:528302 version:0.8.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-stdeb/python-stdeb.changes 2017-09-11 16:18:21.694025517 +0200 +++ /work/SRC/openSUSE:Factory/.python-stdeb.new/python-stdeb.changes 2017-09-23 21:37:34.218107428 +0200 @@ -1,0 +2,6 @@ +Sun Sep 17 11:00:01 UTC 2017 - [email protected] + +- add python-requests as dependency +- add 126.patch fix upstream issue #126 from upstream PR#126 + +------------------------------------------------------------------- New: ---- 126.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-stdeb.spec ++++++ --- /var/tmp/diff_new_pack.5PbBy0/_old 2017-09-23 21:37:35.005996623 +0200 +++ /var/tmp/diff_new_pack.5PbBy0/_new 2017-09-23 21:37:35.013995497 +0200 @@ -13,6 +13,7 @@ # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ +# %{?!python_module:%define python_module() python-%{**} python3-%{**}} @@ -20,15 +21,18 @@ Name: python-stdeb Version: 0.8.5 Release: 0 -License: MIT Summary: Python to Debian source package conversion utility -Url: http://github.com/astraw/stdeb +License: MIT Group: Development/Languages/Python +Url: http://github.com/astraw/stdeb Source: https://files.pythonhosted.org/packages/source/s/stdeb/stdeb-%{version}.tar.gz -BuildRequires: python-rpm-macros +# PATCH-FIX-UPSTREAM 126.patch -- fixes https://github.com/astraw/stdeb/issues/78 +Patch0: https://github.com/astraw/stdeb/pull/126.patch BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-requests BuildArch: noarch %python_subpackages @@ -44,6 +48,7 @@ %prep %setup -q -n stdeb-%{version} +%patch0 -p1 %build %python_build ++++++ 126.patch ++++++ >From 80e9141023250b78b2a4c35c0ac4eb1963b3629a Mon Sep 17 00:00:00 2001 From: Sebastian Wagner <[email protected]> Date: Wed, 12 Oct 2016 09:50:53 +0200 Subject: [PATCH] Fix install_requires fixes astraw/stdeb#78 Signed-off-by: Sebastian Wagner <[email protected]> --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index d7796f5..cd0d81c 100644 --- a/setup.py +++ b/setup.py @@ -29,4 +29,5 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', ], + install_requires=['requests'], )
