14
0
forked from pool/python-pylru
Tomáš Chvátal
2019-12-10 08:28:04 +00:00
committed by Git OBS Bridge
parent 62461bf4d4
commit 7e45178a2f

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-pylru
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,27 +12,28 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pylru
Version: 1.2.0
Release: 0
License: GPL-2.0
Summary: A least recently used (LRU) cache implementation
Url: https://github.com/jlhutch/pylru
License: GPL-2.0-only
Group: Development/Languages/Python
URL: https://github.com/jlhutch/pylru
Source: https://files.pythonhosted.org/packages/source/p/pylru/pylru-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
Pylru implements a true LRU cache along with several support classes. The cache is efficient and written in pure Python. It works with Python 2.6+ including the 3.x series. Basic operations (lookup, insert, delete) all run in a constant amount of time. Pylru provides a cache class with a simple dict interface. It also provides classes to wrap any object that has a dict interface with a cache. Both write-through and write-back semantics are supported. Pylru also provides classes to wrap functions in a similar way, including a function decorator.
%prep
%setup -q -n pylru-%{version}
@@ -42,8 +43,9 @@ Pylru implements a true LRU cache along with several support classes. The cache
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_exec setup.py test
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python test.py
%files %{python_files}
%license LICENSE.txt