Hello community, here is the log from the commit of package python-gitdb2 for openSUSE:Factory checked in at 2019-03-05 12:22:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-gitdb2 (Old) and /work/SRC/openSUSE:Factory/.python-gitdb2.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-gitdb2" Tue Mar 5 12:22:24 2019 rev:3 rq:681306 version:2.0.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-gitdb2/python-gitdb2.changes 2018-07-23 18:03:46.536724973 +0200 +++ /work/SRC/openSUSE:Factory/.python-gitdb2.new.28833/python-gitdb2.changes 2019-03-05 12:22:42.908889128 +0100 @@ -1,0 +2,6 @@ +Mon Mar 4 11:39:46 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 2.0.5: + * Just few formating fixes + +------------------------------------------------------------------- Old: ---- gitdb2-2.0.4.tar.gz New: ---- gitdb2-2.0.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-gitdb2.spec ++++++ --- /var/tmp/diff_new_pack.SFnuXJ/_old 2019-03-05 12:22:43.828888847 +0100 +++ /var/tmp/diff_new_pack.SFnuXJ/_new 2019-03-05 12:22:43.828888847 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-gitdb2 # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,13 +12,13 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-gitdb2 -Version: 2.0.4 +Version: 2.0.5 Release: 0 Summary: Git Object Database License: BSD-3-Clause @@ -47,7 +47,7 @@ %python_expand %fdupes %{buildroot}%{$python_sitelib} %check -# Package requires its own git tree in order to pass tests, no tags in git +# Package requires its own git tree in order to pass tests #%%python_exec setup.py test %files %{python_files} ++++++ gitdb2-2.0.4.tar.gz -> gitdb2-2.0.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.4/PKG-INFO new/gitdb2-2.0.5/PKG-INFO --- old/gitdb2-2.0.4/PKG-INFO 2018-07-15 14:23:16.000000000 +0200 +++ new/gitdb2-2.0.5/PKG-INFO 2018-10-13 12:48:35.000000000 +0200 @@ -1,6 +1,6 @@ -Metadata-Version: 1.1 +Metadata-Version: 1.2 Name: gitdb2 -Version: 2.0.4 +Version: 2.0.5 Summary: Git Object Database Home-page: https://github.com/gitpython-developers/gitdb Author: Sebastian Thiel @@ -18,10 +18,9 @@ Classifier: Operating System :: MacOS :: MacOS X Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 2 -Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.2 -Classifier: Programming Language :: Python :: 3.3 Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.4/gitdb/__init__.py new/gitdb2-2.0.5/gitdb/__init__.py --- old/gitdb2-2.0.4/gitdb/__init__.py 2018-07-15 14:17:44.000000000 +0200 +++ new/gitdb2-2.0.5/gitdb/__init__.py 2018-10-13 12:45:20.000000000 +0200 @@ -29,7 +29,7 @@ __author__ = "Sebastian Thiel" __contact__ = "[email protected]" __homepage__ = "https://github.com/gitpython-developers/gitdb" -version_info = (2, 0, 4) +version_info = (2, 0, 5) __version__ = '.'.join(str(i) for i in version_info) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.4/gitdb/db/pack.py new/gitdb2-2.0.5/gitdb/db/pack.py --- old/gitdb2-2.0.4/gitdb/db/pack.py 2015-12-26 10:49:24.000000000 +0100 +++ new/gitdb2-2.0.5/gitdb/db/pack.py 2018-10-13 12:39:10.000000000 +0200 @@ -148,7 +148,7 @@ # packs are supposed to be prefixed with pack- by git-convention # get all pack files, figure out what changed pack_files = set(glob.glob(os.path.join(self.root_path(), "pack-*.pack"))) - our_pack_files = set(item[1].pack().path() for item in self._entities) + our_pack_files = {item[1].pack().path() for item in self._entities} # new packs for pack_file in (pack_files - our_pack_files): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.4/gitdb/db/ref.py new/gitdb2-2.0.5/gitdb/db/ref.py --- old/gitdb2-2.0.4/gitdb/db/ref.py 2017-09-28 10:46:24.000000000 +0200 +++ new/gitdb2-2.0.5/gitdb/db/ref.py 2018-10-13 12:39:10.000000000 +0200 @@ -49,7 +49,7 @@ # END handle alternates ref_paths_set = set(ref_paths) - cur_ref_paths_set = set(db.root_path() for db in self._dbs) + cur_ref_paths_set = {db.root_path() for db in self._dbs} # remove existing for path in (cur_ref_paths_set - ref_paths_set): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.4/gitdb/test/lib.py new/gitdb2-2.0.5/gitdb/test/lib.py --- old/gitdb2-2.0.4/gitdb/test/lib.py 2016-09-11 18:34:51.000000000 +0200 +++ new/gitdb2-2.0.5/gitdb/test/lib.py 2018-10-13 12:39:10.000000000 +0200 @@ -86,7 +86,7 @@ try: return func(self, path) except Exception: - sys.stderr.write("Test %s.%s failed, output is at %r\n" % (type(self).__name__, func.__name__, path)) + sys.stderr.write("Test {}.{} failed, output is at {!r}\n".format(type(self).__name__, func.__name__, path)) keep = True raise finally: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.4/gitdb/util.py new/gitdb2-2.0.5/gitdb/util.py --- old/gitdb2-2.0.4/gitdb/util.py 2017-05-28 17:36:48.000000000 +0200 +++ new/gitdb2-2.0.5/gitdb/util.py 2018-10-13 12:39:10.000000000 +0200 @@ -19,10 +19,7 @@ # initialize our global memory manager instance # Use it to free cached (and unused) resources. -if sys.version_info < (2, 6): - mman = StaticWindowMapManager() -else: - mman = SlidingWindowMapManager() +mman = SlidingWindowMapManager() # END handle mman import hashlib diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.4/gitdb2.egg-info/PKG-INFO new/gitdb2-2.0.5/gitdb2.egg-info/PKG-INFO --- old/gitdb2-2.0.4/gitdb2.egg-info/PKG-INFO 2018-07-15 14:23:16.000000000 +0200 +++ new/gitdb2-2.0.5/gitdb2.egg-info/PKG-INFO 2018-10-13 12:48:35.000000000 +0200 @@ -1,6 +1,6 @@ -Metadata-Version: 1.1 +Metadata-Version: 1.2 Name: gitdb2 -Version: 2.0.4 +Version: 2.0.5 Summary: Git Object Database Home-page: https://github.com/gitpython-developers/gitdb Author: Sebastian Thiel @@ -18,10 +18,9 @@ Classifier: Operating System :: MacOS :: MacOS X Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 2 -Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.2 -Classifier: Programming Language :: Python :: 3.3 Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.4/setup.py new/gitdb2-2.0.5/setup.py --- old/gitdb2-2.0.4/setup.py 2018-07-15 14:20:06.000000000 +0200 +++ new/gitdb2-2.0.5/setup.py 2018-10-13 12:45:08.000000000 +0200 @@ -7,7 +7,7 @@ __author__ = "Sebastian Thiel" __contact__ = "[email protected]" __homepage__ = "https://github.com/gitpython-developers/gitdb" -version_info = (2, 0, 4) +version_info = (2, 0, 5) __version__ = '.'.join(str(i) for i in version_info) setup( @@ -22,6 +22,7 @@ zip_safe=False, install_requires=['smmap2 >= 2.0.0'], long_description="""GitDB is a pure-Python git object database""", + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Development Status :: 5 - Production/Stable", @@ -34,12 +35,10 @@ "Operating System :: MacOS :: MacOS X", "Programming Language :: Python", "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.2", - "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", ] )
