• Add a Salt bootstrapper

    The Salt bootstrapper invokes Salt during `./mach bootstrap`
    to install Servo's build dependencies.
    It uses salt-call pinned to the same version of Salt as used in saltfs.
    
    Currently, the implementation uses gitfs and reads directly from
    the master branch of the saltfs repo;
    in the future this should be changed when the relevant Salt states
    are moved in-tree as part of Dockerization for TaskCluster.
    
    We have not Salted our Windows machines, so the existing Windows
    bootstrappers are retained. Currently this is only tested on
    Ubuntu Trusty.
    
    Salt uses various system python libraries,
    including `python-apt` on Debian-based OSes to interact with apt.
    `python-apt` does not seem to be installable via a requirements.txt
    file, and the versions available on PyPI are far behind the versions
    installed on actual Ubuntu machines.
    Additionally, adding `python-apt` as an unconditional python dependency
    would add bloat for users of other OSes, and lead to more churn
    as additional OSes are supported.
    However, as `python-apt` is already installed via apt on these machines,
    we can allow Salt to instead use the module by using
    `--system-site-packages` for the python virtualenv.
    We also add the `-I` flag to `pip install` to ensure we have a local,
    untouched copy of any other python packages used.
    However, because this prints system-level Python packages in scope,
    it slightly breaks isolation, so it is important to always pin
    all dependencies in the requirements files.
    aneeshusa committed Jan 17, 2017