forked from pool/python-filelock
Compare commits
19 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| b84a025a09 | |||
| 87945aab0b | |||
| a685ce3cb5 | |||
| 68a4cec8b4 | |||
| 52cfc828b0 | |||
| d233d823c8 | |||
| 67298e8c3b | |||
| cd879d9ffe | |||
| 56f830c3bd | |||
| adc4aa74d9 | |||
| f8d1910013 | |||
| d2053e1b98 | |||
| 0a519cc0ee | |||
| 413069b4bb | |||
| 5b9b589384 | |||
| 40005fbf11 | |||
| 8abd4711f0 | |||
| aa4be953b0 | |||
| 76165c8c12 |
3
_multibuild
Normal file
3
_multibuild
Normal file
@@ -0,0 +1,3 @@
|
||||
<multibuild>
|
||||
<package>test</package>
|
||||
</multibuild>
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:58a2549afdf9e02e10720eaa4d4470f56386d7a6f72edd7d0596337af8ed7ad8
|
||||
size 17564
|
||||
3
filelock-3.20.3.tar.gz
Normal file
3
filelock-3.20.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18c57ee915c7ec61cff0ecf7f0f869936c7c30191bb0cf406f1341778d0834e1
|
||||
size 19485
|
||||
@@ -1,3 +1,76 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 11:19:38 UTC 2026 - Nico Krapp <nico.krapp@suse.com>
|
||||
|
||||
- Update to 3.20.3 (fixes CVE-2026-22701, bsc#1256457)
|
||||
* Fix TOCTOU symlink vulnerability in SoftFileLock by @gaborbernat in #465
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 5 10:10:09 UTC 2026 - Nico Krapp <nico.krapp@suse.com>
|
||||
|
||||
- Update to 3.20.2
|
||||
* Support Unix systems without O_NOFOLLOW by @mwilliamson in #463
|
||||
* [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci[bot] in #464
|
||||
- Update to 3.20.1 (fixes CVE-2025-68146, bsc#1255244)
|
||||
* CVE-2025-68146: Fix TOCTOU symlink vulnerability in lock file creation
|
||||
by @gaborbernat in #461
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 21 09:31:13 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 3.20.0
|
||||
* Add tox.toml to sdist
|
||||
* Update docs with example
|
||||
* Add 3.14 support and drop 3.9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 17 01:56:39 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Add missing BuildRequires on pytest-timeout.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 14 20:36:58 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 3.19.1:
|
||||
* add 3.14t (free threading) to matrix
|
||||
- update to 3.19.0:
|
||||
* Add support for 3.14
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 19 07:44:21 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 3.18.0
|
||||
* Indicate that locks are exclusive/write locks
|
||||
* Support fcntl check on Emscripten
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 30 11:22:48 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 3.17.0
|
||||
* Drop support for Python 3.8
|
||||
* Update README.md
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 9 07:27:30 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 3.16.1
|
||||
* CI improvements
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Sep 8 15:56:37 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 3.16.0:
|
||||
* Test Python 3.13
|
||||
* Add 3.13 to CI
|
||||
- update to 3.15.4:
|
||||
* Pass `file_lock` as positional argument
|
||||
- update to 3.15.3:
|
||||
* Add test for virtualenv stability
|
||||
* Fix `TypeError: _CountedFileLock.__init__() got an unexpected
|
||||
keyword argument 'timeout'`
|
||||
- update to 3.15.2:
|
||||
* Use a metaclass to implement the singleton pattern
|
||||
- split into test multibuild to avoid cycle over virtualenv
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 17 06:00:15 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-filelock
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2026 SUSE LLC and contributors
|
||||
# Copyright (c) 2018 Matthias Fehring <buschmann23@opensuse.org>
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@@ -17,9 +17,17 @@
|
||||
#
|
||||
|
||||
|
||||
%global flavor @BUILD_FLAVOR@%{nil}
|
||||
%if "%{flavor}" == "test"
|
||||
%define pkg_suffix -test
|
||||
%bcond_without test
|
||||
%else
|
||||
%define pkg_suffix %{nil}
|
||||
%bcond_with test
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-filelock
|
||||
Version: 3.15.1
|
||||
Name: python-filelock%{?pkg_suffix}
|
||||
Version: 3.20.3
|
||||
Release: 0
|
||||
Summary: Platform Independent File Lock in Python
|
||||
License: Unlicense
|
||||
@@ -29,10 +37,14 @@ BuildRequires: %{python_module asyncio}
|
||||
BuildRequires: %{python_module hatch_vcs}
|
||||
BuildRequires: %{python_module hatchling}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module wheel}
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module pytest-asyncio}
|
||||
BuildRequires: %{python_module pytest-mock}
|
||||
BuildRequires: %{python_module pytest-timeout}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: %{python_module virtualenv}
|
||||
%endif
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
%if 0%{?python_version_nodots} < 311
|
||||
@@ -48,22 +60,25 @@ independent file lock in Python, which provides a simple way of
|
||||
inter-process communication.
|
||||
|
||||
%prep
|
||||
%setup -q -n filelock-%{version}
|
||||
%autosetup -p1 -n filelock-%{version}
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%if !%{with test}
|
||||
%install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}/%{$python_sitelib}
|
||||
|
||||
%check
|
||||
%pytest -rs
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{python_sitelib}/filelock
|
||||
%{python_sitelib}/filelock-%{version}*-info
|
||||
%else
|
||||
|
||||
%check
|
||||
%pytest -rs
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user