Accepting request 990575 from devel:languages:python

- Update to 1.9.2:
  * New Repository.create_commit_string(...) and
    Repository.create_commit_with_signature(...) #1142
  * Linux and macOS wheels updated to libgit2 v1.4.3
  * Remove redundant line #1139 
- Add patch support-libgit-1.5.patch:
  * Suppot libgit 1.5.0

OBS-URL: https://build.opensuse.org/request/show/990575
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pygit2?expand=0&rev=28
This commit is contained in:
Richard Brown 2022-07-22 17:21:13 +00:00 committed by Git OBS Bridge
commit c4f2dc55b7
5 changed files with 32 additions and 4 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef6479c3b6192825316b056336db77ebff6e7849aeb1fbb88b76001ac337b9c9
size 296962

3
pygit2-1.9.2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:20894433df1146481aacae37e2b0f3bbbfdea026db2f55061170bd9823e40b19
size 728548

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Thu Jul 21 14:44:55 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 1.9.2:
* New Repository.create_commit_string(...) and
Repository.create_commit_with_signature(...) #1142
* Linux and macOS wheels updated to libgit2 v1.4.3
* Remove redundant line #1139
- Add patch support-libgit-1.5.patch:
* Suppot libgit 1.5.0
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Mar 26 18:51:51 UTC 2022 - Dirk Müller <dmueller@suse.com> Sat Mar 26 18:51:51 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -20,12 +20,14 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1 %define skip_python2 1
Name: python-pygit2 Name: python-pygit2
Version: 1.9.1 Version: 1.9.2
Release: 0 Release: 0
Summary: Python bindings for libgit2 Summary: Python bindings for libgit2
License: GPL-2.0-only License: GPL-2.0-only
URL: https://github.com/libgit2/pygit2 URL: https://github.com/libgit2/pygit2
Source: https://files.pythonhosted.org/packages/source/p/pygit2/pygit2-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/p/pygit2/pygit2-%{version}.tar.gz
# PATCH-FIX-UPSTREAM based on gh#libgit2/pygit2#14b1df84060ea4ab085202382e80672ec1a104e3
Patch0: support-libgit-1.5.patch
BuildRequires: %{python_module cached-property} BuildRequires: %{python_module cached-property}
BuildRequires: %{python_module cffi >= 1.4.0} BuildRequires: %{python_module cffi >= 1.4.0}
BuildRequires: %{python_module devel} BuildRequires: %{python_module devel}

15
support-libgit-1.5.patch Normal file
View File

@ -0,0 +1,15 @@
diff --git a/src/types.h b/src/types.h
index 78023e28..e851eacb 100644
--- a/src/types.h
+++ b/src/types.h
@@ -32,8 +32,8 @@
#include <Python.h>
#include <git2.h>
-#if !(LIBGIT2_VER_MAJOR == 1 && LIBGIT2_VER_MINOR == 4)
-#error You need a compatible libgit2 version (1.4.x)
+#if !(LIBGIT2_VER_MAJOR == 1 && LIBGIT2_VER_MINOR >= 4 && LIBGIT2_VER_MINOR <= 5)
+#error You need a compatible libgit2 version (1.4.x or 1.5.x)
#endif
/*