Hello community,

here is the log from the commit of package python-pyfuse3 for openSUSE:Factory 
checked in at 2019-07-23 22:37:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pyfuse3 (Old)
 and      /work/SRC/openSUSE:Factory/.python-pyfuse3.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-pyfuse3"

Tue Jul 23 22:37:45 2019 rev:3 rq:717803 version:1.3.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pyfuse3/python-pyfuse3.changes    
2019-06-17 21:35:18.134997704 +0200
+++ /work/SRC/openSUSE:Factory/.python-pyfuse3.new.4126/python-pyfuse3.changes  
2019-07-23 22:37:52.654965189 +0200
@@ -1,0 +2,6 @@
+Tue Jul 23 08:46:49 UTC 2019 - Tomáš Chvátal <tchva...@suse.com>
+
+- Update to 1.3.1:
+  *  Fixed a bug in the :file:`hello_asyncio.py` example.
+
+-------------------------------------------------------------------

Old:
----
  pyfuse3-1.3.tar.gz

New:
----
  pyfuse3-1.3.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-pyfuse3.spec ++++++
--- /var/tmp/diff_new_pack.CG895c/_old  2019-07-23 22:37:53.334965049 +0200
+++ /var/tmp/diff_new_pack.CG895c/_new  2019-07-23 22:37:53.334965049 +0200
@@ -20,13 +20,13 @@
 %define skip_python2 1
 %define pname   pyfuse3
 Name:           python-%{pname}
-Version:        1.3
+Version:        1.3.1
 Release:        0
 Summary:        Python Bindings for the low-level FUSE3 API
 License:        LGPL-2.1-or-later
 Group:          Development/Libraries/Python
 URL:            https://github.com/libfuse/pyfuse3
-Source:         
https://github.com/libfuse/pyfuse3/archive/v%{version}.tar.gz#/%{pname}-%{version}.tar.gz
+Source:         
https://github.com/libfuse/pyfuse3/archive/release-%{version}.tar.gz#/%{pname}-%{version}.tar.gz
 BuildRequires:  %{python_module Cython}
 BuildRequires:  %{python_module contextvars >= 2.1}
 BuildRequires:  %{python_module devel}
@@ -43,7 +43,7 @@
 pyfuse3 is a set of Python 3 bindings for libfuse 3. It provides an 
asynchronous API compatible with Trio and asyncio, and enables you to easily 
write a full-featured Linux filesystem in Python.
 
 %prep
-%setup -q -n %{pname}-%{version}
+%setup -q -n %{pname}-release-%{version}
 
 %build
 %python_expand $python setup.py build_cython

++++++ pyfuse3-1.3.tar.gz -> pyfuse3-1.3.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfuse3-1.3/Changes.rst 
new/pyfuse3-release-1.3.1/Changes.rst
--- old/pyfuse3-1.3/Changes.rst 2019-06-02 14:50:16.000000000 +0200
+++ new/pyfuse3-release-1.3.1/Changes.rst       2019-07-17 17:13:16.000000000 
+0200
@@ -4,10 +4,15 @@
 
 .. currentmodule:: pyfuse3
 
+Release 1.3.1 (2019-07-17)
+==========================
+
+* Fixed a bug in the :file:`hello_asyncio.py` example.
+
 Release 1.3 (2019-06-02)
 ========================
 
-* Fixed a bug in the `tmpfs.py` and `passthroughfs.py` example
+* Fixed a bug in the :file:`tmpfs.py` and :file:`passthroughfs.py` example
   file systems (so rename operations no longer fail).
 
 Release 1.2 (2018-12-22)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfuse3-1.3/examples/hello_asyncio.py 
new/pyfuse3-release-1.3.1/examples/hello_asyncio.py
--- old/pyfuse3-1.3/examples/hello_asyncio.py   2019-06-02 14:50:16.000000000 
+0200
+++ new/pyfuse3-release-1.3.1/examples/hello_asyncio.py 2019-07-17 
17:13:16.000000000 +0200
@@ -81,7 +81,7 @@
     async def lookup(self, parent_inode, name, ctx=None):
         if parent_inode != pyfuse3.ROOT_INODE or name != self.hello_name:
             raise pyfuse3.FUSEError(errno.ENOENT)
-        return self.getattr(self.hello_inode)
+        return await self.getattr(self.hello_inode)
 
     async def opendir(self, inode, ctx):
         if inode != pyfuse3.ROOT_INODE:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyfuse3-1.3/setup.py 
new/pyfuse3-release-1.3.1/setup.py
--- old/pyfuse3-1.3/setup.py    2019-06-02 14:50:16.000000000 +0200
+++ new/pyfuse3-release-1.3.1/setup.py  2019-07-17 17:13:16.000000000 +0200
@@ -57,7 +57,7 @@
 # to work properly
 sys.path.insert(0, os.path.join(basedir, 'src'))
 
-PYFUSE3_VERSION = '1.3'
+PYFUSE3_VERSION = '1.3.1'
 
 def main():
 


Reply via email to