14
0
forked from pool/python-pygit2

Accepting request 1174830 from devel:Factory:git-workflow

- add  pygit2-Upgrade_to_libgit2_v1_8_1-2.patch
  pygit2-Upgrade_to_libgit2_v1_8_1.patch: support libgit2 1.8.1

OBS-URL: https://build.opensuse.org/request/show/1174830
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pygit2?expand=0&rev=91
This commit is contained in:
2024-05-17 13:15:37 +00:00
committed by Git OBS Bridge
parent df69bb9251
commit bb9bb2c788
4 changed files with 82 additions and 1 deletions

View File

@@ -0,0 +1,46 @@
From 31ea782852a318214149d24b73fc0e6ebe4210c6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= <jdavid.ibp@gmail.com>
Date: Fri, 17 May 2024 09:29:14 +0200
Subject: [PATCH] Update to libgit2 1.8.1
---
.github/workflows/tests.yml | 8 ++++----
Makefile | 2 +-
appveyor.yml | 2 +-
build.sh | 8 ++++----
docs/install.rst | 14 +++++++-------
pyproject.toml | 4 ++--
6 files changed, 19 insertions(+), 19 deletions(-)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
.PHONY: build html
build:
- OPENSSL_VERSION=3.1.5 LIBSSH2_VERSION=1.11.0 LIBGIT2_VERSION=1.8.0 sh build.sh
+ OPENSSL_VERSION=3.1.5 LIBSSH2_VERSION=1.11.0 LIBGIT2_VERSION=1.8.1 sh build.sh
html: build
make -C docs html
--- a/build.sh
+++ b/build.sh
@@ -22,14 +22,14 @@
#
# sh build.sh
#
-# Build libgit2 1.8.0 (will use libssh2 if available), then build pygit2
+# Build libgit2 1.8.1 (will use libssh2 if available), then build pygit2
# inplace:
#
-# LIBGIT2_VERSION=1.8.0 sh build.sh
+# LIBGIT2_VERSION=1.8.1 sh build.sh
#
-# Build libssh2 1.11.0 and libgit2 1.8.0, then build pygit2 inplace:
+# Build libssh2 1.11.0 and libgit2 1.8.1, then build pygit2 inplace:
#
-# LIBSSH2_VERSION=1.11.0 LIBGIT2_VERSION=1.8.0 sh build.sh
+# LIBSSH2_VERSION=1.11.0 LIBGIT2_VERSION=1.8.1 sh build.sh
#
# Build inplace and run the tests:
#