4 Commits

Author SHA256 Message Date
eca4cb098a Accepting request 1284635 from devel:languages:python
- Switch to pyproject macros.
- Explicitly list files and directories in %files.

OBS-URL: https://build.opensuse.org/request/show/1284635
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyfuse3?expand=0&rev=13
2025-06-11 14:25:50 +00:00
8523016329 - Switch to pyproject macros.
- Explicitly list files and directories in %files.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyfuse3?expand=0&rev=28
2025-06-11 06:18:37 +00:00
09658f688d Accepting request 1198048 from devel:languages:python
- update to 3.4.0:
  * Cythonized with latest Cython 3.0.11 to support Python 3.13.
  * CI: also test python 3.13, run mypy.
  * Move _pyfuse3 to pyfuse3._pyfuse3 and add a compatibility
    wrapper for the old name.
  * Move pyfuse3_asyncio to pyfuse3.asyncio and add a
    compatibility wrapper for the old name.
  * Add bytes subclass XAttrNameT as the type of extended
    attribute names.
  * Various fixes to type annotations.
  * Add py.typed marker to enable external use of type
    annotations.

OBS-URL: https://build.opensuse.org/request/show/1198048
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyfuse3?expand=0&rev=12
2024-09-04 11:22:34 +00:00
c627b5ecb4 - update to 3.4.0:
* Cythonized with latest Cython 3.0.11 to support Python 3.13.
  * CI: also test python 3.13, run mypy.
  * Move _pyfuse3 to pyfuse3._pyfuse3 and add a compatibility
    wrapper for the old name.
  * Move pyfuse3_asyncio to pyfuse3.asyncio and add a
    compatibility wrapper for the old name.
  * Add bytes subclass XAttrNameT as the type of extended
    attribute names.
  * Various fixes to type annotations.
  * Add py.typed marker to enable external use of type
    annotations.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyfuse3?expand=0&rev=26
2024-08-31 11:59:53 +00:00
4 changed files with 38 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2b31fe412479f9620da2067dd739ed23f4cc37364224891938dedf7766e573bd
size 867765

3
pyfuse3-3.4.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:793493f4d5e2b3bc10e13b3421d426a6e2e3365264c24376a50b8cbc69762d39
size 962992

View File

@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Wed Jun 11 05:53:36 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
- Explicitly list files and directories in %files.
-------------------------------------------------------------------
Sat Aug 31 11:59:25 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 3.4.0:
* Cythonized with latest Cython 3.0.11 to support Python 3.13.
* CI: also test python 3.13, run mypy.
* Move _pyfuse3 to pyfuse3._pyfuse3 and add a compatibility
wrapper for the old name.
* Move pyfuse3_asyncio to pyfuse3.asyncio and add a
compatibility wrapper for the old name.
* Add bytes subclass XAttrNameT as the type of extended
attribute names.
* Various fixes to type annotations.
* Add py.typed marker to enable external use of type
annotations.
-------------------------------------------------------------------
Sun Aug 13 21:20:17 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file
# spec file for package python-pyfuse3
#
# 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
@@ -19,7 +19,7 @@
%define pname pyfuse3
%{?sle15_python_module_pythons}
Name: python-%{pname}
Version: 3.3.0
Version: 3.4.0
Release: 0
Summary: Python Bindings for the low-level FUSE3 API
License: LGPL-2.1-or-later
@@ -30,8 +30,10 @@ BuildRequires: %{python_module devel >= 3.8}
BuildRequires: %{python_module pytest >= 3.4.0}
# upstream use: pytest-trio >= 0.15
BuildRequires: %{python_module pytest-trio}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module trio}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: fuse3-devel >= 3.3.0
BuildRequires: libattr-devel
@@ -48,10 +50,10 @@ pyfuse3 is a set of Python 3 bindings for libfuse 3. It provides an asynchronous
%build
%python_expand $python setup.py build_cython
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
@@ -63,6 +65,11 @@ pyfuse3 is a set of Python 3 bindings for libfuse 3. It provides an asynchronous
%files %{python_files}
%doc Changes.rst README.rst
%license LICENSE
%{python_sitearch}
%{python_sitearch}/pyfuse3
%{python_sitearch}/pyfuse3_asyncio.py
%{python_sitearch}/_pyfuse3.py
%{python_sitearch}/__pycache__/pyfuse3_asyncio.*.pyc
%{python_sitearch}/__pycache__/_pyfuse3.*.pyc
%{python_sitearch}/pyfuse3-%{version}.dist-info
%changelog