Hello community, here is the log from the commit of package python-gitdb2 for openSUSE:Factory checked in at 2019-10-08 19:59:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-gitdb2 (Old) and /work/SRC/openSUSE:Factory/.python-gitdb2.new.2352 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-gitdb2" Tue Oct 8 19:59:13 2019 rev:4 rq:736027 version:2.0.6 Changes: -------- --- /work/SRC/openSUSE:Factory/python-gitdb2/python-gitdb2.changes 2019-03-05 12:22:42.908889128 +0100 +++ /work/SRC/openSUSE:Factory/.python-gitdb2.new.2352/python-gitdb2.changes 2019-10-08 19:59:17.591952595 +0200 @@ -1,0 +2,6 @@ +Tue Oct 8 08:37:31 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 2.0.6: + * minor bugfixes only + +------------------------------------------------------------------- Old: ---- gitdb2-2.0.5.tar.gz New: ---- gitdb2-2.0.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-gitdb2.spec ++++++ --- /var/tmp/diff_new_pack.9Y2ftz/_old 2019-10-08 19:59:18.151950918 +0200 +++ /var/tmp/diff_new_pack.9Y2ftz/_new 2019-10-08 19:59:18.151950918 +0200 @@ -18,19 +18,18 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-gitdb2 -Version: 2.0.5 +Version: 2.0.6 Release: 0 Summary: Git Object Database License: BSD-3-Clause -Group: Development/Languages/Python URL: https://github.com/gitpython-developers/gitdb Source: https://files.pythonhosted.org/packages/source/g/gitdb2/gitdb2-%{version}.tar.gz +BuildRequires: %{python_module nose} BuildRequires: %{python_module setuptools >= 0.8.5} +BuildRequires: %{python_module smmap2 >= 2.0.0} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-smmap2 >= 2.0.0 -BuildRequires: %{python_module nose} -BuildRequires: %{python_module smmap2 >= 2.0.0} %python_subpackages %description ++++++ gitdb2-2.0.5.tar.gz -> gitdb2-2.0.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.5/PKG-INFO new/gitdb2-2.0.6/PKG-INFO --- old/gitdb2-2.0.5/PKG-INFO 2018-10-13 12:48:35.000000000 +0200 +++ new/gitdb2-2.0.6/PKG-INFO 2019-09-28 13:31:48.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: gitdb2 -Version: 2.0.5 +Version: 2.0.6 Summary: Git Object Database Home-page: https://github.com/gitpython-developers/gitdb Author: Sebastian Thiel diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.5/gitdb/__init__.py new/gitdb2-2.0.6/gitdb/__init__.py --- old/gitdb2-2.0.5/gitdb/__init__.py 2018-10-13 12:45:20.000000000 +0200 +++ new/gitdb2-2.0.6/gitdb/__init__.py 2019-09-28 13:28:47.000000000 +0200 @@ -29,7 +29,7 @@ __author__ = "Sebastian Thiel" __contact__ = "[email protected]" __homepage__ = "https://github.com/gitpython-developers/gitdb" -version_info = (2, 0, 5) +version_info = (2, 0, 6) __version__ = '.'.join(str(i) for i in version_info) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.5/gitdb/db/loose.py new/gitdb2-2.0.6/gitdb/db/loose.py --- old/gitdb2-2.0.5/gitdb/db/loose.py 2016-09-11 18:34:51.000000000 +0200 +++ new/gitdb2-2.0.6/gitdb/db/loose.py 2019-09-28 13:19:19.000000000 +0200 @@ -225,16 +225,12 @@ if not isdir(obj_dir): mkdir(obj_dir) # END handle destination directory - # rename onto existing doesn't work on windows - if os.name == 'nt': - if isfile(obj_path): - remove(tmp_path) - else: - rename(tmp_path, obj_path) - # end rename only if needed + # rename onto existing doesn't work on NTFS + if isfile(obj_path): + remove(tmp_path) else: rename(tmp_path, obj_path) - # END handle win32 + # end rename only if needed # make sure its readable for all ! It started out as rw-- tmp file # but needs to be rwrr diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.5/gitdb2.egg-info/PKG-INFO new/gitdb2-2.0.6/gitdb2.egg-info/PKG-INFO --- old/gitdb2-2.0.5/gitdb2.egg-info/PKG-INFO 2018-10-13 12:48:35.000000000 +0200 +++ new/gitdb2-2.0.6/gitdb2.egg-info/PKG-INFO 2019-09-28 13:31:48.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: gitdb2 -Version: 2.0.5 +Version: 2.0.6 Summary: Git Object Database Home-page: https://github.com/gitpython-developers/gitdb Author: Sebastian Thiel diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gitdb2-2.0.5/setup.py new/gitdb2-2.0.6/setup.py --- old/gitdb2-2.0.5/setup.py 2018-10-13 12:45:08.000000000 +0200 +++ new/gitdb2-2.0.6/setup.py 2019-09-28 13:28:35.000000000 +0200 @@ -7,7 +7,7 @@ __author__ = "Sebastian Thiel" __contact__ = "[email protected]" __homepage__ = "https://github.com/gitpython-developers/gitdb" -version_info = (2, 0, 5) +version_info = (2, 0, 6) __version__ = '.'.join(str(i) for i in version_info) setup(
