diff options
author | Jeffery To <jeffery.to@gmail.com> | 2020-04-01 22:21:16 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2020-04-02 14:57:30 +0800 |
commit | 658b1b67587c4698f6a4c182e9afea7cb5fba2ee (patch) | |
tree | 94f402f8080841dc3a6c7f4a701d7aeb21a6f6b2 /lang/python/openpyxl | |
parent | c37b15e1c49cf27de8f34f43e93a7a5c184be9e0 (diff) |
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>
Diffstat (limited to 'lang/python/openpyxl')
-rw-r--r-- | lang/python/openpyxl/Makefile | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/lang/python/openpyxl/Makefile b/lang/python/openpyxl/Makefile index f0ea9326b..4d292d7f4 100644 --- a/lang/python/openpyxl/Makefile +++ b/lang/python/openpyxl/Makefile @@ -20,7 +20,6 @@ PKG_HASH:=1d2af392cef8c8227bd2ac3ebe3a28b25aba74fd4fa473ce106065f0b73bfe2e include ../pypi.mk include $(INCLUDE_DIR)/package.mk -include ../python-package.mk include ../python3-package.mk define Package/python-openpyxl/Default @@ -31,18 +30,6 @@ define Package/python-openpyxl/Default URL:=https://openpyxl.readthedocs.org/ endef -define Package/python-openpyxl - $(call Package/python-openpyxl/Default) - DEPENDS:= \ - +PACKAGE_python-openpyxl:python \ - +PACKAGE_python-openpyxl:python-defusedxml \ - +PACKAGE_python-openpyxl:python-et_xmlfile \ - +PACKAGE_python-openpyxl:python-jdcal - VARIANT:=python - # The PROVIDES below is deprecated and should be dropped with the next version. - PROVIDES:=openpyxl -endef - define Package/python3-openpyxl $(call Package/python-openpyxl/Default) DEPENDS:= \ @@ -53,20 +40,12 @@ define Package/python3-openpyxl VARIANT:=python3 endef -define Package/python-openpyxl/description - A Python library to read/write Excel 2010 xlsx/xlsm files -endef - define Package/python3-openpyxl/description -$(call Package/python-openpyxl/description) + A Python library to read/write Excel 2010 xlsx/xlsm files . (Variant for Python3) endef -$(eval $(call PyPackage,python-openpyxl)) -$(eval $(call BuildPackage,python-openpyxl)) -$(eval $(call BuildPackage,python-openpyxl-src)) - $(eval $(call Py3Package,python3-openpyxl)) $(eval $(call BuildPackage,python3-openpyxl)) $(eval $(call BuildPackage,python3-openpyxl-src)) |