[Python-modules-commits] [python-git] 05/06: delete debian/patches/0001-recognize-the-new-packed-ref-header-format.patch

Takaki Taniguchi takaki at moszumanska.debian.org
Sun Jan 21 14:42:42 UTC 2018


This is an automated email from the git hooks/post-receive script.

takaki pushed a commit to branch master
in repository python-git.

commit eed94cc6a660d2f64c993d3864d7e6f8f0020c6b
Author: TANIGUCHI Takaki <takaki at asis.media-as.org>
Date:   Sat Jan 20 18:50:00 2018 +0900

    delete debian/patches/0001-recognize-the-new-packed-ref-header-format.patch
---
 ...ecognize-the-new-packed-ref-header-format.patch | 37 ----------------------
 debian/patches/series                              |  1 -
 2 files changed, 38 deletions(-)

diff --git a/debian/patches/0001-recognize-the-new-packed-ref-header-format.patch b/debian/patches/0001-recognize-the-new-packed-ref-header-format.patch
deleted file mode 100644
index adbb07c..0000000
--- a/debian/patches/0001-recognize-the-new-packed-ref-header-format.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 5a358f2cfdc46a99db9e595d7368ecfecba52de0 Mon Sep 17 00:00:00 2001
-From: "Brenda J. Butler" <bjb at rhino.stuffed.animals>
-Date: Fri, 13 Oct 2017 03:06:18 -0400
-Subject: [PATCH] recognize the new packed-ref header format
-
-as long as line contains "peeled", accept it
-fixes the PackingType of packed-Refs not understood:
-# pack-refs with: peeled fully-peeled sorted
-problem
----
- git/refs/symbolic.py | 10 +++++++++-
- 1 file changed, 9 insertions(+), 1 deletion(-)
-
-diff --git a/git/refs/symbolic.py b/git/refs/symbolic.py
-index bef6ba3..8efeafc 100644
---- a/git/refs/symbolic.py
-+++ b/git/refs/symbolic.py
-@@ -96,7 +96,15 @@ class SymbolicReference(object):
-                     if not line:
-                         continue
-                     if line.startswith('#'):
--                        if line.startswith('# pack-refs with:') and not line.endswith('peeled'):
-+                        # "# pack-refs with: peeled fully-peeled sorted"
-+                        # the git source code shows "peeled",
-+                        # "fully-peeled" and "sorted" as the keywords
-+                        # that can go on this line, as per comments in git file
-+                        # refs/packed-backend.c
-+                        # I looked at master on 2017-10-11,
-+                        # commit 111ef79afe, after tag v2.15.0-rc1
-+                        # from repo https://github.com/git/git.git
-+                        if line.startswith('# pack-refs with:') and 'peeled' not in line:
-                             raise TypeError("PackingType of packed-Refs not understood: %r" % line)
-                         # END abort if we do not understand the packing scheme
-                         continue
--- 
-2.15.0
-
diff --git a/debian/patches/series b/debian/patches/series
index 586be61..e69de29 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +0,0 @@
-0001-recognize-the-new-packed-ref-header-format.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-git.git



More information about the Python-modules-commits mailing list