diff options
author | Vincent Ambo <mail@tazj.in> | 2021-09-21T10·03+0300 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-09-21T11·29+0300 |
commit | 43b1791ec601732ac31195df96781a848360a9ac (patch) | |
tree | daae8d638343295d2f1f7da955e556ef4c958864 /third_party/git/t/t5100/patch0014 | |
parent | 2d8e7dc9d9c38127ec4ebd13aee8e8f586a43318 (diff) |
chore(3p/git): Unvendor git and track patches instead r/2903
This was vendored a long time ago under the expectation that keeping it in sync with cgit would be easier this way, but it has proven not to be a big issue. On the other hand, a vendored copy of git is an annoying maintenance burden. It is much easier to rebase the single (dottime) patch that we have. This removes the vendored copy of git and instead passes the git source code to cgit via `pkgs.srcOnly`, which includes the applied patch so that cgit can continue rendering dottime. Change-Id: If31f62dea7ce688fd1b9050204e9378019775f2b
Diffstat (limited to 'third_party/git/t/t5100/patch0014')
-rw-r--r-- | third_party/git/t/t5100/patch0014 | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/third_party/git/t/t5100/patch0014 b/third_party/git/t/t5100/patch0014 deleted file mode 100644 index 3f3825f9f297..000000000000 --- a/third_party/git/t/t5100/patch0014 +++ /dev/null @@ -1,64 +0,0 @@ ---- - builtin-mailinfo.c | 37 ++++++++++++++++++++++++++++++++++++- - 1 files changed, 36 insertions(+), 1 deletions(-) - -diff --git a/builtin-mailinfo.c b/builtin-mailinfo.c -index b0b5d8f..461c47e 100644 ---- a/builtin-mailinfo.c -+++ b/builtin-mailinfo.c -@@ -712,6 +712,34 @@ static inline int patchbreak(const struct strbuf *line) - return 0; - } - -+static int scissors(const struct strbuf *line) -+{ -+ size_t i, len = line->len; -+ int scissors_dashes_seen = 0; -+ const char *buf = line->buf; -+ -+ for (i = 0; i < len; i++) { -+ if (isspace(buf[i])) -+ continue; -+ if (buf[i] == '-') { -+ scissors_dashes_seen |= 02; -+ continue; -+ } -+ if (i + 1 < len && !memcmp(buf + i, ">8", 2)) { -+ scissors_dashes_seen |= 01; -+ i++; -+ continue; -+ } -+ if (i + 7 < len && !memcmp(buf + i, "cut here", 8)) { -+ i += 7; -+ continue; -+ } -+ /* everything else --- not scissors */ -+ break; -+ } -+ return scissors_dashes_seen == 03; -+} -+ - static int handle_commit_msg(struct strbuf *line) - { - static int still_looking = 1; -@@ -723,10 +751,17 @@ static int handle_commit_msg(struct strbuf *line) - strbuf_ltrim(line); - if (!line->len) - return 0; -- if ((still_looking = check_header(line, s_hdr_data, 0)) != 0) -+ still_looking = check_header(line, s_hdr_data, 0); -+ if (still_looking) - return 0; - } - -+ if (scissors(line)) { -+ fseek(cmitmsg, 0L, SEEK_SET); -+ still_looking = 1; -+ return 0; -+ } -+ - /* normalize the log message to UTF-8. */ - if (metainfo_charset) - convert_to_utf8(line, charset.buf); --- -1.6.4.1 |