Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-napalm-procurve for
openSUSE:Factory checked in at 2021-03-18 22:54:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-napalm-procurve (Old)
and /work/SRC/openSUSE:Factory/.python-napalm-procurve.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-napalm-procurve"
Thu Mar 18 22:54:32 2021 rev:6 rq:879333 version:0.7.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-napalm-procurve/python-napalm-procurve.changes
2020-08-04 20:22:20.241001016 +0200
+++
/work/SRC/openSUSE:Factory/.python-napalm-procurve.new.2401/python-napalm-procurve.changes
2021-03-18 22:54:38.783511768 +0100
@@ -1,0 +2,6 @@
+Tue Mar 16 04:29:48 UTC 2021 - Steve Kowalik <[email protected]>
+
+- Add setup-parse-requirements.patch to use the correct property for
+ recent pip versions.
+
+-------------------------------------------------------------------
New:
----
setup-parse-requirements.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-napalm-procurve.spec ++++++
--- /var/tmp/diff_new_pack.L7vgov/_old 2021-03-18 22:54:39.295512321 +0100
+++ /var/tmp/diff_new_pack.L7vgov/_new 2021-03-18 22:54:39.299512325 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-napalm-procurve
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2019, Martin Hauke <[email protected]>
#
# All modifications and additions to the file contributed by third parties
@@ -25,9 +25,9 @@
Release: 0
Summary: NAPALM - HP ProCurve network driver
License: Apache-2.0
-Group: Development/Languages/Python
URL: https://github.com/ixs/napalm-procurve
Source:
https://github.com/ixs/napalm-procurve/archive/%{version}.tar.gz#/napalm-procurve-%{version}.tar.gz
+Patch0: setup-parse-requirements.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
@@ -49,6 +49,7 @@
%prep
%setup -q -n napalm-procurve-%{version}
+%autopatch -p1
%build
%python_build
++++++ setup-parse-requirements.patch ++++++
Index: napalm-procurve-0.7.0/setup.py
===================================================================
--- napalm-procurve-0.7.0.orig/setup.py
+++ napalm-procurve-0.7.0/setup.py
@@ -19,7 +19,7 @@ except ImportError:
__author__ = 'Andreas Thienemann <[email protected]>'
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
-reqs = [str(ir.req) for ir in install_reqs]
+reqs = [str(ir.requirement) for ir in install_reqs]
setup(
name="napalm-procurve",