Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package fuse-oscfs for openSUSE:Factory checked in at 2022-02-23 16:26:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fuse-oscfs (Old) and /work/SRC/openSUSE:Factory/.fuse-oscfs.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fuse-oscfs" Wed Feb 23 16:26:10 2022 rev:5 rq:957001 version:0.8.1 Changes: -------- --- /work/SRC/openSUSE:Factory/fuse-oscfs/fuse-oscfs.changes 2022-02-22 21:18:55.702294358 +0100 +++ /work/SRC/openSUSE:Factory/.fuse-oscfs.new.1958/fuse-oscfs.changes 2022-02-23 16:26:59.455509991 +0100 @@ -1,0 +2,7 @@ +Wed Feb 23 10:25:23 UTC 2022 - [email protected] + +- Update to version v0.8.1: + * urlopenwrapper: make data an optional argument, fixing a start error on + some Python versions. + +------------------------------------------------------------------- Old: ---- oscfs-v0.8.0.tar.xz New: ---- oscfs-v0.8.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fuse-oscfs.spec ++++++ --- /var/tmp/diff_new_pack.D9CLZ1/_old 2022-02-23 16:26:59.999510011 +0100 +++ /var/tmp/diff_new_pack.D9CLZ1/_new 2022-02-23 16:27:00.003510011 +0100 @@ -17,7 +17,7 @@ Name: fuse-oscfs -Version: 0.8.0 +Version: 0.8.1 Release: 0 Summary: A FUSE file system for accessing Open Build Service instances License: GPL-2.0-or-later ++++++ _service ++++++ --- /var/tmp/diff_new_pack.D9CLZ1/_old 2022-02-23 16:27:00.027510012 +0100 +++ /var/tmp/diff_new_pack.D9CLZ1/_new 2022-02-23 16:27:00.031510012 +0100 @@ -2,7 +2,7 @@ <service name="tar_scm" mode="disabled"> <param name="url">https://github.com/mgerstner/oscfs.git</param> <param name="scm">git</param> - <param name="revision">v0.8.0</param> + <param name="revision">v0.8.1</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> </service> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.D9CLZ1/_old 2022-02-23 16:27:00.051510013 +0100 +++ /var/tmp/diff_new_pack.D9CLZ1/_new 2022-02-23 16:27:00.055510013 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/mgerstner/oscfs.git</param> - <param name="changesrevision">6cb0cc4bc3f2338dcb88f6e4aa22983558a52944</param></service></servicedata> + <param name="changesrevision">1153b097df63f57552bce553ddba3944a55e065d</param></service></servicedata> (No newline at EOF) ++++++ oscfs-v0.8.0.tar.xz -> oscfs-v0.8.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/oscfs-v0.8.0/NEWS.rst new/oscfs-v0.8.1/NEWS.rst --- old/oscfs-v0.8.0/NEWS.rst 2022-02-22 10:27:57.000000000 +0100 +++ new/oscfs-v0.8.1/NEWS.rst 2022-02-23 11:16:38.000000000 +0100 @@ -1,3 +1,9 @@ +0.8.1 +===== + +- fix minor error in urlopen wrapper occuring in some Python versions, + causing an exception upon start. + 0.8.0 ===== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/oscfs-v0.8.0/oscfs/urlopenwrapper.py new/oscfs-v0.8.1/oscfs/urlopenwrapper.py --- old/oscfs-v0.8.0/oscfs/urlopenwrapper.py 2022-02-22 10:27:57.000000000 +0100 +++ new/oscfs-v0.8.1/oscfs/urlopenwrapper.py 2022-02-23 11:16:38.000000000 +0100 @@ -39,7 +39,7 @@ self.m_orig_urlopen = urllib.request.urlopen urllib.request.urlopen = self._wrapper - def _wrapper(self, req, data): + def _wrapper(self, req, data=None): import base64 import osc.conf diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/oscfs-v0.8.0/setup.py new/oscfs-v0.8.1/setup.py --- old/oscfs-v0.8.0/setup.py 2022-02-22 10:27:57.000000000 +0100 +++ new/oscfs-v0.8.1/setup.py 2022-02-23 11:16:38.000000000 +0100 @@ -37,7 +37,7 @@ try: setup( name='oscfs', - version='0.8.0', + version='0.8.1', description='A FUSE based file system to access Open Build Service (OBS) instances', long_description=long_desc, author='Matthias Gerstner',
