From c9337b2b9255c52744bc05ecaadbc41cb39f97d7 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Wed, 24 May 2017 19:26:07 +0300 Subject: [PATCH] python-six: add host-side build Needed for Open vSwitch's python libs. And build. Signed-off-by: Alexandru Ardelean --- lang/python/python-six/Makefile | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/lang/python/python-six/Makefile b/lang/python/python-six/Makefile index 9f0704954..6e4259d30 100644 --- a/lang/python/python-six/Makefile +++ b/lang/python/python-six/Makefile @@ -9,18 +9,20 @@ include $(TOPDIR)/rules.mk PKG_NAME:=six PKG_VERSION:=1.10.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://pypi.python.org/packages/source/s/six PKG_MD5SUM:=34eed507548117b2ab523ab14b2f8b55 -PKG_BUILD_DEPENDS:=python python-setuptools +HOST_BUILD_DEPENDS:=python/host +PKG_BUILD_DEPENDS:=python PKG_LICENSE:=MIT PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Jeffery To +include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/package.mk $(call include_mk, python-package.mk) @@ -44,5 +46,13 @@ define Build/Compile $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) endef +define Host/Compile + $(call Build/Compile/HostPyMod,,install --prefix="" --root="$(STAGING_DIR_HOSTPKG)") +endef + +Host/Install:= + +$(eval $(call HostBuild)) + $(eval $(call PyPackage,python-six)) $(eval $(call BuildPackage,python-six))