Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-smmap for openSUSE:Factory checked in at 2021-02-04 20:23:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-smmap (Old) and /work/SRC/openSUSE:Factory/.python-smmap.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-smmap" Thu Feb 4 20:23:08 2021 rev:15 rq:868445 version:3.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-smmap/python-smmap.changes 2020-08-25 12:37:41.893402379 +0200 +++ /work/SRC/openSUSE:Factory/.python-smmap.new.28504/python-smmap.changes 2021-02-04 20:23:56.766814562 +0100 @@ -1,0 +2,6 @@ +Mon Feb 1 18:17:09 UTC 2021 - Dirk M??ller <dmuel...@suse.com> + +- update to 3.0.5: + - Restored Python 2 support removed in v3.0.2 + +------------------------------------------------------------------- Old: ---- smmap-3.0.4.tar.gz New: ---- smmap-3.0.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-smmap.spec ++++++ --- /var/tmp/diff_new_pack.CNf2lB/_old 2021-02-04 20:23:57.402815530 +0100 +++ /var/tmp/diff_new_pack.CNf2lB/_new 2021-02-04 20:23:57.406815537 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-smmap # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 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-smmap -Version: 3.0.4 +Version: 3.0.5 Release: 0 Summary: A pure git implementation of a sliding window memory map manager License: BSD-2-Clause ++++++ smmap-3.0.4.tar.gz -> smmap-3.0.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smmap-3.0.4/PKG-INFO new/smmap-3.0.5/PKG-INFO --- old/smmap-3.0.4/PKG-INFO 2020-05-05 05:39:26.000000000 +0200 +++ new/smmap-3.0.5/PKG-INFO 2021-01-23 03:00:49.773315700 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: smmap -Version: 3.0.4 +Version: 3.0.5 Summary: A pure Python implementation of a sliding window memory map manager Home-page: https://github.com/gitpython-developers/smmap Author: Sebastian Thiel diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smmap-3.0.4/smmap/__init__.py new/smmap-3.0.5/smmap/__init__.py --- old/smmap-3.0.4/smmap/__init__.py 2020-05-05 05:35:13.000000000 +0200 +++ new/smmap-3.0.5/smmap/__init__.py 2021-01-23 02:58:15.000000000 +0100 @@ -3,7 +3,7 @@ __author__ = "Sebastian Thiel" __contact__ = "byron...@gmail.com" __homepage__ = "https://github.com/gitpython-developers/smmap" -version_info = (3, 0, 4) +version_info = (3, 0, 5) __version__ = '.'.join(str(i) for i in version_info) # make everything available in root package for convenience diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smmap-3.0.4/smmap/buf.py new/smmap-3.0.5/smmap/buf.py --- old/smmap-3.0.4/smmap/buf.py 2020-02-15 02:33:53.000000000 +0100 +++ new/smmap-3.0.5/smmap/buf.py 2021-01-23 02:47:51.000000000 +0100 @@ -3,13 +3,6 @@ __all__ = ["SlidingWindowMapBuffer"] -import sys - -try: - bytes -except NameError: - bytes = str - class SlidingWindowMapBuffer(object): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smmap-3.0.4/smmap/util.py new/smmap-3.0.5/smmap/util.py --- old/smmap-3.0.4/smmap/util.py 2020-04-11 08:21:05.000000000 +0200 +++ new/smmap-3.0.5/smmap/util.py 2021-01-23 02:47:51.000000000 +0100 @@ -23,7 +23,11 @@ def string_types(): - return str + if sys.version_info[0] >= 3: + return str + else: + return basestring # noqa: F821 + def align_to_mmap(num, round_up): """ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/smmap-3.0.4/smmap.egg-info/PKG-INFO new/smmap-3.0.5/smmap.egg-info/PKG-INFO --- old/smmap-3.0.4/smmap.egg-info/PKG-INFO 2020-05-05 05:39:26.000000000 +0200 +++ new/smmap-3.0.5/smmap.egg-info/PKG-INFO 2021-01-23 03:00:49.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: smmap -Version: 3.0.4 +Version: 3.0.5 Summary: A pure Python implementation of a sliding window memory map manager Home-page: https://github.com/gitpython-developers/smmap Author: Sebastian Thiel