Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-fuse for openSUSE:Factory checked in at 2023-01-05 15:00:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-fuse (Old) and /work/SRC/openSUSE:Factory/.python-fuse.new.1563 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-fuse" Thu Jan 5 15:00:41 2023 rev:10 rq:1055996 version:1.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-fuse/python-fuse.changes 2022-01-23 19:13:23.743805659 +0100 +++ /work/SRC/openSUSE:Factory/.python-fuse.new.1563/python-fuse.changes 2023-01-05 15:01:01.501074722 +0100 @@ -1,0 +2,6 @@ +Wed Jan 4 20:07:28 UTC 2023 - Dirk Müller <dmuel...@suse.com> + +- update to v1.0.5: + * Fix issue with python 3.10 + +------------------------------------------------------------------- Old: ---- python-fuse-1.0.4.tar.gz New: ---- python-fuse-1.0.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-fuse.spec ++++++ --- /var/tmp/diff_new_pack.3GQkWb/_old 2023-01-05 15:01:03.113083219 +0100 +++ /var/tmp/diff_new_pack.3GQkWb/_new 2023-01-05 15:01:03.117083240 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-fuse # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-fuse -Version: 1.0.4 +Version: 1.0.5 Release: 0 Summary: Python bindings for FUSE License: LGPL-2.1-only ++++++ python-fuse-1.0.4.tar.gz -> python-fuse-1.0.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-fuse-1.0.4/.travis.yml new/python-fuse-1.0.5/.travis.yml --- old/python-fuse-1.0.4/.travis.yml 2021-05-02 08:20:59.000000000 +0200 +++ new/python-fuse-1.0.5/.travis.yml 2022-04-25 08:25:31.000000000 +0200 @@ -1,9 +1,15 @@ +dist: focal + language: python python: - 2.7 - 3.5 - 3.6 + - 3.7 + - 3.8 + - 3.9 + - 3.10 addons: apt: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-fuse-1.0.4/fuseparts/__init__.py new/python-fuse-1.0.5/fuseparts/__init__.py --- old/python-fuse-1.0.4/fuseparts/__init__.py 2021-05-02 08:20:59.000000000 +0200 +++ new/python-fuse-1.0.5/fuseparts/__init__.py 2022-04-25 08:25:31.000000000 +0200 @@ -1 +1 @@ -__version__ = "1.0.4" +__version__ = "1.0.5" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-fuse-1.0.4/fuseparts/_fusemodule.c new/python-fuse-1.0.5/fuseparts/_fusemodule.c --- old/python-fuse-1.0.4/fuseparts/_fusemodule.c 2021-05-02 08:20:59.000000000 +0200 +++ new/python-fuse-1.0.5/fuseparts/_fusemodule.c 2022-04-25 08:25:31.000000000 +0200 @@ -25,6 +25,7 @@ #define FUSE_USE_VERSION 26 #endif +#define PY_SSIZE_T_CLEAN #include <Python.h> #include <fuse.h> #include <sys/ioctl.h> @@ -1186,7 +1187,7 @@ { char* s; char* input_data; - int input_data_size, output_data_size; + Py_ssize_t input_data_size, output_data_size; input_data = (char*) data; input_data_size = _IOC_SIZE(cmd);