Compare commits

4 Commits

Author SHA256 Message Date
dd8f5cc349 Accepting request 1288121 from devel:languages:python
- Switch to pyproject macros.
- No more greedy globs in %files.

OBS-URL: https://build.opensuse.org/request/show/1288121
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-llfuse?expand=0&rev=5
2025-06-24 18:49:06 +00:00
2e94fd285c - Switch to pyproject macros.
- No more greedy globs in %files.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-llfuse?expand=0&rev=28
2025-06-24 04:20:00 +00:00
7a5b19187c Accepting request 1217414 from devel:languages:python
- 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.

OBS-URL: https://build.opensuse.org/request/show/1217414
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-llfuse?expand=0&rev=4
2024-10-24 13:43:11 +00:00
a300897b8e - 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.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-llfuse?expand=0&rev=26
2024-10-23 20:16:04 +00:00
4 changed files with 25 additions and 10 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1262789aa962ae708a7d035162487d9c8c5ad7aa906bf40868c92e87ee40ea49
size 143761

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:10247b79919b9f05585b416eaac9201020537b15add948779a23f7b164dff4a4
size 144174

View File

@@ -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>

View File

@@ -1,7 +1,7 @@
#
# 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
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,18 +18,19 @@
%{?sle15_python_module_pythons}
Name: python-llfuse
Version: 1.5.0
Version: 1.5.1
Release: 0
Summary: Python Bindings for the low-level FUSE API
License: LGPL-2.1-or-later
Group: Development/Libraries/Python
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
BuildRequires: %{python_module Cython}
BuildRequires: %{python_module devel >= 3.8}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module sqlite3}
BuildRequires: %{python_module wheel}
BuildRequires: dos2unix
BuildRequires: fdupes
BuildRequires: fuse-devel >= 2.8.0
@@ -61,11 +62,10 @@ dos2unix README.rst
# 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, uoffset+i, chars\[i\]);|udata, uoffset+i, (unsigned char)chars\[i\]);|' src/llfuse.c
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
@@ -77,6 +77,7 @@ sed -i 's|udata, uoffset+i, chars\[i\]);|udata, uoffset+i, (unsigned char)chars\
%files %{python_files}
%doc Changes.rst README.rst
%license LICENSE
%{python_sitearch}
%{python_sitearch}/llfuse.cpython-*-linux-gnu.so
%{python_sitearch}/llfuse-%{version}.dist-info
%changelog