From: Alexandru Ardelean Date: Fri, 29 Dec 2017 19:04:54 +0000 (+0200) Subject: python-cffi: fix host build/installation X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=77ee36c7c812e9c1bea62744ca12aa32b57d7f60;p=openwrt-packages.git python-cffi: fix host build/installation Fixes: https://github.com/openwrt/packages/issues/5318 Not sure how this worked before. The host python-cffi needs a libffi installed on the host side. Signed-off-by: Alexandru Ardelean --- diff --git a/lang/python/python-cffi/Makefile b/lang/python/python-cffi/Makefile index 222c0492e..fd49f2e99 100644 --- a/lang/python/python-cffi/Makefile +++ b/lang/python/python-cffi/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-cffi PKG_VERSION:=1.11.2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=cffi-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://pypi.python.org/packages/c9/70/89b68b6600d479034276fed316e14b9107d50a62f5627da37fafe083fde3 @@ -21,6 +21,8 @@ PKG_LICENSE:=MIT PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Jeffery To , Alexandru Ardelean +PKG_BUILD_DEPENDS:=libffi/host + HOST_PYTHON_PACKAGE_BUILD_DEPENDS:="cffi==$(PKG_VERSION)" HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:="cffi==$(PKG_VERSION)"