gecko-dev/python
Ricky Stewart 9ca5df0699 Bug 1664408 - Don't delete ~/.mozbuild/mozboot directory after use in bootstrap r=mhentges,nalexander
The idea here was that we keep the NDK's downloaded in this directory as a "cache", such that if the download gets interrupted, then we can resume the download from an earlier point. This logic was walked back by bug 1637379, which deletes the cache.

In the spirit of the original version of the code, remove the `os.rmdir()` that was introduced by that bug.

An alternative fix for this is to download the NDK to a temporary directory and just clean that up entirely after every call to `mach bootstrap`, but then we would be forgoing the build cache behavior, which I'm not sure makes sense at this point in time.

Differential Revision: https://phabricator.services.mozilla.com/D90125
2020-09-14 21:16:49 +00:00
..
devtools/migrate-l10n
docs
gdbpp/gdbpp
l10n Bug 863474 - Centralise OpenSearch install failure prompts into SearchUIUtils. r=daleharvey,flod,geckoview-reviewers,esawin 2020-09-14 11:08:43 +00:00
lldbutils Bug 1637130 - Rename visual overflow to ink overflow. r=dbaron 2020-07-20 20:17:36 +00:00
mach Bug 1651424: Report build telemetry using Glean r=firefox-build-system-reviewers,Dexter,rstewart 2020-09-09 23:51:57 +00:00
mozboot Bug 1664408 - Don't delete ~/.mozbuild/mozboot directory after use in bootstrap r=mhentges,nalexander 2020-09-14 21:16:49 +00:00
mozbuild Bug 1657952 - When ./mach vendor adds/removes files, also edit the moz.build files r=firefox-build-system-reviewers,rstewart 2020-09-14 18:44:49 +00:00
mozlint Bug 1657604 - [mozlint] Support multiple linters per yaml file, r=linter-reviewers,sylvestre 2020-08-07 07:12:41 +00:00
mozperftest Bug 1662706 - add a fuzzy runner r=sparky,necko-reviewers,rstewart 2020-09-11 08:13:27 +00:00
mozrelease Bug 1661514 - Reformat some python files with black 20.8b1 r=rstewart 2020-09-07 14:05:10 +00:00
mozterm
mozversioncontrol Bug 1659602 - Fix type error in mozversioncontrol for Windows+hg+Python 3 r=dmajor 2020-08-18 12:51:49 +00:00
mach_commands.py Bug 1659539 - [python-test] Remove '--python' and stop using pipenv to manage virtualenvs r=ahal 2020-09-02 17:05:24 +00:00
moz.build Bug 925350 - Remove dumbmake r=nalexander 2020-07-10 18:12:07 +00:00
README

This directory contains common Python code.

The basic rule is that if Python code is cross-module (that's "module" in the
Mozilla meaning - as in "module ownership") and is MPL-compatible, it should
go here.

What should not go here:

* Vendored python modules (use third_party/python instead)
* Python that is not MPL-compatible (see other-licenses/)
* Python that has good reason to remain close to its "owning" (Mozilla)
  module (e.g. it is only being consumed from there).

Historical information can be found at
https://bugzilla.mozilla.org/show_bug.cgi?id=775243
https://bugzilla.mozilla.org/show_bug.cgi?id=1346025