14
0

- Switch to pyproject macros.

- No more greedy globs in %files.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsonrpclib-pelix?expand=0&rev=13
This commit is contained in:
2025-06-27 02:55:53 +00:00
committed by Git OBS Bridge
parent fbd9cc18d7
commit 8f755e45d0
2 changed files with 13 additions and 5 deletions

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Jun 27 02:48:04 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
- No more greedy globs in %files.
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 19 07:09:22 UTC 2024 - Dirk Müller <dmueller@suse.com> Wed Jun 19 07:09:22 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-jsonrpclib-pelix # spec file for package python-jsonrpclib-pelix
# #
# Copyright (c) 2024 SUSE LLC # Copyright (c) 2025 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -16,7 +16,6 @@
# #
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-jsonrpclib-pelix Name: python-jsonrpclib-pelix
Version: 0.4.3.3 Version: 0.4.3.3
Release: 0 Release: 0
@@ -24,8 +23,10 @@ Summary: JSPN-RPC over HTTP Library for Pelix Remote Services
License: Apache-2.0 License: Apache-2.0
URL: https://github.com/tcalmant/jsonrpclib/ URL: https://github.com/tcalmant/jsonrpclib/
Source: https://github.com/tcalmant/jsonrpclib/archive/v%{version}.tar.gz Source: https://github.com/tcalmant/jsonrpclib/archive/v%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest} BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
BuildArch: noarch BuildArch: noarch
@@ -39,17 +40,18 @@ A Python (2 & 3) JSON-RPC over HTTP that mirrors xmlrpclib syntax.
sed -i -e 's:python$:python3:' tests/cgi-bin/cgi_server.py sed -i -e 's:python$:python3:' tests/cgi-bin/cgi_server.py
%build %build
%python_build %pyproject_wheel
%install %install
%python_install %pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%check %check
%pytest %pytest
%files %{python_files} %files %{python_files}
%{python_sitelib}/* %{python_sitelib}/jsonrpclib
%{python_sitelib}/jsonrpclib_pelix-%{version}.dist-info
%license LICENSE %license LICENSE
%doc README.md %doc README.md