Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| dd8f5cc349 | |||
| 2e94fd285c | |||
| 7a5b19187c | |||
| a300897b8e |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1262789aa962ae708a7d035162487d9c8c5ad7aa906bf40868c92e87ee40ea49
|
|
||||||
size 143761
|
|
||||||
3
python-llfuse-release-1.5.1.tar.gz
Normal file
3
python-llfuse-release-1.5.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:10247b79919b9f05585b416eaac9201020537b15add948779a23f7b164dff4a4
|
||||||
|
size 144174
|
||||||
@@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 24 04:19:06 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Switch to pyproject macros.
|
||||||
|
- No more greedy globs in %files.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 23 20:15:56 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 1.5.1:
|
||||||
|
* Support and test on Python 3.13 also.
|
||||||
|
* Cythonized using Cython 3.0.11 to get Python 3.13 support.
|
||||||
|
* Misc. CI and readthedocs related changes.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Aug 13 19:56:14 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Sun Aug 13 19:56:14 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-llfuse
|
# spec file for package python-llfuse
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,18 +18,19 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-llfuse
|
Name: python-llfuse
|
||||||
Version: 1.5.0
|
Version: 1.5.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python Bindings for the low-level FUSE API
|
Summary: Python Bindings for the low-level FUSE API
|
||||||
License: LGPL-2.1-or-later
|
License: LGPL-2.1-or-later
|
||||||
Group: Development/Libraries/Python
|
|
||||||
URL: https://github.com/python-llfuse/python-llfuse
|
URL: https://github.com/python-llfuse/python-llfuse
|
||||||
Source: https://github.com/python-llfuse/python-llfuse/archive/release-%{version}.tar.gz#/python-llfuse-release-%{version}.tar.gz
|
Source: https://github.com/python-llfuse/python-llfuse/archive/release-%{version}.tar.gz#/python-llfuse-release-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module Cython}
|
BuildRequires: %{python_module Cython}
|
||||||
BuildRequires: %{python_module devel >= 3.8}
|
BuildRequires: %{python_module devel >= 3.8}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module sqlite3}
|
BuildRequires: %{python_module sqlite3}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: dos2unix
|
BuildRequires: dos2unix
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: fuse-devel >= 2.8.0
|
BuildRequires: fuse-devel >= 2.8.0
|
||||||
@@ -61,11 +62,10 @@ dos2unix README.rst
|
|||||||
# fix-char-cast-to-unsigned-int
|
# fix-char-cast-to-unsigned-int
|
||||||
sed -i 's|udata, i, padding_char);|udata, i, (unsigned char)padding_char);|' src/llfuse.c
|
sed -i 's|udata, i, padding_char);|udata, i, (unsigned char)padding_char);|' src/llfuse.c
|
||||||
sed -i 's|udata, uoffset+i, chars\[i\]);|udata, uoffset+i, (unsigned char)chars\[i\]);|' src/llfuse.c
|
sed -i 's|udata, uoffset+i, chars\[i\]);|udata, uoffset+i, (unsigned char)chars\[i\]);|' src/llfuse.c
|
||||||
|
%pyproject_wheel
|
||||||
%python_build
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@@ -77,6 +77,7 @@ sed -i 's|udata, uoffset+i, chars\[i\]);|udata, uoffset+i, (unsigned char)chars\
|
|||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc Changes.rst README.rst
|
%doc Changes.rst README.rst
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitearch}
|
%{python_sitearch}/llfuse.cpython-*-linux-gnu.so
|
||||||
|
%{python_sitearch}/llfuse-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user