Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Issue 1205873002: Re-land: Added virtualenv for depot_tools (Closed)

Created:
5 years, 6 months ago by Sergiy Byelozyorov
Modified:
5 years, 1 month ago
Reviewers:
pgervais
CC:
chromium-reviews, dpranke+depot_tools_chromium.org, iannucci+depot_tools_chromium.org
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Re-land: Added virtualenv for depot_tools Original CL: https://chromiumcodereview.appspot.com/1200843003/ R=pgervais@chromium.org BUG=503067 TEST=tested on Mac, Windows and Linux bots Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=295842

Patch Set 1 : Original CL #

Patch Set 2 : Clone virtualenv repo when setting it up #

Patch Set 3 : Fixes after testing #

Patch Set 4 : Supress all output from bootstrap to avoid breaking tools that depend on gclient output #

Total comments: 4

Patch Set 5 : Addressed comments #

Patch Set 6 : Restore cd commands #

Unified diffs Side-by-side diffs Delta from patch set Stats (+6607 lines, --1 lines) Patch
M .gitignore View 1 chunk +3 lines, -0 lines 0 comments Download
M PRESUBMIT.py View 1 chunk +2 lines, -1 line 0 comments Download
A bootstrap/.gitignore View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
A bootstrap/bootstrap.py View 1 2 3 1 chunk +234 lines, -0 lines 0 comments Download
A bootstrap/deps.pyl View 1 chunk +15 lines, -0 lines 0 comments Download
A bootstrap/util.py View 1 chunk +87 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/.gitignore View 1 2 3 4 1 chunk +10 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/.travis.yml View 1 2 3 4 1 chunk +28 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/AUTHORS.txt View 1 2 3 4 1 chunk +91 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/CONTRIBUTING.rst View 1 2 3 4 1 chunk +21 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/LICENSE.txt View 1 2 3 4 1 chunk +22 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/MANIFEST.in View 1 2 3 4 1 chunk +11 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/README.rst View 1 2 3 4 1 chunk +10 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/bin/rebuild-script.py View 1 2 3 4 1 chunk +71 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/docs/Makefile View 1 2 3 4 1 chunk +130 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/docs/changes.rst View 1 2 3 4 1 chunk +747 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/docs/conf.py View 1 2 3 4 1 chunk +149 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/docs/development.rst View 1 2 3 4 1 chunk +61 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/docs/index.rst View 1 2 3 4 1 chunk +137 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/docs/installation.rst View 1 2 3 4 1 chunk +58 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/docs/make.bat View 1 2 3 4 1 chunk +170 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/docs/reference.rst View 1 2 3 4 1 chunk +256 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/docs/userguide.rst View 1 2 3 4 1 chunk +249 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/scripts/virtualenv View 1 2 3 4 1 chunk +3 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/setup.py View 1 2 3 4 1 chunk +111 lines, -0 lines 0 comments Download
A + bootstrap/virtualenv/tests/__init__.py View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A bootstrap/virtualenv/tests/test_activate.sh View 1 2 3 4 1 chunk +94 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/tests/test_activate_expected.output View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/tests/test_virtualenv.py View 1 2 3 4 1 chunk +139 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/tests/tox.ini View 1 2 3 4 1 chunk +12 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/tox.ini View 1 2 3 4 1 chunk +17 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv.py View 1 2 3 4 1 chunk +2367 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_embedded/activate.bat View 1 2 3 4 1 chunk +26 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_embedded/activate.csh View 1 2 3 4 1 chunk +42 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_embedded/activate.fish View 1 2 3 4 1 chunk +74 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_embedded/activate.ps1 View 1 2 3 4 1 chunk +150 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_embedded/activate.sh View 1 2 3 4 1 chunk +80 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_embedded/activate_this.py View 1 2 3 4 1 chunk +34 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_embedded/deactivate.bat View 1 2 3 4 1 chunk +20 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_embedded/distutils.cfg View 1 2 3 4 1 chunk +6 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_embedded/distutils-init.py View 1 2 3 4 1 chunk +101 lines, -0 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_embedded/site.py View 1 2 3 4 1 chunk +758 lines, -0 lines 0 comments Download
A + bootstrap/virtualenv/virtualenv_support/__init__.py View 1 2 3 4 0 chunks +-1 lines, --1 lines 0 comments Download
A bootstrap/virtualenv/virtualenv_support/pip-6.0-py2.py3-none-any.whl View 1 2 3 4 Binary file 0 comments Download
A bootstrap/virtualenv/virtualenv_support/setuptools-8.2.1-py2.py3-none-any.whl View 1 2 3 4 Binary file 0 comments Download
M update_depot_tools View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download
M update_depot_tools.bat View 1 2 3 4 5 1 chunk +5 lines, -0 lines 0 comments Download

