Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-pytest-pyramid-server for
openSUSE:Factory checked in at 2022-12-09 13:18:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytest-pyramid-server (Old)
and /work/SRC/openSUSE:Factory/.python-pytest-pyramid-server.new.1835
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pytest-pyramid-server"
Fri Dec 9 13:18:27 2022 rev:2 rq:1041843 version:1.7.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pytest-pyramid-server/python-pytest-pyramid-server.changes
2019-09-26 20:38:16.339017302 +0200
+++
/work/SRC/openSUSE:Factory/.python-pytest-pyramid-server.new.1835/python-pytest-pyramid-server.changes
2022-12-09 13:19:52.503669099 +0100
@@ -1,0 +2,8 @@
+Thu Dec 8 12:05:36 UTC 2022 - [email protected]
+
+- do not require six
+- added patches
+ fix https://github.com/man-group/pytest-plugins/issues/209
+ + python-pytest-pyramid-server-no-six.patch
+
+-------------------------------------------------------------------
New:
----
python-pytest-pyramid-server-no-six.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pytest-pyramid-server.spec ++++++
--- /var/tmp/diff_new_pack.luZiVk/_old 2022-12-09 13:19:52.903671223 +0100
+++ /var/tmp/diff_new_pack.luZiVk/_new 2022-12-09 13:19:52.903671223 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-pytest-pyramid-server
#
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# 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
@@ -25,6 +25,8 @@
Group: Development/Languages/Python
URL: https://github.com/manahl/pytest-plugins
Source:
https://files.pythonhosted.org/packages/source/p/pytest-pyramid-server/pytest-pyramid-server-%{version}.tar.gz
+# https://github.com/man-group/pytest-plugins/issues/209
+Patch0: python-pytest-pyramid-server-no-six.patch
BuildRequires: %{python_module setuptools-git}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
@@ -47,7 +49,7 @@
Pyramid server fixture for py.test.
%prep
-%setup -q -n pytest-pyramid-server-%{version}
+%autosetup -p1 -n pytest-pyramid-server-%{version}
%build
%python_build
++++++ python-pytest-pyramid-server-no-six.patch ++++++
Index: pytest-pyramid-server-1.7.0/pytest_pyramid_server.py
===================================================================
--- pytest-pyramid-server-1.7.0.orig/pytest_pyramid_server.py
+++ pytest-pyramid-server-1.7.0/pytest_pyramid_server.py
@@ -4,7 +4,7 @@ Created on 25 Apr 2012
@author: eeaston
'''
import os
-from six.moves import configparser
+import configparser
import sys
import socket
import glob