3 NWD
=contrib
/workdir
/git-new-workdir
9 probed
=${p%/git-active/bin}
10 if test "$probed" != "$p"
19 force
= with_dash
= M
= install= nodoc
= notest
= bootstrap
= branches
= jobs=
22 --pedantic |
--locale=* |
--loose) M
="$M $1" ;;
24 --dash) with_dash
=y
;;
25 --noinstall) install=noinstall
;;
28 --test=*) test="$1" ;;
29 --scratch) scratch
=y
;;
30 --bootstrap) bootstrap
=y
;;
31 --base=*) BUILDBASE
=${1#*=} ;;
32 --branches=*) branches
=${1#*=} ;;
35 -*) echo >&2 "Unknown option: $1"; exit 1 ;;
42 sh
-c 'asciidoc --version >/dev/null 2>&1' || nodoc
=y
45 export GIT_TEST_CHAIN_LINT
47 test -f /bin
/dash || with_dash
=
48 if test -z "$BUILDBASE"
50 if test -d "$inst_prefix/buildfarm"
52 BUILDBASE
="$inst_prefix/buildfarm"
53 elif test -d "../buildfarm"
55 BUILDBASE
=..
/buildfarm
57 echo >&2 "Buildbase unknown"
61 test -n "$branches" || branches
='next master maint jch pu'
62 test -n "$jobs" ||
jobs=-j2
66 test -f "$inst_prefix/git-$branch/bin/git" &&
67 installed
=$
($inst_prefix/git-
$branch/bin
/git version
) &&
68 if version
=$
(expr "$installed" : '.*\.g\([0-9a-f]*\)$')
71 elif version
=v$
(expr "$installed" : \
72 'git version \(.*\)\.rc[0-9]*$')
74 version
="$version"-$
(expr "$installed" : \
75 'git version .*\.\(rc[0-9]*\)$')
77 version
=v$
(expr "$installed" : 'git version \(.*\)')
79 git rev-parse
--verify "$version^0" 2>/dev
/null
82 installed_source_trees
=" "
83 for branch
in $branches
85 if v
=$
(find_installed
$branch) &&
87 v
=$
(git rev-parse
--verify "$v^{tree}" 2>/dev
/null
)
89 installed_source_trees
="$installed_source_trees$v "
93 for branch
in $branches
96 revision
=$
(git show-ref
-s --verify "refs/heads/$branch") ||
{
101 if test ! -d "$BUILDBASE/$branch"
103 if test -z "$bootstrap"
105 echo "** No $BUILDBASE/$branch"
108 "$NWD" .
"$BUILDBASE/$branch" $branch &&
109 ln -s "$(pwd)/Meta" "$BUILDBASE/$branch/Meta" ||
{
110 echo "** Failed to bootstrap $BUILDBASE/$branch"
115 private
=$
(git rev-parse
-q --verify private-
$branch 2>/dev
/null
)
116 case $?
in 0|
1) ;; *) exit $?
;; esac
118 version
=$
(find_installed
$branch)
119 if test "z$version" = "z$revision"
121 echo "* up-to-date version is already installed from $branch"
122 test -n "$force" ||
continue
125 vtree
=$
(git rev-parse
--verify "$version^{tree}")
126 rtree
=$
(git rev-parse
--verify "$revision^{tree}")
128 skip_test
=$notest skip_doc
=$nodoc
133 for xtree
in $installed_source_trees $vtree
135 if test "z$xtree" = "z$rtree" ||
136 git
diff --quiet "$xtree" "$rtree" -- . \
137 ':!GIT-VERSION-GEN' \
146 dvtree
=$
(git rev-parse
--verify "$version:Documentation/")
147 drtree
=$
(git rev-parse
--verify "$revision:Documentation/")
148 if test "z$dvtree" = "z$drtree"
160 cd "$BUILDBASE/$branch"
162 case "$(git symbolic-ref HEAD)" in
163 "refs/heads/$branch")
166 git checkout
"$branch" &&
167 git
reset --hard ||
exit
182 git merge
--squash --no-commit "$private" ||
{
183 echo >&2 "** Cannot apply private edition changes"
189 save
=$
(git rev-parse HEAD
) &&
191 Meta
/Make
$M ${test+"$test"} $jobs --memtrash \
192 -- ${with_dash:+SHELL_PATH=/bin/dash} "$@" $dotest &&
195 test -n "$skip_doc" ||
196 if test "$save" = "$(git rev-parse HEAD)"
198 Meta
/Make
$M $jobs -- doc
&&
199 Meta
/Make
$M -- install-man install-html
201 echo >&2 "Head moved--not installing docs"
206 test z
$install = znoinstall ||
207 if test "$save" = "$(git rev-parse HEAD)"
209 Meta
/Make
$M -- ${with_dash:+SHELL_PATH=/bin/dash} "$@" install
211 echo >&2 "Head moved--not installing"
216 ) </dev
/null ||
exit $?
218 installed_source_trees
="$installed_source_trees$rtree "