From 77ee36c7c812e9c1bea62744ca12aa32b57d7f60 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Fri, 29 Dec 2017 21:04:54 +0200 Subject: [PATCH] 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 --- lang/python/python-cffi/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lang/python/python-cffi/Makefile b/lang/python/python-cffi/Makefile index 222c0492ee..fd49f2e998 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)" -- 2.30.2