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

@@ -20,7 +20,6 @@ PKG_LICENSE_FILES:=PKG-INFO
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python-package.mk
include ../python3-package.mk
define Package/flup/Default
@@ -31,14 +30,6 @@ define Package/flup/Default
URL:=https://www.saddi.com/software/flup/
endef
define Package/python-flup
$(call Package/flup/Default)
DEPENDS+= \
+PACKAGE_python-flup:python-light \
+PACKAGE_python-flup:python-logging
VARIANT:=python
endef
define Package/python3-flup
$(call Package/flup/Default)
DEPENDS+= \
@@ -47,20 +38,12 @@ $(call Package/flup/Default)
VARIANT:=python3
endef
define Package/python-flup/description
Random assortment of WSGI servers.
endef
define Package/python3-flup/description
$(call Package/python-flup/description)
Random assortment of WSGI servers.
.
(Variant for Python3)
endef
$(eval $(call PyPackage,python-flup))
$(eval $(call BuildPackage,python-flup))
$(eval $(call BuildPackage,python-flup-src))
$(eval $(call Py3Package,python3-flup))
$(eval $(call BuildPackage,python3-flup))
$(eval $(call BuildPackage,python3-flup-src))