OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2017 The LUCI Authors. All rights reserved. | 2 # Copyright 2017 The LUCI Authors. All rights reserved. |
3 # Use of this source code is governed under the Apache License, Version 2.0 | 3 # Use of this source code is governed under the Apache License, Version 2.0 |
4 # that can be found in the LICENSE file. | 4 # that can be found in the LICENSE file. |
5 | 5 |
6 # NOTE: This was imported from Chromium's "tools/build" at revision: | 6 # NOTE: This was imported from Chromium's "tools/build" at revision: |
7 # 65976b6e2a612439681dc42830e90dbcdf550f40 | 7 # 65976b6e2a612439681dc42830e90dbcdf550f40 |
8 | 8 |
9 import argparse | 9 import argparse |
10 import json | 10 import json |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 | 138 |
139 ## | 139 ## |
140 # The following section is read by "vpython" and used to construct the | 140 # The following section is read by "vpython" and used to construct the |
141 # VirtualEnv for this tool. | 141 # VirtualEnv for this tool. |
142 # | 142 # |
143 # These imports were lifted from "/bootstrap/venv.cfg". | 143 # These imports were lifted from "/bootstrap/venv.cfg". |
144 ## | 144 ## |
145 # [VPYTHON:BEGIN] | 145 # [VPYTHON:BEGIN] |
146 # | 146 # |
147 # wheel: < | 147 # wheel: < |
148 # name: "infra/python/wheels/cryptography/${platform}_${py_version}_${py_abi}" | 148 # name: "infra/python/wheels/cryptography/${platform}_${py_python}_${py_abi}" |
149 # version: "version:1.8.1" | 149 # version: "version:1.8.1" |
150 # > | 150 # > |
151 # | 151 # |
152 # wheel: < | 152 # wheel: < |
153 # name: "infra/python/wheels/appdirs-py2_py3" | 153 # name: "infra/python/wheels/appdirs-py2_py3" |
154 # version: "version:1.4.3" | 154 # version: "version:1.4.3" |
155 # > | 155 # > |
156 # | 156 # |
157 # wheel: < | 157 # wheel: < |
158 # name: "infra/python/wheels/asn1crypto-py2_py3" | 158 # name: "infra/python/wheels/asn1crypto-py2_py3" |
159 # version: "version:0.22.0" | 159 # version: "version:0.22.0" |
160 # > | 160 # > |
161 # | 161 # |
162 # wheel: < | 162 # wheel: < |
163 # name: "infra/python/wheels/enum34-py2" | 163 # name: "infra/python/wheels/enum34-py2" |
164 # version: "version:1.1.6" | 164 # version: "version:1.1.6" |
165 # > | 165 # > |
166 # | 166 # |
167 # wheel: < | 167 # wheel: < |
168 # name: "infra/python/wheels/cffi/${platform}_${py_version}_${py_abi}" | 168 # name: "infra/python/wheels/cffi/${platform}_${py_python}_${py_abi}" |
169 # version: "version:1.10.0" | 169 # version: "version:1.10.0" |
170 # > | 170 # > |
171 # | 171 # |
172 # wheel: < | 172 # wheel: < |
173 # name: "infra/python/wheels/idna-py2_py3" | 173 # name: "infra/python/wheels/idna-py2_py3" |
174 # version: "version:2.5" | 174 # version: "version:2.5" |
175 # > | 175 # > |
176 # | 176 # |
177 # wheel: < | 177 # wheel: < |
178 # name: "infra/python/wheels/ipaddress-py2" | 178 # name: "infra/python/wheels/ipaddress-py2" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 # version: "version:1.10.0" | 214 # version: "version:1.10.0" |
215 # > | 215 # > |
216 # | 216 # |
217 # wheel: < | 217 # wheel: < |
218 # name: "infra/python/wheels/requests-py2_py3" | 218 # name: "infra/python/wheels/requests-py2_py3" |
219 # version: "version:2.13.0" | 219 # version: "version:2.13.0" |
220 # > | 220 # > |
221 # | 221 # |
222 # [VPYTHON:END] | 222 # [VPYTHON:END] |
223 ## | 223 ## |
OLD | NEW |