From b29881b853105481620dc18f43b0f50138ca937a Mon Sep 17 00:00:00 2001 From: Eneas U de Queiroz Date: Tue, 4 Dec 2018 15:45:33 -0200 Subject: [PATCH] python-requests: use PyPackage to build Updated Makefile to use PyPackage, added option to build source package. Signed-off-by: Eneas U de Queiroz --- lang/python/python-requests/Makefile | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/lang/python/python-requests/Makefile b/lang/python/python-requests/Makefile index 0ce0e4d63..9723f60f0 100644 --- a/lang/python/python-requests/Makefile +++ b/lang/python/python-requests/Makefile @@ -30,21 +30,13 @@ define Package/python-requests TITLE:=HTTP library for Python URL:=http://python-requests.org/ DEPENDS:=+python +chardet +python-idna +python-urllib3 +python-certifi + VARIANT:=python endef define Package/python-requests/description Requests is the only Non-GMO HTTP library for Python, safe for human consumption. endef -define Build/Compile - $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) -endef - -define Package/python-requests/install - $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR) - $(CP) \ - $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \ - $(1)$(PYTHON_PKG_DIR) -endef - +$(eval $(call PyPackage,python-requests)) $(eval $(call BuildPackage,python-requests)) +$(eval $(call BuildPackage,python-requests-src))