From 2f81f907c2ccfc8d905cb0dfc78dbb2ffe75e6c7 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Mon, 7 Mar 2022 21:29:56 +0800 Subject: [PATCH] python3: Add Py3Build/InstallBuildDepends recipe This adds a recipe, Py3Build/InstallBuildDepends, that installs the requirements listed in HOST_PYTHON3_PACKAGE_BUILD_DEPENDS. This allows other (non-Python) packages to install host Python packages by calling this recipe, without having to know the internals of python3-package.mk. This also updates apparmor to call this recipe. Signed-off-by: Jeffery To --- lang/python/README.md | 27 +++++++++++++++++++++++++++ lang/python/python3-package.mk | 6 +++++- utils/apparmor/Makefile | 4 +--- 3 files changed, 33 insertions(+), 4 deletions(-) diff --git a/lang/python/README.md b/lang/python/README.md index 5681cb5d3..2a05d3c00 100644 --- a/lang/python/README.md +++ b/lang/python/README.md @@ -369,3 +369,30 @@ HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:=setuptools-scm ``` The Python package will be installed in `$(STAGING_DIR_HOSTPKG)/lib/pythonX.Y/site-packages`. + +#### Non-Python packages installing host-side Python packages + +Non-Python packages can also install host-side Python packages using the same mechanism: + +* Set `HOST_PYTHON3_PACKAGE_BUILD_DEPENDS` (see above for details). + +* Include `python3-package.mk` (set `PYTHON3_PKG_BUILD:=0` to avoid using the default Python package build recipes). + +* Call `Py3Build/InstallBuildDepends` to initiate the installation. + +For example: + +``` +PYTHON3_PKG_BUILD:=0 +HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:=setuptools-scm + +include $(INCLUDE_DIR)/package.mk +include ../../lang/python/python3-package.mk +# If outside of the packages feed: +# include $(TOPDIR)/feeds/packages/lang/python/python3-package.mk + +define Build/Compile + $(call Py3Build/InstallBuildDepends) + $(call Build/Compile/Default) +endef +``` diff --git a/lang/python/python3-package.mk b/lang/python/python3-package.mk index 20c8ca58a..c2617f69c 100644 --- a/lang/python/python3-package.mk +++ b/lang/python/python3-package.mk @@ -215,10 +215,14 @@ define Py3Build/CheckHostPipVersionMatch endef endif -define Py3Build/Compile/Default +define Py3Build/InstallBuildDepends $(if $(PYTHON3_PKG_HOST_PIP_INSTALL_ARGS), \ $(call HostPython3/PipInstall,$(PYTHON3_PKG_HOST_PIP_INSTALL_ARGS)) \ ) +endef + +define Py3Build/Compile/Default + $(call Py3Build/InstallBuildDepends) $(call Python3/ModSetup, \ $(PYTHON3_PKG_SETUP_DIR), \ $(PYTHON3_PKG_SETUP_GLOBAL_ARGS) \ diff --git a/utils/apparmor/Makefile b/utils/apparmor/Makefile index 3073fb605..a77a17b80 100644 --- a/utils/apparmor/Makefile +++ b/utils/apparmor/Makefile @@ -132,9 +132,7 @@ endef define Build/Install # Make sure we have python's setup tools installed - $(if $(PYTHON3_PKG_HOST_PIP_INSTALL_ARGS), \ - $(call HostPython3/PipInstall,$(PYTHON3_PKG_HOST_PIP_INSTALL_ARGS)) \ - ) + $(call Py3Build/InstallBuildDepends) $(INSTALL_DIR) $(PKG_INSTALL_DIR)-libapparmor $(PKG_INSTALL_DIR)-utils $(PKG_INSTALL_DIR)-profiles # Installing libapparmor +$(MAKE_VARS) PYTHON=$(HOST_PYTHON) VERSION=$(PYTHON3_VERSION) \