|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Copyright 2019 The Chromium Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
if [[ $VPYTHON_BYPASS == "manually managed python not supported by chrome operations" ]]
|
|
|
|
then
|
|
|
|
NEWARGS=()
|
|
|
|
while [[ $# -gt 0 ]]
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-vpython-tool*) # these tools all do something vpython related and quit
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
-vpython*=*) # delete any vpython-specific flag (w/ attached argument)
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-vpython*) # delete any vpython-specific flag (w/ separate argument)
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
--) # stop parsing
|
|
|
|
NEWARGS+=( "$@" )
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
*) # regular arg
|
|
|
|
NEWARGS+=( "$1" )
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
exec "python3" "${NEWARGS[@]}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
base_dir=$(dirname "$0")
|
|
|
|
|
|
|
|
source "$base_dir/cipd_bin_setup.sh"
|
|
|
|
cipd_bin_setup &> /dev/null
|
|
|
|
|
|
|
|
# If Python bootstrapping is not disabled, make sure Python has been
|
|
|
|
# bootstrapped and add it to the front of PATH.
|
Revert "Reland "depot_tools: Run using Python 3 by default.""
This reverts commit e9013eeb3d1d026d72549dea78dbba2a95ad8d5d.
Reason for revert: https://crbug.com/1064547
Original change's description:
> Reland "depot_tools: Run using Python 3 by default."
>
> This is a reland of 01ed358917aa9f9f6314414ba3bb5e808bdedca2
>
> * python_runner.sh, gclient, roll-dep and fetch will call vpython
> (instead of vpython3) when running on Windows under git-bash.
> * vpython3 now detects when running on Windows under git-bash and
> executes vpython3.bat instead.
> * vpython3.bat calls python3.exe directly instead of calling python3.bat.
>
> Original change's description:
> > depot_tools: Run using Python 3 by default.
> >
> > Run gclient, roll-dep, fetch and custom git commands (i.e. git-cl, git-rebase-update, git-new-branch, etc.)
> > using vpython3 by default.
> >
> > Change-Id: I4eecddafa6ca4c5f82ec097615c79d2a741613e7
> > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2113550
> > Reviewed-by: Anthony Polito <apolito@google.com>
> > Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
>
> Change-Id: I9829141d7ea26a67e655264430151f493e73a930
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2118418
> Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
> Reviewed-by: Anthony Polito <apolito@google.com>
TBR=ehmaldonado@chromium.org,ajp@chromium.org,apolito@google.com,infra-scoped@luci-project-accounts.iam.gserviceaccount.com,sokcevic@google.com
Change-Id: Ia382d6e4e330f5a7a7a62e4d369c3fa16fc17333
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2120956
Reviewed-by: Josip Sokcevic <sokcevic@google.com>
Commit-Queue: Josip Sokcevic <sokcevic@google.com>
5 years ago
|
|
|
if [[ $MINGW != 0 && $DEPOT_TOOLS_BOOTSTRAP_PYTHON3 != 0 ]]; then
|
|
|
|
if [[ ! -e $base_dir/python3_bin_reldir.txt ]]; then
|
|
|
|
source "$base_dir/bootstrap_python3"
|
|
|
|
bootstrap_python3
|
|
|
|
fi
|
|
|
|
PYTHON3_BIN_RELDIR="$base_dir/$(cat $base_dir/python3_bin_reldir.txt | xargs echo)"
|
|
|
|
exec "$base_dir/.cipd_bin/vpython3" -vpython-interpreter "$PYTHON3_BIN_RELDIR/python3" "$@"
|
|
|
|
else
|
|
|
|
exec "$base_dir/.cipd_bin/vpython3" "$@"
|
|
|
|
fi
|