|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-et_xmlfile
|
|
PKG_VERSION:=1.1.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>, Eneas U de Queiroz <cotequeiroz@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
|
|
PYPI_NAME:=et_xmlfile
|
|
PKG_HASH:=8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-et_xmlfile
|
|
SUBMENU:=Python
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=Low memory library for creating large XML files.
|
|
URL:=https://bitbucket.org/openpyxl/et_xmlfile
|
|
DEPENDS:= \
|
|
+python3-light \
|
|
+python3-lxml
|
|
endef
|
|
|
|
define Package/python3-et_xmlfile/description
|
|
An implementation of lxml.xmlfile for the standard library.
|
|
It is based upon the xmlfile module from lxml with the aim of
|
|
allowing code to be developed that will work with both libraries.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-et_xmlfile))
|
|
$(eval $(call BuildPackage,python3-et_xmlfile))
|
|
$(eval $(call BuildPackage,python3-et_xmlfile-src))
|