mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 17:02:21 +08:00

Fixes: CVE-2021-43818 https://nvd.nist.gov/vuln/detail/CVE-2021-43818 Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2017 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-lxml
|
|
PKG_VERSION:=4.6.5
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=lxml
|
|
PKG_HASH:=6e84edecc3a82f90d44ddee2ee2a2630d4994b8471816e226d2b771cda7ac4ca
|
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=LICENSES.txt
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
PKG_CPE_ID:=cpe:/a:lxml:lxml
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-lxml
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=Pythonic XML processing library
|
|
URL:=https://lxml.de
|
|
DEPENDS:=+libxml2 +libxslt +libexslt +python3-light
|
|
endef
|
|
|
|
define Package/python3-lxml/description
|
|
lxml is a Pythonic, mature binding for the libxml2 and libxslt
|
|
libraries. It provides safe and convenient access to these libraries
|
|
using the ElementTree API.
|
|
|
|
It extends the ElementTree API significantly to offer support for
|
|
XPath, RelaxNG, XML Schema, XSLT, C14N and much more.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-lxml))
|
|
$(eval $(call BuildPackage,python3-lxml))
|
|
$(eval $(call BuildPackage,python3-lxml-src))
|