From ca524fcc3d1ea5a830907c8a8944551c83b3ce9fb3295e8f3ee7eb69eaa0486b Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Tue, 20 Sep 2022 12:05:41 +0000 Subject: [PATCH] Accepting request 1004945 from home:coolo:branches:openSUSE:Factory - Update to 1.10.1 - Fix segfault in ``Signature`` repr `#1155 `_ - Linux and macOS wheels for Python 3.11 `#1154 `_ - Upgrade to libgit2 1.5 - Add support for ``GIT_OPT_GET_OWNER_VALIDATION`` and ``GIT_OPT_SET_OWNER_VALIDATION`` `#1150 `_ - New ``untracked_files`` and ``ignored`` optional arguments for ``Repository.status(...)`` `#1151 `_ - Remove support-libgit-1.5.patch no longer needed OBS-URL: https://build.opensuse.org/request/show/1004945 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pygit2?expand=0&rev=70 --- pygit2-1.10.1.tar.gz | 3 +++ pygit2-1.9.2.tar.gz | 3 --- python-pygit2.changes | 17 +++++++++++++++++ python-pygit2.spec | 4 +--- support-libgit-1.5.patch | 15 --------------- 5 files changed, 21 insertions(+), 21 deletions(-) create mode 100644 pygit2-1.10.1.tar.gz delete mode 100644 pygit2-1.9.2.tar.gz delete mode 100644 support-libgit-1.5.patch diff --git a/pygit2-1.10.1.tar.gz b/pygit2-1.10.1.tar.gz new file mode 100644 index 0000000..c96d1d3 --- /dev/null +++ b/pygit2-1.10.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:354651bf062c02d1f08041d6fbf1a9b4bf7a93afce65979bdc08bdc65653aa2e +size 730943 diff --git a/pygit2-1.9.2.tar.gz b/pygit2-1.9.2.tar.gz deleted file mode 100644 index cb415d4..0000000 --- a/pygit2-1.9.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:20894433df1146481aacae37e2b0f3bbbfdea026db2f55061170bd9823e40b19 -size 728548 diff --git a/python-pygit2.changes b/python-pygit2.changes index 31b2160..c1ed9a9 100644 --- a/python-pygit2.changes +++ b/python-pygit2.changes @@ -1,3 +1,20 @@ +------------------------------------------------------------------- +Mon Sep 19 16:53:05 UTC 2022 - Stephan Kulow + +- Update to 1.10.1 + - Fix segfault in ``Signature`` repr + `#1155 `_ + - Linux and macOS wheels for Python 3.11 + `#1154 `_ + - Upgrade to libgit2 1.5 + - Add support for ``GIT_OPT_GET_OWNER_VALIDATION`` and + ``GIT_OPT_SET_OWNER_VALIDATION`` + `#1150 `_ + - New ``untracked_files`` and ``ignored`` optional arguments for + ``Repository.status(...)`` + `#1151 `_ +- Remove support-libgit-1.5.patch no longer needed + ------------------------------------------------------------------- Thu Jul 21 14:44:55 UTC 2022 - Steve Kowalik diff --git a/python-pygit2.spec b/python-pygit2.spec index 3c1176e..fed3646 100644 --- a/python-pygit2.spec +++ b/python-pygit2.spec @@ -20,14 +20,12 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-pygit2 -Version: 1.9.2 +Version: 1.10.1 Release: 0 Summary: Python bindings for libgit2 License: GPL-2.0-only URL: https://github.com/libgit2/pygit2 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 cffi >= 1.4.0} BuildRequires: %{python_module devel} diff --git a/support-libgit-1.5.patch b/support-libgit-1.5.patch deleted file mode 100644 index 12bd343..0000000 --- a/support-libgit-1.5.patch +++ /dev/null @@ -1,15 +0,0 @@ -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 - #include - --#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 - - /*