Hello community,
here is the log from the commit of package python-GitPython for
openSUSE:Factory checked in at 2019-11-17 19:23:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-GitPython (Old)
and /work/SRC/openSUSE:Factory/.python-GitPython.new.26869 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-GitPython"
Sun Nov 17 19:23:37 2019 rev:17 rq:749100 version:3.0.5
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-GitPython/python-GitPython.changes
2019-10-08 19:58:15.140139626 +0200
+++
/work/SRC/openSUSE:Factory/.python-GitPython.new.26869/python-GitPython.changes
2019-11-17 19:23:42.526851910 +0100
@@ -1,0 +2,30 @@
+Sat Nov 16 16:40:59 UTC 2019 - Arun Persaud <[email protected]>
+
+- specfile:
+ * be more explicit in %files section
+ * updated line numbers in patches
+
+- update to version 3.0.5:
+ * Remove duplicate license parameter
+ * Fix/deepsource issues
+ * Check if submodule exists before referencing
+ * Fix cloning to path with unicode
+ * Global ConfigParser
+ * Fix 'PushInfo' object has no attribute 'name'
+ * Reading and writing global configuration parameters acknowledged
+ help wanted
+ * Added Git Gud to projects
+ * Git.AutoInterrupt.__del__() OSError: [WinError 6] The handle is
+ invalid acknowledged help wanted tag.Windows
+
+- changes from version 3.0.4:
+ * Fix repo.index.diff("HEAD", create_patch=True) always returning an
+ empty list
+ * Fix how Diff handles commits that contain submodule changes
+ * Fix pickling of tzoffset
+ * Add support for 'C'-type diffs
+ * Fixed#731
+ * Update .deepsource.toml
+ * Allow single item for index.addremovemove
+
+-------------------------------------------------------------------
Old:
----
GitPython-3.0.3.1570041589.23b83cd.tar.xz
New:
----
GitPython-3.0.5.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-GitPython.spec ++++++
--- /var/tmp/diff_new_pack.pcIZzd/_old 2019-11-17 19:23:47.446849822 +0100
+++ /var/tmp/diff_new_pack.pcIZzd/_new 2019-11-17 19:23:47.450849820 +0100
@@ -19,12 +19,12 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-GitPython
-Version: 3.0.3.1570041589.23b83cd
+Version: 3.0.5
Release: 0
Summary: Python Git Library
License: BSD-3-Clause
URL: https://github.com/gitpython-developers/GitPython
-Source: GitPython-%{version}.tar.xz
+Source: GitPython-%{version}.tar.gz
Patch0: test-skips.patch
Patch1: test_blocking_lock_file-extra-time.patch
BuildRequires: %{python_module ddt >= 1.1.1}
@@ -85,6 +85,9 @@
%files %{python_files}
%license LICENSE
%doc AUTHORS CHANGES README.md doc/source/*.rst
-%{python_sitelib}/*
+%dir %{python_sitelib}/git
+%{python_sitelib}/git/*
+%dir %{python_sitelib}/GitPython-%{version}-py*.egg-info
+%{python_sitelib}/GitPython-%{version}-py*.egg-info
%changelog
++++++ test-skips.patch ++++++
--- /var/tmp/diff_new_pack.pcIZzd/_old 2019-11-17 19:23:47.470849812 +0100
+++ /var/tmp/diff_new_pack.pcIZzd/_new 2019-11-17 19:23:47.470849812 +0100
@@ -23,7 +23,7 @@
import random
import tempfile
from unittest import skipIf
-@@ -403,7 +404,7 @@ class TestRemote(TestBase):
+@@ -410,7 +411,7 @@ class TestRemote(TestBase):
TagReference.delete(rw_repo, new_tag, other_tag)
remote.push(":%s" % other_tag.path)
@@ -32,7 +32,7 @@
@with_rw_and_rw_remote_repo('0.1.6')
def test_base(self, rw_repo, remote_repo):
num_remotes = 0
-@@ -636,6 +637,7 @@ class TestRemote(TestBase):
+@@ -643,6 +644,7 @@ class TestRemote(TestBase):
# will raise fatal: Will not delete all non-push URLs
assert_raises(GitCommandError, remote.delete_url, test3)
++++++ test_blocking_lock_file-extra-time.patch ++++++
--- /var/tmp/diff_new_pack.pcIZzd/_old 2019-11-17 19:23:47.474849810 +0100
+++ /var/tmp/diff_new_pack.pcIZzd/_new 2019-11-17 19:23:47.474849810 +0100
@@ -1,6 +1,6 @@
--- GitPython-2.1.11/git/test-orig/test_util.py 2019-03-13
15:54:50.306690465 +0700
+++ GitPython-2.1.11/git/test/test_util.py 2019-03-13 18:22:09.867649085
+0700
-@@ -167,9 +167,7 @@
+@@ -171,9 +171,7 @@
self.failUnlessRaises(IOError, wait_lock._obtain_lock)
elapsed = time.time() - start
extra_time = 0.02