Accepting request 929840 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/929840 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-jsonpointer?expand=0&rev=16
This commit is contained in:
commit
7f7854ed5e
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 22 20:52:50 UTC 2021 - Stefan Schubert <schubi@suse.de>
|
||||||
|
|
||||||
|
- Use libalternatives instead of update-alternatives.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 15 08:57:07 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
Mon Mar 15 08:57:07 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -16,6 +16,12 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%if 0%{?suse_version} > 1500
|
||||||
|
%bcond_without libalternatives
|
||||||
|
%else
|
||||||
|
%bcond_with libalternatives
|
||||||
|
%endif
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-jsonpointer
|
Name: python-jsonpointer
|
||||||
Version: 2.1
|
Version: 2.1
|
||||||
@ -27,9 +33,14 @@ URL: https://github.com/stefankoegl/python-json-pointer
|
|||||||
Source: https://files.pythonhosted.org/packages/source/j/jsonpointer/jsonpointer-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/j/jsonpointer/jsonpointer-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros >= 20210929
|
||||||
|
%if %{with libalternatives}
|
||||||
|
Requires: alts
|
||||||
|
BuildRequires: alts
|
||||||
|
%else
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(preun): update-alternatives
|
Requires(preun): update-alternatives
|
||||||
|
%endif
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@ -50,6 +61,10 @@ A module to identify specific nodes in a JSON document (according to draft 08).
|
|||||||
%check
|
%check
|
||||||
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python tests.py
|
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python tests.py
|
||||||
|
|
||||||
|
%pre
|
||||||
|
# If libalternatives is used: Removing old update-alternatives entries.
|
||||||
|
%python_libalternatives_reset_alternative jsonpointer
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%python_install_alternative jsonpointer
|
%python_install_alternative jsonpointer
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user