From 6538a00ad6951de642b3dbd7e5dcdb9f8d15a2f809aeb32303d213319002fff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Fri, 3 May 2024 21:26:17 +0200 Subject: [PATCH] Sync from SUSE:SLFO:Main python-locket revision 9324afb5f91feb71d31575fe7def960b --- .gitattributes | 23 +++++++++++++ locket-1.0.0-gh.tar.gz | 3 ++ python-locket.changes | 37 +++++++++++++++++++++ python-locket.spec | 73 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 136 insertions(+) create mode 100644 .gitattributes create mode 100644 locket-1.0.0-gh.tar.gz create mode 100644 python-locket.changes create mode 100644 python-locket.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/locket-1.0.0-gh.tar.gz b/locket-1.0.0-gh.tar.gz new file mode 100644 index 0000000..0a2b774 --- /dev/null +++ b/locket-1.0.0-gh.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1017278428998ac23c0716660587eeb39f069493d39922b7f5ae6c39c62f86c6 +size 6541 diff --git a/python-locket.changes b/python-locket.changes new file mode 100644 index 0000000..2d3bf5b --- /dev/null +++ b/python-locket.changes @@ -0,0 +1,37 @@ +------------------------------------------------------------------- +Fri Jun 24 21:37:54 UTC 2022 - Ben Greiner + +- 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 + +- 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 + diff --git a/python-locket.spec b/python-locket.spec new file mode 100644 index 0000000..239b697 --- /dev/null +++ b/python-locket.spec @@ -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