python: Better host pip options
authorJeffery To <jeffery.to@gmail.com>
Mon, 20 Feb 2023 11:10:39 +0000 (19:10 +0800)
committerJosef Schlehofer <pepe.schlehofer@gmail.com>
Fri, 13 Oct 2023 06:23:39 +0000 (08:23 +0200)
commit19e6300f0cdbb1c048f65d16875357a3b099c8c6
treee388c06ed531192e2837e0bf908c2b4172a3fb3d
parentb5ccf456dfcde07254b9021102c7025e3197b9df
python: Better host pip options

pip by default will read system-wide and per-user configuration
files[1]. Setting PIP_CONFIG_FILE=/dev/null instructs pip to not read
any config files[2].

pip will spawn child processes of itself to do work, but not all options
are passed down to the child processes[3]. Setting global options as
environment variables[4] ensures they are passed down to any child
processes.

[1]: https://pip.pypa.io/en/stable/topics/configuration/#configuration-files
[2]: https://pip.pypa.io/en/stable/topics/configuration/#pip-config-file
[3]: https://github.com/pypa/pip/issues/9081#issue-733819665
[4]: https://pip.pypa.io/en/stable/topics/configuration/#environment-variables

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 8c2abb74031e2403dde83536a8e7f13c63cdd4ab)
lang/python/python3-host.mk
lang/python/python3/Makefile