Messages

Total messages: 19 (8 generated)
Sergiy Byelozyorov
PTAL
5 years, 6 months ago (2015-06-24 13:35:30 UTC) #2
Sergiy Byelozyorov
I've added another patchset that suppresses all output from the bootstrap.py script to avoid breaking ...
5 years, 6 months ago (2015-06-24 15:17:59 UTC) #4
pgervais
https://chromiumcodereview.appspot.com/1205873002/diff/90009/update_depot_tools File update_depot_tools (right): https://chromiumcodereview.appspot.com/1205873002/diff/90009/update_depot_tools#newcode159 update_depot_tools:159: VIRTUALENV_REVISION="4243b272823228dde5d18a7400c404ce52fb4cea" Virtualenv is vendored in infra.git/bootstrap/virtualenv, we should do ...
5 years, 6 months ago (2015-06-24 16:31:33 UTC) #6
Sergiy Byelozyorov
https://codereview.chromium.org/1205873002/diff/90009/update_depot_tools File update_depot_tools (right): https://codereview.chromium.org/1205873002/diff/90009/update_depot_tools#newcode159 update_depot_tools:159: VIRTUALENV_REVISION="4243b272823228dde5d18a7400c404ce52fb4cea" On 2015/06/24 16:31:33, pgervais wrote: > Virtualenv is ...
5 years, 6 months ago (2015-06-25 14:42:17 UTC) #7
pgervais
https://chromiumcodereview.appspot.com/1205873002/diff/90009/update_depot_tools File update_depot_tools (right): https://chromiumcodereview.appspot.com/1205873002/diff/90009/update_depot_tools#newcode159 update_depot_tools:159: VIRTUALENV_REVISION="4243b272823228dde5d18a7400c404ce52fb4cea" On 2015/06/25 14:42:17, Sergiy Byelozyorov wrote: > On ...
5 years, 6 months ago (2015-06-25 17:12:02 UTC) #8
Sergiy Byelozyorov
https://chromiumcodereview.appspot.com/1205873002/diff/90009/update_depot_tools File update_depot_tools (right): https://chromiumcodereview.appspot.com/1205873002/diff/90009/update_depot_tools#newcode159 update_depot_tools:159: VIRTUALENV_REVISION="4243b272823228dde5d18a7400c404ce52fb4cea" On 2015/06/25 17:12:02, pgervais wrote: > On 2015/06/25 ...
5 years, 6 months ago (2015-06-25 17:34:51 UTC) #9
pgervais
On 2015/06/25 17:34:51, Sergiy Byelozyorov wrote: > https://chromiumcodereview.appspot.com/1205873002/diff/90009/update_depot_tools > File update_depot_tools (right): > > https://chromiumcodereview.appspot.com/1205873002/diff/90009/update_depot_tools#newcode159 ...
5 years, 6 months ago (2015-06-25 17:54:10 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1205873002/130001
5 years, 6 months ago (2015-06-25 17:59:24 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1205873002/150001
5 years, 6 months ago (2015-06-25 18:05:23 UTC) #16
Sergiy Byelozyorov
Committed patchset #6 (id:150001) manually as 295842 (presubmit successful).
5 years, 6 months ago (2015-06-25 18:08:55 UTC) #18
Sergiy Byelozyorov
5 years, 1 month ago (2015-11-09 15:09:38 UTC) #19
Message was sent while issue was closed.
On 2015/06/25 18:08:55, Sergiy Byelozyorov wrote:
> Committed patchset #6 (id:150001) manually as 295842 (presubmit successful).

Revert for this is https://codereview.chromium.org/1437483002/.

Powered by Google App Engine
This is Rietveld 408576698