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