2018-08-28 10:25:29 +02:00
|
|
|
|
#
|
|
|
|
|
# spec file for package python-jaraco.functools
|
|
|
|
|
#
|
2024-01-02 22:14:49 +01:00
|
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2018-08-28 10:25:29 +02: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.
|
|
|
|
|
|
2019-02-27 09:26:33 +01:00
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2018-08-28 10:25:29 +02:00
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
2023-04-21 16:27:44 +02:00
|
|
|
|
%{?sle15_python_module_pythons}
|
2018-08-28 10:25:29 +02:00
|
|
|
|
Name: python-jaraco.functools
|
2024-06-04 10:01:49 +02:00
|
|
|
|
Version: 4.0.1
|
2018-08-28 10:25:29 +02:00
|
|
|
|
Release: 0
|
|
|
|
|
Summary: Tools to work with functools
|
|
|
|
|
License: MIT
|
|
|
|
|
Group: Development/Languages/Python
|
2019-08-21 16:44:09 +02:00
|
|
|
|
URL: https://github.com/jaraco/jaraco.functools
|
2024-06-04 10:01:49 +02:00
|
|
|
|
Source0: https://files.pythonhosted.org/packages/source/j/jaraco.functools/jaraco_functools-%{version}.tar.gz
|
2018-08-28 12:06:20 +02:00
|
|
|
|
BuildRequires: %{python_module jaraco.classes}
|
2019-02-27 09:26:33 +01:00
|
|
|
|
BuildRequires: %{python_module more-itertools}
|
2022-08-31 17:11:04 +02:00
|
|
|
|
BuildRequires: %{python_module pip}
|
|
|
|
|
BuildRequires: %{python_module setuptools >= 56}
|
|
|
|
|
BuildRequires: %{python_module setuptools_scm >= 3.4.1}
|
|
|
|
|
BuildRequires: %{python_module wheel}
|
2019-02-27 09:26:33 +01:00
|
|
|
|
BuildRequires: fdupes
|
2018-08-28 12:06:20 +02:00
|
|
|
|
BuildRequires: python-rpm-macros
|
2019-02-27 09:26:33 +01:00
|
|
|
|
Requires: python-more-itertools
|
2019-08-21 16:44:09 +02:00
|
|
|
|
BuildArch: noarch
|
2022-09-15 00:02:22 +02:00
|
|
|
|
# SECTION test and docs
|
|
|
|
|
BuildRequires: %{python_module Sphinx}
|
|
|
|
|
BuildRequires: %{python_module pytest}
|
|
|
|
|
BuildRequires: %{python_module rst.linker >= 1.9}
|
|
|
|
|
# /SECTION
|
2018-08-28 10:25:29 +02:00
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
jaraco.functools Tools for working with functools.
|
|
|
|
|
Additional functools in the spirit of stdlib’s functools.
|
|
|
|
|
|
|
|
|
|
%prep
|
2024-06-04 10:01:49 +02:00
|
|
|
|
%setup -q -n jaraco_functools-%{version}
|
2019-02-27 09:26:33 +01:00
|
|
|
|
sed -i 's/--flake8//' pytest.ini
|
2020-03-09 14:32:31 +01:00
|
|
|
|
sed -i 's/--black --cov//' pytest.ini
|
2018-08-28 10:25:29 +02:00
|
|
|
|
rm -rf jaraco.functools.egg-info
|
|
|
|
|
|
|
|
|
|
%build
|
2022-08-31 17:11:04 +02:00
|
|
|
|
%pyproject_wheel
|
2018-08-28 10:25:29 +02:00
|
|
|
|
|
|
|
|
|
%install
|
2022-08-31 17:11:04 +02:00
|
|
|
|
%pyproject_install
|
2019-02-27 09:26:33 +01:00
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2018-08-28 10:25:29 +02:00
|
|
|
|
|
|
|
|
|
%check
|
2019-08-21 16:44:09 +02:00
|
|
|
|
# test_function_throttled - can randomly fail
|
2020-03-09 14:32:31 +01:00
|
|
|
|
%pytest -k 'not test_function_throttled'
|
2018-08-28 10:25:29 +02:00
|
|
|
|
|
|
|
|
|
%files %{python_files}
|
2019-02-27 09:26:33 +01:00
|
|
|
|
%license LICENSE
|
2024-01-02 22:14:49 +01:00
|
|
|
|
%doc docs/*.rst README.rst NEWS.rst
|
|
|
|
|
%{python_sitelib}/jaraco/functools
|
|
|
|
|
%{python_sitelib}/jaraco.functools-%{version}.dist-info
|
2018-08-28 10:25:29 +02:00
|
|
|
|
|
|
|
|
|
%changelog
|