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/t5002-archive-attr-pattern.sh | |
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/t5002-archive-attr-pattern.sh')
-rwxr-xr-x | third_party/git/t/t5002-archive-attr-pattern.sh | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/third_party/git/t/t5002-archive-attr-pattern.sh b/third_party/git/t/t5002-archive-attr-pattern.sh deleted file mode 100755 index bda6d7d7e9e8..000000000000 --- a/third_party/git/t/t5002-archive-attr-pattern.sh +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh - -test_description='git archive attribute pattern tests' - -. ./test-lib.sh - -test_expect_exists() { - test_expect_success " $1 exists" "test -e $1" -} - -test_expect_missing() { - test_expect_success " $1 does not exist" "test ! -e $1" -} - -test_expect_success 'setup' ' - echo ignored >ignored && - echo ignored export-ignore >>.git/info/attributes && - git add ignored && - - mkdir not-ignored-dir && - echo ignored-in-tree >not-ignored-dir/ignored && - echo not-ignored-in-tree >not-ignored-dir/ignored-only-if-dir && - git add not-ignored-dir && - - mkdir ignored-only-if-dir && - echo ignored by ignored dir >ignored-only-if-dir/ignored-by-ignored-dir && - echo ignored-only-if-dir/ export-ignore >>.git/info/attributes && - git add ignored-only-if-dir && - - mkdir -p ignored-without-slash && - echo "ignored without slash" >ignored-without-slash/foo && - git add ignored-without-slash/foo && - echo "ignored-without-slash export-ignore" >>.git/info/attributes && - - mkdir -p wildcard-without-slash && - echo "ignored without slash" >wildcard-without-slash/foo && - git add wildcard-without-slash/foo && - echo "wild*-without-slash export-ignore" >>.git/info/attributes && - - mkdir -p deep/and/slashless && - echo "ignored without slash" >deep/and/slashless/foo && - git add deep/and/slashless/foo && - echo "deep/and/slashless export-ignore" >>.git/info/attributes && - - mkdir -p deep/with/wildcard && - echo "ignored without slash" >deep/with/wildcard/foo && - git add deep/with/wildcard/foo && - echo "deep/*t*/wildcard export-ignore" >>.git/info/attributes && - - mkdir -p one-level-lower/two-levels-lower/ignored-only-if-dir && - echo ignored by ignored dir >one-level-lower/two-levels-lower/ignored-only-if-dir/ignored-by-ignored-dir && - git add one-level-lower && - - git commit -m. && - - git clone --bare . bare && - cp .git/info/attributes bare/info/attributes -' - -test_expect_success 'git archive' ' - git archive HEAD >archive.tar && - (mkdir archive && cd archive && "$TAR" xf -) <archive.tar -' - -test_expect_missing archive/ignored -test_expect_missing archive/not-ignored-dir/ignored -test_expect_exists archive/not-ignored-dir/ignored-only-if-dir -test_expect_exists archive/not-ignored-dir/ -test_expect_missing archive/ignored-only-if-dir/ -test_expect_missing archive/ignored-ony-if-dir/ignored-by-ignored-dir -test_expect_missing archive/ignored-without-slash/ && -test_expect_missing archive/ignored-without-slash/foo && -test_expect_missing archive/wildcard-without-slash/ -test_expect_missing archive/wildcard-without-slash/foo && -test_expect_missing archive/deep/and/slashless/ && -test_expect_missing archive/deep/and/slashless/foo && -test_expect_missing archive/deep/with/wildcard/ && -test_expect_missing archive/deep/with/wildcard/foo && -test_expect_missing archive/one-level-lower/ -test_expect_missing archive/one-level-lower/two-levels-lower/ignored-only-if-dir/ -test_expect_missing archive/one-level-lower/two-levels-lower/ignored-ony-if-dir/ignored-by-ignored-dir - - -test_done |