about summary refs log tree commit diff
path: root/third_party/git/t/t5603-clone-dirname.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/t5603-clone-dirname.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/t5603-clone-dirname.sh')
-rwxr-xr-xthird_party/git/t/t5603-clone-dirname.sh108
1 files changed, 0 insertions, 108 deletions
diff --git a/third_party/git/t/t5603-clone-dirname.sh b/third_party/git/t/t5603-clone-dirname.sh
deleted file mode 100755
index 13b5e5eb9b..0000000000
--- a/third_party/git/t/t5603-clone-dirname.sh
+++ /dev/null
@@ -1,108 +0,0 @@
-#!/bin/sh
-
-test_description='check output directory names used by git-clone'
-. ./test-lib.sh
-
-# we use a fake ssh wrapper that ignores the arguments
-# entirely; we really only care that we get _some_ repo,
-# as the real test is what clone does on the local side
-test_expect_success 'setup ssh wrapper' '
-	write_script "$TRASH_DIRECTORY/ssh-wrapper" <<-\EOF &&
-	git upload-pack "$TRASH_DIRECTORY"
-	EOF
-	GIT_SSH="$TRASH_DIRECTORY/ssh-wrapper" &&
-	GIT_SSH_VARIANT=ssh &&
-	export GIT_SSH &&
-	export GIT_SSH_VARIANT &&
-	export TRASH_DIRECTORY
-'
-
-# make sure that cloning $1 results in local directory $2
-test_clone_dir () {
-	url=$1; shift
-	dir=$1; shift
-	expect=success
-	bare=non-bare
-	clone_opts=
-	for i in "$@"
-	do
-		case "$i" in
-		fail)
-			expect=failure
-			;;
-		bare)
-			bare=bare
-			clone_opts=--bare
-			;;
-		esac
-	done
-	test_expect_$expect "clone of $url goes to $dir ($bare)" "
-		rm -rf $dir &&
-		git clone $clone_opts $url &&
-		test_path_is_dir $dir
-	"
-}
-
-# basic syntax with bare and non-bare variants
-test_clone_dir host:foo foo
-test_clone_dir host:foo foo.git bare
-test_clone_dir host:foo.git foo
-test_clone_dir host:foo.git foo.git bare
-test_clone_dir host:foo/.git foo
-test_clone_dir host:foo/.git foo.git bare
-
-# similar, but using ssh URL rather than host:path syntax
-test_clone_dir ssh://host/foo foo
-test_clone_dir ssh://host/foo foo.git bare
-test_clone_dir ssh://host/foo.git foo
-test_clone_dir ssh://host/foo.git foo.git bare
-test_clone_dir ssh://host/foo/.git foo
-test_clone_dir ssh://host/foo/.git foo.git bare
-
-# we should remove trailing slashes and .git suffixes
-test_clone_dir ssh://host/foo/ foo
-test_clone_dir ssh://host/foo/// foo
-test_clone_dir ssh://host/foo/.git/ foo
-test_clone_dir ssh://host/foo.git/ foo
-test_clone_dir ssh://host/foo.git/// foo
-test_clone_dir ssh://host/foo///.git/ foo
-test_clone_dir ssh://host/foo/.git/// foo
-
-test_clone_dir host:foo/ foo
-test_clone_dir host:foo/// foo
-test_clone_dir host:foo.git/ foo
-test_clone_dir host:foo/.git/ foo
-test_clone_dir host:foo.git/// foo
-test_clone_dir host:foo///.git/ foo
-test_clone_dir host:foo/.git/// foo
-
-# omitting the path should default to the hostname
-test_clone_dir ssh://host/ host
-test_clone_dir ssh://host:1234/ host
-test_clone_dir ssh://user@host/ host
-test_clone_dir host:/ host
-
-# auth materials should be redacted
-test_clone_dir ssh://user:password@host/ host
-test_clone_dir ssh://user:password@host:1234/ host
-test_clone_dir ssh://user:passw@rd@host:1234/ host
-test_clone_dir user@host:/ host
-test_clone_dir user:password@host:/ host
-test_clone_dir user:passw@rd@host:/ host
-
-# auth-like material should not be dropped
-test_clone_dir ssh://host/foo@bar foo@bar
-test_clone_dir ssh://host/foo@bar.git foo@bar
-test_clone_dir ssh://user:password@host/foo@bar foo@bar
-test_clone_dir ssh://user:passw@rd@host/foo@bar.git foo@bar
-
-test_clone_dir host:/foo@bar foo@bar
-test_clone_dir host:/foo@bar.git foo@bar
-test_clone_dir user:password@host:/foo@bar foo@bar
-test_clone_dir user:passw@rd@host:/foo@bar.git foo@bar
-
-# trailing port-like numbers should not be stripped for paths
-test_clone_dir ssh://user:password@host/test:1234 1234
-test_clone_dir ssh://user:password@host/test:1234.git 1234
-
-test_done