From 43b1791ec601732ac31195df96781a848360a9ac Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 21 Sep 2021 13:03:01 +0300 Subject: chore(3p/git): Unvendor git and track patches instead 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 --- third_party/git/t/t4048-diff-combined-binary.sh | 218 ------------------------ 1 file changed, 218 deletions(-) delete mode 100755 third_party/git/t/t4048-diff-combined-binary.sh (limited to 'third_party/git/t/t4048-diff-combined-binary.sh') diff --git a/third_party/git/t/t4048-diff-combined-binary.sh b/third_party/git/t/t4048-diff-combined-binary.sh deleted file mode 100755 index 7f9ad9fa3d1f..000000000000 --- a/third_party/git/t/t4048-diff-combined-binary.sh +++ /dev/null @@ -1,218 +0,0 @@ -#!/bin/sh - -test_description='combined and merge diff handle binary files and textconv' -. ./test-lib.sh - -test_expect_success 'setup binary merge conflict' ' - echo oneQ1 | q_to_nul >binary && - git add binary && - git commit -m one && - echo twoQ2 | q_to_nul >binary && - git commit -a -m two && - two=$(git rev-parse --short HEAD:binary) && - git checkout -b branch-binary HEAD^ && - echo threeQ3 | q_to_nul >binary && - git commit -a -m three && - three=$(git rev-parse --short HEAD:binary) && - test_must_fail git merge master && - echo resolvedQhooray | q_to_nul >binary && - git commit -a -m resolved && - res=$(git rev-parse --short HEAD:binary) -' - -cat >expect <actual && - test_cmp expect actual -' - -cat >expect <actual && - test_cmp expect actual -' - -cat >expect <actual && - test_cmp expect actual -' - -test_expect_success 'setup non-binary with binary attribute' ' - git checkout master && - test_commit one text && - test_commit two text && - two=$(git rev-parse --short HEAD:text) && - git checkout -b branch-text HEAD^ && - test_commit three text && - three=$(git rev-parse --short HEAD:text) && - test_must_fail git merge master && - test_commit resolved text && - res=$(git rev-parse --short HEAD:text) && - echo text -diff >.gitattributes -' - -cat >expect <actual && - test_cmp expect actual -' - -cat >expect <actual && - test_cmp expect actual -' - -cat >expect <actual && - test_cmp expect actual -' - -test_expect_success 'setup textconv attribute' ' - echo "text diff=upcase" >.gitattributes && - git config diff.upcase.textconv "tr a-z A-Z <" -' - -cat >expect <actual && - test_cmp expect actual -' - -cat >expect <actual && - test_cmp expect actual -' - -cat >expect <actual && - test_cmp expect actual -' - -cat >expect <full && - tail -n +2 full >actual && - test_cmp expect actual -' - -cat >expect <>>>>>> MASTER -EOF -test_expect_success 'diff --cc respects textconv on worktree file' ' - git reset --hard HEAD^ && - test_must_fail git merge master && - git diff >actual && - test_cmp expect actual -' - -test_done -- cgit 1.4.1