Prechádzať zdrojové kódy

Drop patch 04_s390x: applied upstream.

Jelmer Vernooij 5 rokov pred
rodič
commit
a4f7453f62
3 zmenil súbory, kde vykonal 1 pridanie a 30 odobranie
  1. 1 0
      debian/changelog
  2. 0 29
      debian/patches/04_s390x
  3. 0 1
      debian/patches/series

+ 1 - 0
debian/changelog

@@ -2,6 +2,7 @@ dulwich (0.19.15-1) UNRELEASED; urgency=medium
 
   * New upstream release.
   * Drop patch 03_cleanup_mode: applied upstream.
+  * Drop patch 04_s390x: applied upstream.
 
  -- Jelmer Vernooij <jelmer@debian.org>  Sun, 26 Jan 2020 19:40:58 +0000
 

+ 0 - 29
debian/patches/04_s390x

@@ -1,29 +0,0 @@
-From: Stefano Rivera <stefanor@debian.org>
-Date: Thu, 26 Dec 2019 09:50:33 +0200
-Subject: A missed Py_ssize_t conversion for PY_SSIZE_T_CLEAN
-
-Missed in 8f73bc51e2620820fa1d3aa2c109a3aa3fbe5bc8
-
-This was causing misbehaviour on s390x (multiple test failures).
-
-Bug-Debian: https://bugs.debian.org/946854
-Bug-Upstream: https://github.com/dulwich/dulwich/issues/735
-Forwarded: https://github.com/dulwich/dulwich/pull/736
----
- dulwich/_diff_tree.c | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/dulwich/_diff_tree.c b/dulwich/_diff_tree.c
-index 3481ddd..068b4f6 100644
---- a/dulwich/_diff_tree.c
-+++ b/dulwich/_diff_tree.c
-@@ -198,8 +198,7 @@ static PyObject *py_merge_entries(PyObject *self, PyObject *args)
- {
- 	PyObject *tree1, *tree2, **entries1 = NULL, **entries2 = NULL;
- 	PyObject *e1, *e2, *pair, *result = NULL;
--	Py_ssize_t n1 = 0, n2 = 0, i1 = 0, i2 = 0;
--	int path_len;
-+	Py_ssize_t n1 = 0, n2 = 0, i1 = 0, i2 = 0, path_len;
- 	char *path_str;
- 	int cmp;
- 

+ 0 - 1
debian/patches/series

@@ -1,3 +1,2 @@
 01_no_urllib3_pypy
 02_skip_flappy_test
-04_s390x