forked from pool/python-diskcache
- Switch to pyproject macros.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-diskcache?expand=0&rev=29
This commit is contained in:
84
python-diskcache.spec
Normal file
84
python-diskcache.spec
Normal file
@@ -0,0 +1,84 @@
|
||||
#
|
||||
# spec file for package python-diskcache
|
||||
#
|
||||
# Copyright (c) 2025 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/
|
||||
#
|
||||
|
||||
|
||||
%if 0%{?suse_version} == 1600
|
||||
# No django in SLFO:Main
|
||||
%bcond_with django
|
||||
%else
|
||||
%bcond_without django
|
||||
%endif
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-diskcache
|
||||
Version: 5.6.3
|
||||
Release: 0
|
||||
Summary: Disk and file backed cache
|
||||
License: Apache-2.0
|
||||
URL: https://grantjenks.com/docs/diskcache/
|
||||
Source: https://github.com/grantjenks/python-diskcache/archive/v%{version}.tar.gz#/diskcache-%{version}.tar.gz
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pytest-xdist}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: %{pythons}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
%if %{with django}
|
||||
BuildRequires: %{python_module Django if (%python-base without python36-base)}
|
||||
BuildRequires: %{python_module pytest-django if (%python-base without python36-base)}
|
||||
%endif
|
||||
Requires: python
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
DiskCache: Disk Backed Cache
|
||||
|
||||
DiskCache is a disk and file backed cache library, written
|
||||
in pure Python, and compatible with Django.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
sed -i '/--cov/d' tox.ini
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
%if %{without django}
|
||||
python_flags=("--ignore" "tests/test_doctest.py" "-k" "not README.rst")
|
||||
%else
|
||||
# No python36-Django 4 on TW
|
||||
python36_flags=("--ignore" "tests/test_doctest.py" "-k" "not README.rst")
|
||||
%endif
|
||||
# Broken since Django 3.2 -- https://github.com/grantjenks/python-diskcache/issues/210
|
||||
donttest_djangocache="--ignore tests/test_djangocache.py"
|
||||
%pytest "${$python_flags[@]}" "${python_flags[@]}" ${donttest_djangocache}
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
%doc README.rst
|
||||
%{python_sitelib}/diskcache
|
||||
%{python_sitelib}/diskcache-%{version}*-info
|
||||
|
||||
%changelog
|
||||
Reference in New Issue
Block a user