Compare commits
10 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| a005b52758 | |||
| a7eff275ce | |||
| e9511a53d6 | |||
| c2f3f5ecde | |||
| b2ff2fd029 | |||
| 4a64c892ad | |||
| 7469842c8b | |||
| 54c9059814 | |||
| 48824c5482 | |||
| 70a977d77d |
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
|
|
||||||
BIN
filelock-3.18.0.tar.gz
LFS
Normal file
BIN
filelock-3.18.0.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +1,39 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
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>
|
Mon Jun 17 06:00:15 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-filelock
|
# spec file for package python-filelock
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
# Copyright (c) 2018 Matthias Fehring <buschmann23@opensuse.org>
|
# Copyright (c) 2018 Matthias Fehring <buschmann23@opensuse.org>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# 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}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-filelock
|
Name: python-filelock%{?pkg_suffix}
|
||||||
Version: 3.15.1
|
Version: 3.18.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Platform Independent File Lock in Python
|
Summary: Platform Independent File Lock in Python
|
||||||
License: Unlicense
|
License: Unlicense
|
||||||
@@ -29,10 +37,13 @@ BuildRequires: %{python_module asyncio}
|
|||||||
BuildRequires: %{python_module hatch_vcs}
|
BuildRequires: %{python_module hatch_vcs}
|
||||||
BuildRequires: %{python_module hatchling}
|
BuildRequires: %{python_module hatchling}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
|
%if %{with test}
|
||||||
BuildRequires: %{python_module pytest-asyncio}
|
BuildRequires: %{python_module pytest-asyncio}
|
||||||
BuildRequires: %{python_module pytest-mock}
|
BuildRequires: %{python_module pytest-mock}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module virtualenv}
|
||||||
|
%endif
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
%if 0%{?python_version_nodots} < 311
|
%if 0%{?python_version_nodots} < 311
|
||||||
@@ -53,17 +64,20 @@ inter-process communication.
|
|||||||
%build
|
%build
|
||||||
%pyproject_wheel
|
%pyproject_wheel
|
||||||
|
|
||||||
|
%if !%{with test}
|
||||||
%install
|
%install
|
||||||
%pyproject_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}/%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}/%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
|
||||||
%pytest -rs
|
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.md
|
%doc README.md
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitelib}/filelock
|
%{python_sitelib}/filelock
|
||||||
%{python_sitelib}/filelock-%{version}*-info
|
%{python_sitelib}/filelock-%{version}*-info
|
||||||
|
%else
|
||||||
|
|
||||||
|
%check
|
||||||
|
%pytest -rs
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user