You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
depot_tools/vpython3

47 lines
1.1 KiB
Plaintext

#!/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
Reland "depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt" This reverts commit b2bfd55fd531caf85030dd23fe5fd8e7168ee2ce. Reason for revert: not responsible for crbug.com/1025659 Original change's description: > Revert "depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt" > > This reverts commit bf26b167a802a4000bed691342dec7e849401447. > > Reason for revert: spec revert for https://bugs.chromium.org/p/chromium/issues/detail?id=1025659 > > Original change's description: > > depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt > > > > Bug: 1017812 > > Change-Id: I7013e5445ff5917fab813a54fed416d9770d2684 > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1913269 > > Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org> > > Reviewed-by: Dirk Pranke <dpranke@chromium.org> > > TBR=dpranke@chromium.org,ehmaldonado@chromium.org,apolito@google.com > > # Not skipping CQ checks because original CL landed > 1 day ago. > > Bug: 1017812 > Change-Id: I8e10894a2e835c20ece7d555c21f6ce1f76528a5 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1922949 > Reviewed-by: John Budorick <jbudorick@chromium.org> > Commit-Queue: John Budorick <jbudorick@chromium.org> Bug: 1017812 Change-Id: I251c6b1a3e3a7b9ac9d21dabe745466c668a8246 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1924494 Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
5 years ago
base_dir=$(dirname "$0")
Reland "depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt" This reverts commit b2bfd55fd531caf85030dd23fe5fd8e7168ee2ce. Reason for revert: not responsible for crbug.com/1025659 Original change's description: > Revert "depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt" > > This reverts commit bf26b167a802a4000bed691342dec7e849401447. > > Reason for revert: spec revert for https://bugs.chromium.org/p/chromium/issues/detail?id=1025659 > > Original change's description: > > depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt > > > > Bug: 1017812 > > Change-Id: I7013e5445ff5917fab813a54fed416d9770d2684 > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1913269 > > Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org> > > Reviewed-by: Dirk Pranke <dpranke@chromium.org> > > TBR=dpranke@chromium.org,ehmaldonado@chromium.org,apolito@google.com > > # Not skipping CQ checks because original CL landed > 1 day ago. > > Bug: 1017812 > Change-Id: I8e10894a2e835c20ece7d555c21f6ce1f76528a5 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1922949 > Reviewed-by: John Budorick <jbudorick@chromium.org> > Commit-Queue: John Budorick <jbudorick@chromium.org> Bug: 1017812 Change-Id: I251c6b1a3e3a7b9ac9d21dabe745466c668a8246 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1924494 Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
5 years ago
source "$base_dir/cipd_bin_setup.sh"
cipd_bin_setup &> /dev/null
if [[ $(uname -s) = MINGW* || $(uname -s) = CYGWIN* ]]; then
Reland "depot_tools: Run using Python 3 by default." This reverts commit e2ac022f0bdfbb36ddf355eb4da0151081b02130. git-cache issues were solved by https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2120966 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> Change-Id: Iff02533f0a11062f335a010c074043c720d5b2ba Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2121304 Reviewed-by: Josip Sokcevic <sokcevic@google.com> Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
5 years ago
cmd.exe //c $0.bat "$@"
else
exec "$base_dir/.cipd_bin/vpython3" "$@"
Reland "depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt" This reverts commit b2bfd55fd531caf85030dd23fe5fd8e7168ee2ce. Reason for revert: not responsible for crbug.com/1025659 Original change's description: > Revert "depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt" > > This reverts commit bf26b167a802a4000bed691342dec7e849401447. > > Reason for revert: spec revert for https://bugs.chromium.org/p/chromium/issues/detail?id=1025659 > > Original change's description: > > depot_tools: Ensure Python is bootstrapped before reading python3_bin_reldir.txt > > > > Bug: 1017812 > > Change-Id: I7013e5445ff5917fab813a54fed416d9770d2684 > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1913269 > > Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org> > > Reviewed-by: Dirk Pranke <dpranke@chromium.org> > > TBR=dpranke@chromium.org,ehmaldonado@chromium.org,apolito@google.com > > # Not skipping CQ checks because original CL landed > 1 day ago. > > Bug: 1017812 > Change-Id: I8e10894a2e835c20ece7d555c21f6ce1f76528a5 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1922949 > Reviewed-by: John Budorick <jbudorick@chromium.org> > Commit-Queue: John Budorick <jbudorick@chromium.org> Bug: 1017812 Change-Id: I251c6b1a3e3a7b9ac9d21dabe745466c668a8246 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/1924494 Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org>
5 years ago
fi