You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:=python-et_xmlfile
  7. PKG_VERSION:=1.1.0
  8. PKG_RELEASE:=1
  9. PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>, Eneas U de Queiroz <cotequeiroz@gmail.com>
  10. PKG_LICENSE:=MIT
  11. PYPI_NAME:=et_xmlfile
  12. PKG_HASH:=8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c
  13. include ../pypi.mk
  14. include $(INCLUDE_DIR)/package.mk
  15. include ../python3-package.mk
  16. define Package/python3-et_xmlfile
  17. SUBMENU:=Python
  18. SECTION:=lang
  19. CATEGORY:=Languages
  20. TITLE:=Low memory library for creating large XML files.
  21. URL:=https://bitbucket.org/openpyxl/et_xmlfile
  22. DEPENDS:= \
  23. +python3-light \
  24. +python3-lxml
  25. endef
  26. define Package/python3-et_xmlfile/description
  27. An implementation of lxml.xmlfile for the standard library.
  28. It is based upon the xmlfile module from lxml with the aim of
  29. allowing code to be developed that will work with both libraries.
  30. endef
  31. $(eval $(call Py3Package,python3-et_xmlfile))
  32. $(eval $(call BuildPackage,python3-et_xmlfile))
  33. $(eval $(call BuildPackage,python3-et_xmlfile-src))