14
0
forked from pool/python-pygit2

- Add patch to fix issues on i586 arch:

* pygit2-i586.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pygit2?expand=0&rev=42
This commit is contained in:
Tomáš Chvátal
2018-05-21 08:34:38 +00:00
committed by Git OBS Bridge
parent e265214141
commit 6f380ee367
3 changed files with 30 additions and 0 deletions

22
pygit2-i586.patch Normal file
View File

@@ -0,0 +1,22 @@
From 1d11fa171b56114f181ac022715baba9581d36e7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= <jdavid.ibp@gmail.com>
Date: Sun, 20 May 2018 17:52:34 +0200
Subject: [PATCH] Update git_time decl
Should fix #795
---
pygit2/decl.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/pygit2/decl.h b/pygit2/decl.h
index 9cdea8a0..53451583 100644
--- a/pygit2/decl.h
+++ b/pygit2/decl.h
@@ -77,6 +77,7 @@ typedef struct {
typedef struct git_time {
git_time_t time;
int offset;
+ char sign;
} git_time;
typedef struct git_signature {