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_HASH:=ca87b695d3d7864157773a61263e5abb96006e9ff0e021eff90cbe0e1ba18270
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python-package.mk
include ../python3-package.mk
define Package/python-rcssmin/Default
@@ -29,14 +28,6 @@ define Package/python-rcssmin/Default
URL:=http://opensource.perlig.de/rcssmin/
endef
define Package/python-rcssmin
$(call Package/python-rcssmin/Default)
DEPENDS:= \
+PACKAGE_python-rcssmin:python-light \
+PACKAGE_python-rcssmin:python-codecs
VARIANT:=python
endef
define Package/python3-rcssmin
$(call Package/python-rcssmin/Default)
DEPENDS:= \
@@ -44,24 +35,16 @@ define Package/python3-rcssmin
VARIANT:=python3
endef
define Package/python-rcssmin/description
define Package/python3-rcssmin/description
This module is a re-implementation aiming for speed instead of maximum compression,
so it can be used at runtime (rather than during a preprocessing step).
RCSSmin does syntactical compression only (removing spaces, comments and possibly
semicolons). It does not provide semantic compression (like removing empty blocks,
collapsing redundant properties etc).
endef
define Package/python3-rcssmin/description
$(call Package/python-rcssmin/description)
.
(Variant for Python3)
endef
$(eval $(call PyPackage,python-rcssmin))
$(eval $(call BuildPackage,python-rcssmin))
$(eval $(call BuildPackage,python-rcssmin-src))
$(eval $(call Py3Package,python3-rcssmin))
$(eval $(call BuildPackage,python3-rcssmin))
$(eval $(call BuildPackage,python3-rcssmin-src))