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

@@ -18,7 +18,6 @@ PKG_LICENSE_FILES:=LICENSE
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python-package.mk
include ../python3-package.mk
define Package/django-webpack-loader/Default
@@ -29,19 +28,6 @@ define Package/django-webpack-loader/Default
URL:=https://github.com/owais/django-webpack-loader
endef
define Package/python-django-webpack-loader
$(call Package/django-webpack-loader/Default)
DEPENDS:= \
+PACKAGE_python-django-webpack-loader:python \
python-django1
VARIANT:=python
MDEPENDS:=python-django1
endef
define Package/python-django-webpack-loader/description
Use webpack to generate your static bundles without djangos staticfiles or opaque wrappers.
endef
define Package/python3-django-webpack-loader
$(call Package/django-webpack-loader/Default)
DEPENDS:= \
@@ -51,15 +37,11 @@ $(call Package/django-webpack-loader/Default)
endef
define Package/python3-django-webpack-loader/description
$(call Package/python-django-webpack-loader/description)
Use webpack to generate your static bundles without djangos staticfiles or opaque wrappers.
.
(Variant for Python3)
endef
$(eval $(call PyPackage,python-django-webpack-loader))
$(eval $(call BuildPackage,python-django-webpack-loader))
$(eval $(call BuildPackage,python-django-webpack-loader-src))
$(eval $(call Py3Package,python3-django-webpack-loader))
$(eval $(call BuildPackage,python3-django-webpack-loader))
$(eval $(call BuildPackage,python3-django-webpack-loader-src))