Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-copr-cli for openSUSE:Factory
checked in at 2023-02-11 21:57:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-copr-cli (Old)
and /work/SRC/openSUSE:Factory/.python-copr-cli.new.1848 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-copr-cli"
Sat Feb 11 21:57:52 2023 rev:6 rq:1064371 version:1.105
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-copr-cli/python-copr-cli.changes
2023-02-10 14:36:10.610227606 +0100
+++
/work/SRC/openSUSE:Factory/.python-copr-cli.new.1848/python-copr-cli.changes
2023-02-11 21:58:19.739998180 +0100
@@ -1,0 +2,5 @@
+Fri Feb 10 22:45:01 UTC 2023 - Matej Cepl <[email protected]>
+
+- Add remove-simplejson.patch (gh#fedora-copr/copr#2539).
+
+-------------------------------------------------------------------
New:
----
remove-simplejson.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-copr-cli.spec ++++++
--- /var/tmp/diff_new_pack.yJrmdp/_old 2023-02-11 21:58:20.100000421 +0100
+++ /var/tmp/diff_new_pack.yJrmdp/_new 2023-02-11 21:58:20.108000471 +0100
@@ -23,6 +23,10 @@
License: GPL-2.0-or-later
URL: https://github.com/fedora-copr/copr
Source:
https://files.pythonhosted.org/packages/source/c/copr-cli/copr-cli-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM remove-simplejson.patch gh#fedora-copr/copr#2539
[email protected]
+# Remove dependency on simplejson
+# (not upstream, which on master switched to ujson)
+Patch0: remove-simplejson.patch
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -33,7 +37,6 @@
Requires: python-humanize
Requires: python-requests-gssapi
Requires: python-responses
-Requires: python-simplejson
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module Jinja2}
@@ -44,15 +47,17 @@
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module requests-gssapi}
BuildRequires: %{python_module responses}
-BuildRequires: %{python_module simplejson}
# /SECTION
+Requires(post): update-alternatives
+Requires(postun):update-alternatives
%python_subpackages
%description
CLI tool to run copr.
%prep
-%setup -q -n copr-cli-%{version}
+%autosetup -p1 -n copr-cli-%{version}
+
sed -i '1{/#!/d}' copr_cli/package_build_order.py
%build
++++++ remove-simplejson.patch ++++++
---
copr-cli.spec | 4 ----
copr_cli/util.py | 4 ++--
setup.py | 1 -
3 files changed, 2 insertions(+), 7 deletions(-)
--- a/copr-cli.spec
+++ b/copr-cli.spec
@@ -32,7 +32,6 @@ BuildRequires: util-linux
%if %{with python3}
Requires: python3-copr >= %min_python_copr_version
Requires: python3-jinja2
-Requires: python3-simplejson
Requires: python3-humanize
Requires: python3-koji
Requires: python3-future
@@ -47,13 +46,11 @@ BuildRequires: python3-humanize
BuildRequires: python3-pytest
BuildRequires: python3-responses
BuildRequires: python3-setuptools
-BuildRequires: python3-simplejson
BuildRequires: python3-munch
BuildRequires: python3-future
%else
Requires: python-copr >= %min_python_copr_version
Requires: python-jinja2
-Requires: python-simplejson
Requires: python-humanize
Requires: python-future
@@ -65,7 +62,6 @@ BuildRequires: python-humanize
BuildRequires: python-mock
BuildRequires: python2-responses
BuildRequires: python-setuptools
-BuildRequires: python-simplejson
BuildRequires: python-munch
BuildRequires: python-future
%endif
--- a/copr_cli/util.py
+++ b/copr_cli/util.py
@@ -1,7 +1,7 @@
# coding: utf-8
import humanize
-import simplejson
+import json
try:
@@ -66,4 +66,4 @@ def serializable(result):
def json_dumps(result):
- return simplejson.dumps(serializable(result), indent=4, sort_keys=True,
for_json=True)
+ return json.dumps(serializable(result), indent=4, sort_keys=True)
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,6 @@ This part is a command line interface to
requires = [
'copr',
'humanize',
- 'simplejson',
'jinja2',
'setuptools',
'future',