about summary refs log tree commit diff
path: root/third_party/git/t/t5503-tagfollow.sh
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-21T10·03+0300
committerVincent Ambo <mail@tazj.in>2021-09-21T11·29+0300
commit43b1791ec601732ac31195df96781a848360a9ac (patch)
treedaae8d638343295d2f1f7da955e556ef4c958864 /third_party/git/t/t5503-tagfollow.sh
parent2d8e7dc9d9c38127ec4ebd13aee8e8f586a43318 (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/t5503-tagfollow.sh')
-rwxr-xr-xthird_party/git/t/t5503-tagfollow.sh160
1 files changed, 0 insertions, 160 deletions
diff --git a/third_party/git/t/t5503-tagfollow.sh b/third_party/git/t/t5503-tagfollow.sh
deleted file mode 100755
index 6041a4dd3278..000000000000
--- a/third_party/git/t/t5503-tagfollow.sh
+++ /dev/null
@@ -1,160 +0,0 @@
-#!/bin/sh
-
-test_description='test automatic tag following'
-
-. ./test-lib.sh
-
-# End state of the repository:
-#
-#         T - tag1          S - tag2
-#        /                 /
-#   L - A ------ O ------ B
-#    \   \                 \
-#     \   C - origin/cat    \
-#      origin/master         master
-
-test_expect_success setup '
-	test_tick &&
-	echo ichi >file &&
-	git add file &&
-	git commit -m L &&
-	L=$(git rev-parse --verify HEAD) &&
-
-	(
-		mkdir cloned &&
-		cd cloned &&
-		git init-db &&
-		git remote add -f origin ..
-	) &&
-
-	test_tick &&
-	echo A >file &&
-	git add file &&
-	git commit -m A &&
-	A=$(git rev-parse --verify HEAD)
-'
-
-U=UPLOAD_LOG
-UPATH="$(pwd)/$U"
-
-test_expect_success 'setup expect' '
-cat - <<EOF >expect
-want $A
-EOF
-'
-
-get_needs () {
-	test -s "$1" &&
-	perl -alne '
-		next unless $F[1] eq "upload-pack<";
-		next unless $F[2] eq "want";
-		print $F[2], " ", $F[3];
-	' "$1"
-}
-
-test_expect_success 'fetch A (new commit : 1 connection)' '
-	rm -f $U &&
-	(
-		cd cloned &&
-		GIT_TRACE_PACKET=$UPATH git fetch &&
-		test $A = $(git rev-parse --verify origin/master)
-	) &&
-	get_needs $U >actual &&
-	test_cmp expect actual
-'
-
-test_expect_success "create tag T on A, create C on branch cat" '
-	git tag -a -m tag1 tag1 $A &&
-	T=$(git rev-parse --verify tag1) &&
-
-	git checkout -b cat &&
-	echo C >file &&
-	git add file &&
-	git commit -m C &&
-	C=$(git rev-parse --verify HEAD) &&
-	git checkout master
-'
-
-test_expect_success 'setup expect' '
-cat - <<EOF >expect
-want $C
-want $T
-EOF
-'
-
-test_expect_success 'fetch C, T (new branch, tag : 1 connection)' '
-	rm -f $U &&
-	(
-		cd cloned &&
-		GIT_TRACE_PACKET=$UPATH git fetch &&
-		test $C = $(git rev-parse --verify origin/cat) &&
-		test $T = $(git rev-parse --verify tag1) &&
-		test $A = $(git rev-parse --verify tag1^0)
-	) &&
-	get_needs $U >actual &&
-	test_cmp expect actual
-'
-
-test_expect_success "create commits O, B, tag S on B" '
-	test_tick &&
-	echo O >file &&
-	git add file &&
-	git commit -m O &&
-
-	test_tick &&
-	echo B >file &&
-	git add file &&
-	git commit -m B &&
-	B=$(git rev-parse --verify HEAD) &&
-
-	git tag -a -m tag2 tag2 $B &&
-	S=$(git rev-parse --verify tag2)
-'
-
-test_expect_success 'setup expect' '
-cat - <<EOF >expect
-want $B
-want $S
-EOF
-'
-
-test_expect_success 'fetch B, S (commit and tag : 1 connection)' '
-	rm -f $U &&
-	(
-		cd cloned &&
-		GIT_TRACE_PACKET=$UPATH git fetch &&
-		test $B = $(git rev-parse --verify origin/master) &&
-		test $B = $(git rev-parse --verify tag2^0) &&
-		test $S = $(git rev-parse --verify tag2)
-	) &&
-	get_needs $U >actual &&
-	test_cmp expect actual
-'
-
-test_expect_success 'setup expect' '
-cat - <<EOF >expect
-want $B
-want $S
-EOF
-'
-
-test_expect_success 'new clone fetch master and tags' '
-	test_might_fail git branch -D cat &&
-	rm -f $U &&
-	(
-		mkdir clone2 &&
-		cd clone2 &&
-		git init &&
-		git remote add origin .. &&
-		GIT_TRACE_PACKET=$UPATH git fetch &&
-		test $B = $(git rev-parse --verify origin/master) &&
-		test $S = $(git rev-parse --verify tag2) &&
-		test $B = $(git rev-parse --verify tag2^0) &&
-		test $T = $(git rev-parse --verify tag1) &&
-		test $A = $(git rev-parse --verify tag1^0)
-	) &&
-	get_needs $U >actual &&
-	test_cmp expect actual
-'
-
-test_done