Sync from SUSE:SLFO:Main python-locket revision 9324afb5f91feb71d31575fe7def960b
This commit is contained in:
commit
6538a00ad6
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
BIN
locket-1.0.0-gh.tar.gz
(Stored with Git LFS)
Normal file
BIN
locket-1.0.0-gh.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
37
python-locket.changes
Normal file
37
python-locket.changes
Normal file
@ -0,0 +1,37 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 24 21:37:54 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Update to 1.0.0
|
||||
* No release notes. From git log:
|
||||
* Fix #5: make sure it is sane to use different timeouts on the
|
||||
same file
|
||||
* Close file when acquire() fails
|
||||
* Raise LockError when calling release on an unlocked lock
|
||||
* Use time.monotonic() when available
|
||||
- Enable test suite -- by requiring untested spur.py :(
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 4 12:50:05 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Remove superfluous devel dependency for noarch package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 18:15:09 UTC 2018 - jengelh@inai.de
|
||||
|
||||
- Trim other OS mentions from descriptions.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 14 08:21:40 UTC 2018 - sebix+novell.com@sebix.at
|
||||
|
||||
- use %license macro
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 19 17:48:47 UTC 2017 - toddrme2178@gmail.com
|
||||
|
||||
- Implement single-spec version.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 14 13:47:43 UTC 2015 - toddrme2178@gmail.com
|
||||
|
||||
- Initial version
|
||||
|
73
python-locket.spec
Normal file
73
python-locket.spec
Normal file
@ -0,0 +1,73 @@
|
||||
#
|
||||
# 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/
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
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
|
Loading…
Reference in New Issue
Block a user