2020-11-23 09:27:56 +00:00
|
|
|
|
#
|
2022-08-26 07:47:54 +00:00
|
|
|
|
# spec file
|
2020-11-23 09:27:56 +00:00
|
|
|
|
#
|
2022-08-26 07:47:54 +00:00
|
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2020-11-23 09:27:56 +00:00
|
|
|
|
#
|
|
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-09-20 21:55:15 +00:00
|
|
|
|
%{?!python_module:%define python3-%{**}}
|
|
|
|
|
|
%define skip_python2 1
|
2022-08-26 07:47:54 +00:00
|
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
|
|
|
|
%if "%{flavor}" == "test"
|
|
|
|
|
|
%define psuffix -test
|
|
|
|
|
|
%bcond_without test
|
|
|
|
|
|
%else
|
|
|
|
|
|
%define psuffix %{nil}
|
|
|
|
|
|
%bcond_with test
|
|
|
|
|
|
%endif
|
|
|
|
|
|
Name: python-importlib-resources%{psuffix}
|
|
|
|
|
|
Version: 5.9.0
|
2020-11-23 09:27:56 +00:00
|
|
|
|
Release: 0
|
|
|
|
|
|
Summary: Read resources from Python packages
|
|
|
|
|
|
License: Apache-2.0
|
|
|
|
|
|
URL: https://importlib-resources.readthedocs.io/
|
|
|
|
|
|
Source: https://files.pythonhosted.org/packages/source/i/importlib_resources/importlib_resources-%{version}.tar.gz
|
2022-08-26 07:47:54 +00:00
|
|
|
|
BuildRequires: %{python_module pip}
|
|
|
|
|
|
BuildRequires: %{python_module poetry}
|
2020-11-23 09:27:56 +00:00
|
|
|
|
BuildRequires: %{python_module setuptools_scm >= 3.4.1}
|
|
|
|
|
|
BuildRequires: %{python_module setuptools}
|
2022-08-26 07:47:54 +00:00
|
|
|
|
BuildRequires: %{python_module wheel}
|
2020-11-23 09:27:56 +00:00
|
|
|
|
BuildRequires: fdupes
|
|
|
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
|
|
Provides: python-importlib_resources = %{version}
|
2020-11-24 18:14:27 +00:00
|
|
|
|
Obsoletes: python-importlib_resources < %{version}
|
2020-11-23 09:27:56 +00:00
|
|
|
|
BuildArch: noarch
|
2021-09-20 21:55:15 +00:00
|
|
|
|
%if 0%{python_version_nodots} < 310
|
|
|
|
|
|
Requires: python-zipp >= 3.1.0
|
2020-11-23 09:27:56 +00:00
|
|
|
|
%endif
|
2022-08-26 07:47:54 +00:00
|
|
|
|
%if %{with test}
|
|
|
|
|
|
BuildRequires: %{python_module importlib-resources = %{version}}
|
|
|
|
|
|
BuildRequires: %{python_module pytest >= 6}
|
|
|
|
|
|
BuildRequires: %{python_module testsuite}
|
|
|
|
|
|
BuildRequires: %{python_module toml}
|
|
|
|
|
|
BuildRequires: %{python_module zipp >= 3.1.0 if %python-base < 3.10}
|
|
|
|
|
|
%endif
|
2020-11-23 09:27:56 +00:00
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
2021-09-20 21:55:15 +00:00
|
|
|
|
importlib_resources is a backport of Python standard library
|
|
|
|
|
|
importlib.resources module for older Pythons. Users of Python 3.9 and
|
|
|
|
|
|
beyond should use the standard library module, since for these versions,
|
|
|
|
|
|
importlib_resources just delegates to that module.
|
2020-11-23 09:27:56 +00:00
|
|
|
|
|
2021-09-20 21:55:15 +00:00
|
|
|
|
The key goal of this module is to replace parts of pkg_resources with a
|
|
|
|
|
|
solution in Python’s stdlib that relies on well-defined APIs. This makes
|
|
|
|
|
|
reading resources included in packages easier, with more stable and
|
|
|
|
|
|
consistent semantics.
|
2020-11-23 09:27:56 +00:00
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
|
%setup -q -n importlib_resources-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
2022-08-26 07:47:54 +00:00
|
|
|
|
%pyproject_wheel
|
2020-11-23 09:27:56 +00:00
|
|
|
|
|
|
|
|
|
|
%install
|
2022-08-26 07:47:54 +00:00
|
|
|
|
%if !%{with test}
|
|
|
|
|
|
%pyproject_install
|
2020-11-23 09:27:56 +00:00
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2022-08-26 07:47:54 +00:00
|
|
|
|
%endif
|
2020-11-23 09:27:56 +00:00
|
|
|
|
|
2022-08-26 07:47:54 +00:00
|
|
|
|
%if %{with test}
|
2020-11-23 09:27:56 +00:00
|
|
|
|
%check
|
2021-09-20 21:55:15 +00:00
|
|
|
|
# create pycache so that update-zips.py does not fail with ValueError
|
|
|
|
|
|
python3 -m compileall $PWD/importlib_resources/tests/
|
|
|
|
|
|
%pytest
|
2022-08-26 07:47:54 +00:00
|
|
|
|
%endif
|
2020-11-23 09:27:56 +00:00
|
|
|
|
|
2022-08-26 07:47:54 +00:00
|
|
|
|
%if !%{with test}
|
2020-11-23 09:27:56 +00:00
|
|
|
|
%files %{python_files}
|
|
|
|
|
|
%doc README.rst
|
|
|
|
|
|
%license LICENSE
|
|
|
|
|
|
%{python_sitelib}/importlib_resources
|
|
|
|
|
|
%{python_sitelib}/importlib_resources-%{version}*-info
|
2022-08-26 07:47:54 +00:00
|
|
|
|
%endif
|
2020-11-23 09:27:56 +00:00
|
|
|
|
|
|
|
|
|
|
%changelog
|