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/t5560-http-backend-noserver.sh | 74 ------------------------ 1 file changed, 74 deletions(-) delete mode 100755 third_party/git/t/t5560-http-backend-noserver.sh (limited to 'third_party/git/t/t5560-http-backend-noserver.sh') diff --git a/third_party/git/t/t5560-http-backend-noserver.sh b/third_party/git/t/t5560-http-backend-noserver.sh deleted file mode 100755 index 9fafcf194589..000000000000 --- a/third_party/git/t/t5560-http-backend-noserver.sh +++ /dev/null @@ -1,74 +0,0 @@ -#!/bin/sh - -test_description='test git-http-backend-noserver' -. ./test-lib.sh - -HTTPD_DOCUMENT_ROOT_PATH="$TRASH_DIRECTORY" - -if test_have_prereq GREP_STRIPS_CR -then - GREP_OPTIONS=-U - export GREP_OPTIONS -fi - -run_backend() { - echo "$2" | - QUERY_STRING="${1#*[?]}" \ - PATH_TRANSLATED="$HTTPD_DOCUMENT_ROOT_PATH/${1%%[?]*}" \ - git http-backend >act.out 2>act.err -} - -GET() { - REQUEST_METHOD="GET" && export REQUEST_METHOD && - run_backend "/repo.git/$1" && - sane_unset REQUEST_METHOD && - if ! grep "Status" act.out >act - then - printf "Status: 200 OK\r\n" >act - fi - printf "Status: $2\r\n" >exp && - test_cmp exp act -} - -POST() { - REQUEST_METHOD="POST" && export REQUEST_METHOD && - CONTENT_TYPE="application/x-$1-request" && export CONTENT_TYPE && - run_backend "/repo.git/$1" "$2" && - sane_unset REQUEST_METHOD && - sane_unset CONTENT_TYPE && - if ! grep "Status" act.out >act - then - printf "Status: 200 OK\r\n" >act - fi - printf "Status: $3\r\n" >exp && - test_cmp exp act -} - -. "$TEST_DIRECTORY"/t556x_common - -expect_aliased() { - REQUEST_METHOD="GET" && export REQUEST_METHOD && - if test $1 = 0; then - run_backend "$2" - else - run_backend "$2" && - echo "fatal: '$2': aliased" >exp.err && - test_cmp exp.err act.err - fi - unset REQUEST_METHOD -} - -test_expect_success 'http-backend blocks bad PATH_INFO' ' - config http.getanyfile true && - - expect_aliased 0 /repo.git/HEAD && - - expect_aliased 1 /repo.git/../HEAD && - expect_aliased 1 /../etc/passwd && - expect_aliased 1 ../etc/passwd && - expect_aliased 1 /etc//passwd && - expect_aliased 1 /etc/./passwd && - expect_aliased 1 //domain/data.txt -' - -test_done -- cgit 1.4.1