15
0
forked from pool/python-funcy
Files
python-funcy/python-funcy.spec
Matej Cepl 1edf770954 Accepting request 915233 from home:glaubitz:branches:devel:languages:python
- Update to 1.16
  * support Python 3.9 officially
  * unify @memoize() and @cache(): both have .skip/.memory/.invalidate/.invalidate_all now
  * support dynamic resulting exception in @reraise() (Laurens Duijvesteijn)
  * made () optional for @decorator-made decorators with kw-only args
  * added @throttle()
  * added has_path() (Denys Zorinets)
  * fixed autocurry kwargs handling
- from version 1.15
  * made rpartial accept keyworded arguments (Ruan Comelli)
  * made `@cache.invalidate()` idempotent (Dmitry Vasilyanov)
  * made raiser() accept a string as a shortcut
  * fixed cheatsheat description for 'distinct' helper (tsouvarev)
  * fixed some seqs docstrings
  * fixed some typos (Tim Gates)

OBS-URL: https://build.opensuse.org/request/show/915233
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-funcy?expand=0&rev=15
2021-09-06 13:22:22 +00:00

61 lines
1.7 KiB
RPMSpec

#
# spec file for package python-funcy
#
# Copyright (c) 2021 SUSE LLC
#
# 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-funcy
Version: 1.16
Release: 0
Summary: Functional tools for Python
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/Suor/funcy
Source: https://files.pythonhosted.org/packages/source/f/funcy/funcy-%{version}.tar.gz
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module whatever}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
A collection of functional tools focused on practicality.
Inspired by clojure, underscore and the author's own abstractions.
%prep
%setup -q -n funcy-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
rm -r tests/__pycache__
%pytest
%files %{python_files}
%doc CHANGELOG README.rst
%license LICENSE
%{python_sitelib}/*
%changelog