Compare commits

...

No commits in common. "imports/c9-beta/git-2.39.1-1.el9" and "c8" have entirely different histories.

7 changed files with 1166 additions and 434 deletions

View File

@ -1,2 +1,2 @@
3a35d0571c517f7f4cb2e1dfbd315e7c32023e2b SOURCES/git-2.39.1.tar.xz
7be8575a67477150800814e960e9c8028412d4cd SOURCES/git-2.39.3.tar.xz
87d3a395bad523277647f8614fbd9fefe0450fc6 SOURCES/gpgkey-junio.asc

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
SOURCES/git-2.39.1.tar.xz
SOURCES/git-2.39.3.tar.xz
SOURCES/gpgkey-junio.asc

View File

@ -0,0 +1,12 @@
diff -ur a/git-instaweb.sh b/git-instaweb.sh
--- a/git-instaweb.sh 2020-04-20 17:52:30.000000000 +0200
+++ b/git-instaweb.sh 2020-05-27 12:36:20.725300334 +0200
@@ -36,7 +36,7 @@
# Defaults:
# if installed, it doesn't need further configuration (module_path)
-test -z "$httpd" && httpd='lighttpd -f'
+test -z "$httpd" && httpd='httpd -f'
# Default is @@GITWEBDIR@@
test -z "$root" && root='@@GITWEBDIR@@'

Binary file not shown.

BIN
SOURCES/git-2.39.3.tar.sign Normal file

Binary file not shown.

View File

@ -3,11 +3,11 @@
shopt -s failglob
# Print output from failing tests
printf -v sep "%0.s-" {1..80}
dashes=$(printf "%80s" '' | tr ' ' '-')
for exit_file in t/test-results/*.exit; do
[ "$(< "$exit_file")" -eq 0 ] && continue
[ "$(cat "$exit_file")" -eq 0 ] && continue
out_file="${exit_file%exit}out"
printf '\n%s\n%s\n%s\n' "$sep" "$out_file" "$sep"
printf '\n%s\n%s\n%s\n' "$dashes" "$out_file" "$dashes"
cat "$out_file"
done
exit 1

File diff suppressed because it is too large Load Diff