mirror of
https://github.com/openwrt/packages.git
synced 2025-12-20 01:21:21 +00:00
python,python3: add host python pip install support
To install Python packages host side, that may be needed for a build. The intent, is to try to reduce host-side Python packages being installed via LEDE/OpenWrt build system. Because those seem like a pain to maintain. The idea is adapted from Yousong's `python-packages` package. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
@@ -60,6 +60,19 @@ define Build/Compile/HostPy3RunHost
|
||||
)
|
||||
endef
|
||||
|
||||
# Note: I shamelessly copied this from Yousong's logic (from python-packages);
|
||||
HOST_PYTHON3_PIP:=$(STAGING_DIR_HOSTPKG)/bin/pip$(PYTHON3_VERSION)
|
||||
define host_python3_pip_install
|
||||
$(HOST_PYTHON3_PIP) install \
|
||||
--root=$(1) \
|
||||
--prefix=$(2) \
|
||||
--ignore-installed \
|
||||
$(3)
|
||||
endef
|
||||
|
||||
define host_python3_pip_install_host
|
||||
$(call host_python3_pip_install,$(STAGING_DIR_HOSTPKG),"",$(1))
|
||||
endef
|
||||
|
||||
# $(1) => build subdir
|
||||
# $(2) => additional arguments to setup.py
|
||||
|
||||
Reference in New Issue
Block a user