#
|
|
# Copyright (C) 2015-2018 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-cffi
|
|
PKG_VERSION:=1.12.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=cffi-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/c/cffi
|
|
PKG_HASH:=041c81822e9f84b1d9c401182e174996f0bae9991f33725d059b771744290774
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-cffi-$(PKG_VERSION)
|
|
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>, Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python-package.mk
|
|
include ../python3-package.mk
|
|
|
|
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
|
|
|
|
define Package/python-cffi/Default
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=C Foreign Function Interface
|
|
URL:=https://cffi.readthedocs.org/
|
|
DEPENDS:=+libffi
|
|
endef
|
|
|
|
define Package/python-cffi
|
|
$(call Package/python-cffi/Default)
|
|
DEPENDS+= \
|
|
+PACKAGE_python-cffi:python-light \
|
|
+PACKAGE_python-cffi:python-pycparser
|
|
VARIANT:=python
|
|
endef
|
|
|
|
define Package/python3-cffi
|
|
$(call Package/python-cffi/Default)
|
|
DEPENDS+= \
|
|
+PACKAGE_python3-cffi:python3-light \
|
|
+PACKAGE_python3-cffi:python3-pycparser
|
|
VARIANT:=python3
|
|
endef
|
|
|
|
define Package/python-cffi/description
|
|
Foreign Function Interface for Python calling C code.
|
|
endef
|
|
|
|
define Package/python3-cffi/description
|
|
$(call Package/python-cffi/description)
|
|
.
|
|
(Variant for Python3)
|
|
endef
|
|
|
|
$(eval $(call PyPackage,python-cffi))
|
|
$(eval $(call BuildPackage,python-cffi))
|
|
$(eval $(call BuildPackage,python-cffi-src))
|
|
|
|
$(eval $(call Py3Package,python3-cffi))
|
|
$(eval $(call BuildPackage,python3-cffi))
|
|
$(eval $(call BuildPackage,python3-cffi-src))
|