2016-04-30 08:37:30 +00:00
|
|
|
#
|
2017-02-13 21:03:14 +00:00
|
|
|
# Copyright (C) 2007-2017 OpenWrt.org
|
2016-04-30 08:37:30 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2019-05-14 20:05:44 +00:00
|
|
|
PKG_NAME:=python-openpyxl
|
2021-09-27 19:09:16 +00:00
|
|
|
PKG_VERSION:=3.0.9
|
2021-09-13 07:05:25 +00:00
|
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
2019-05-14 20:05:44 +00:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
2016-04-30 08:37:30 +00:00
|
|
|
PKG_LICENSE:=MIT
|
2019-05-14 20:05:44 +00:00
|
|
|
PKG_LICENSE_FILES:=LICENCE.rst
|
2016-04-30 08:37:30 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=openpyxl
|
2021-09-27 19:09:16 +00:00
|
|
|
PKG_HASH:=40f568b9829bf9e446acfffce30250ac1fa39035124d55fc024025c41481c90f
|
2019-05-14 20:05:44 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2016-04-30 08:37:30 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2019-05-14 20:05:44 +00:00
|
|
|
include ../python3-package.mk
|
|
|
|
|
2019-11-18 14:28:39 +00:00
|
|
|
define Package/python3-openpyxl
|
2016-04-30 08:37:30 +00:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
TITLE:=A Python library to read/write Excel 2010 xlsx/xlsm files
|
|
|
|
URL:=https://openpyxl.readthedocs.org/
|
2019-11-18 14:28:39 +00:00
|
|
|
DEPENDS:=+python3 +python3-defusedxml +python3-et_xmlfile +python3-jdcal
|
2016-04-30 08:37:30 +00:00
|
|
|
endef
|
|
|
|
|
2019-05-14 20:05:44 +00:00
|
|
|
define Package/python3-openpyxl/description
|
2020-04-01 14:21:16 +00:00
|
|
|
A Python library to read/write Excel 2010 xlsx/xlsm files
|
2019-05-14 20:05:44 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-openpyxl))
|
|
|
|
$(eval $(call BuildPackage,python3-openpyxl))
|
|
|
|
$(eval $(call BuildPackage,python3-openpyxl-src))
|