python-libraries: Remove Python 2 variants

The Python 2 variants will be added to the abandoned packages feed.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
Jeffery To
2020-04-01 22:21:16 +08:00
parent c37b15e1c4
commit 658b1b6758
78 changed files with 89 additions and 1501 deletions

View File

@@ -21,7 +21,6 @@ PKG_HASH:=b3f43d496c6daba4493e7c431722aeb7dbc6288f52a6e04e7b6023b0247817e6
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python-package.mk
include ../python3-package.mk
define Package/python-requests/Default
@@ -32,17 +31,6 @@ define Package/python-requests/Default
URL:=https://2.python-requests.org/
endef
define Package/python-requests
$(call Package/python-requests/Default)
DEPENDS:= \
+PACKAGE_python-requests:python \
+PACKAGE_python-requests:python-chardet \
+PACKAGE_python-requests:python-idna \
+PACKAGE_python-requests:python-urllib3 \
+PACKAGE_python-requests:python-certifi
VARIANT:=python
endef
define Package/python3-requests
$(call Package/python-requests/Default)
DEPENDS:= \
@@ -54,20 +42,12 @@ $(call Package/python-requests/Default)
VARIANT:=python3
endef
define Package/python-requests/description
Requests is the only Non-GMO HTTP library for Python, safe for human consumption
endef
define Package/python3-requests/description
$(call Package/python-requests/description)
Requests is the only Non-GMO HTTP library for Python, safe for human consumption
.
(Variant for Python3)
endef
$(eval $(call PyPackage,python-requests))
$(eval $(call BuildPackage,python-requests))
$(eval $(call BuildPackage,python-requests-src))
$(eval $(call Py3Package,python3-requests))
$(eval $(call BuildPackage,python3-requests))
$(eval $(call BuildPackage,python3-requests-src))