forked from pool/python-portalocker
* Completely modernized portalocker build system and added fully strict pyright and mypy compliance with ruff formatting and checking. Dropped support for deprecated Python versions, only 3.9 and up are supported now. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-portalocker?expand=0&rev=26
70 lines
2.1 KiB
RPMSpec
70 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package python-portalocker
|
|
#
|
|
# Copyright (c) 2024 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/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-portalocker
|
|
Version: 3.0.0
|
|
Release: 0
|
|
Summary: Locking library for Python
|
|
License: Python-2.0
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/WoLpH/portalocker
|
|
Source: https://github.com/WoLpH/portalocker/archive/v%{version}.tar.gz
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module pytest >= 3.4.0}
|
|
BuildRequires: %{python_module setuptools >= 38.3.0}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Suggests: python-redis
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Portalocker is a library to provide an API to file locking.
|
|
|
|
On Linux and Unix systems, the locks are advisory by default. By
|
|
specifying the `-o mand` option to the mount command, it is possible
|
|
to enable mandatory file locking on Linux. This is generally not
|
|
recommended however.
|
|
|
|
%prep
|
|
%setup -q -n portalocker-%{version}
|
|
# do not bother with benchmark and cov
|
|
rm pytest.ini
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
# Do not test redis, the optional dependency is not installed by
|
|
# default
|
|
%pytest --ignore portalocker_tests/test_redis.py
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README.rst
|
|
%{python_sitelib}/portalocker
|
|
%{python_sitelib}/portalocker-%{version}.dist-info
|
|
|
|
%changelog
|