From 9a79d5f093d2594854c787bf925a3a62975d001f Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Fri, 27 Nov 2015 19:59:43 +0800 Subject: [PATCH 1/3] python-pycparser: add host compile/install This depends on: - python-setuptools host install (#1985) - python-ply host install (#2032) Signed-off-by: Jeffery To --- lang/python-pycparser/Makefile | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lang/python-pycparser/Makefile b/lang/python-pycparser/Makefile index 68dc35ada..dce2225cc 100644 --- a/lang/python-pycparser/Makefile +++ b/lang/python-pycparser/Makefile @@ -16,13 +16,16 @@ PKG_SOURCE_URL:=https://pypi.python.org/packages/source/p/pycparser PKG_MD5SUM:=a2bc8d28c923b4fe2b2c3b4b51a4f935 PKG_BUILD_DEPENDS:=python python-setuptools +HOST_BUILD_DEPENDS:=python/host python-setuptools/host python-ply/host PKG_LICENSE:=BSD-3-Clause 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) +$(call include_mk, python-host.mk) define Package/python-pycparser SECTION:=lang @@ -45,8 +48,17 @@ define PyPackage/python-pycparser/filespec endef define Build/Compile - $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) + $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)") endef +define Host/Compile + $(call Build/Compile/HostPyMod,,install --prefix="" --root="$(STAGING_DIR_HOST)") +endef + +define Host/Install +endef + +$(eval $(call HostBuild)) + $(eval $(call PyPackage,python-pycparser)) $(eval $(call BuildPackage,python-pycparser)) From 3e91a538b1c799eb91257683fb4c237d84d3f64e Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Wed, 2 Dec 2015 18:06:49 +0800 Subject: [PATCH 2/3] python-pycparser: remove unnecessary filespec section Signed-off-by: Jeffery To --- lang/python-pycparser/Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lang/python-pycparser/Makefile b/lang/python-pycparser/Makefile index dce2225cc..80aee699d 100644 --- a/lang/python-pycparser/Makefile +++ b/lang/python-pycparser/Makefile @@ -42,11 +42,6 @@ module designed to be easily integrated into applications that need to parse C source code. endef -define PyPackage/python-pycparser/filespec -+|$(PYTHON_PKG_DIR) --|$(PYTHON_PKG_DIR)/pycparser/ply -endef - define Build/Compile $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)") endef From e2028abfd419b937531ca99ae4ecc72197de7746 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Mon, 7 Dec 2015 17:03:24 +0800 Subject: [PATCH 3/3] python-pycparser: increment PKG_RELEASE Signed-off-by: Jeffery To --- lang/python-pycparser/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/python-pycparser/Makefile b/lang/python-pycparser/Makefile index 80aee699d..fa105cc95 100644 --- a/lang/python-pycparser/Makefile +++ b/lang/python-pycparser/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pycparser PKG_VERSION:=2.14 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://pypi.python.org/packages/source/p/pycparser