Dirk Mueller
6c64f22a00
- Add %{?sle15_python_module_pythons} OBS-URL: https://build.opensuse.org/request/show/1169490 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-locket?expand=0&rev=11
74 lines
2.4 KiB
RPMSpec
74 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package python-locket
|
|
#
|
|
# Copyright (c) 2022 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-locket
|
|
Version: 1.0.0
|
|
Release: 0
|
|
Summary: File-based locks for Python
|
|
License: BSD-2-Clause
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/mwilliamson/locket.py
|
|
Source: https://github.com/mwilliamson/locket.py/archive/refs/tags/%{version}.tar.gz#/locket-%{version}-gh.tar.gz
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module spur}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
Locket implements a lock that can be used by multiple processes provided
|
|
they use the same path.
|
|
|
|
Locks largely behave as (non-reentrant) `Lock` instances from the `threading`
|
|
module in the standard library. Specifically, their behaviour is:
|
|
|
|
* Locks are uniquely identified by the file being locked,
|
|
both in the same process and across different processes.
|
|
* Locks are either in a locked or unlocked state.
|
|
* When the lock is unlocked, calling `acquire()` returns immediately and changes
|
|
the lock state to locked.
|
|
* When the lock is locked, calling `acquire()` will block until the lock state
|
|
changes to unlocked, or until the timeout expires.
|
|
* If a process holds a lock, any thread in that process can call `release()` to
|
|
change the state to unlocked.
|
|
* Behaviour of locks after `fork` is undefined.
|
|
|
|
%prep
|
|
%setup -q -n locket.py-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE
|
|
%{python_sitelib}/locket
|
|
%{python_sitelib}/locket-%{version}*-info
|
|
|
|
%changelog
|