generated from gaoyang3513/SDK_RK3288
[Mod] First commit
This commit is contained in:
10
package/python-lxml/Config.in
Normal file
10
package/python-lxml/Config.in
Normal file
@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_PYTHON_LXML
|
||||
bool "python-lxml"
|
||||
select BR2_PACKAGE_LIBXML2
|
||||
select BR2_PACKAGE_LIBXSLT
|
||||
select BR2_PACKAGE_PYTHON3_ZLIB
|
||||
help
|
||||
The lxml XML toolkit is a Pythonic binding for the C libraries
|
||||
libxml2 and libxslt.
|
||||
|
||||
http://lxml.de/
|
||||
7
package/python-lxml/Config.in.host
Normal file
7
package/python-lxml/Config.in.host
Normal file
@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_HOST_PYTHON_LXML
|
||||
bool "host python-lxml"
|
||||
help
|
||||
The lxml XML toolkit is a Pythonic binding for the C libraries
|
||||
libxml2 and libxslt.
|
||||
|
||||
http://lxml.de/
|
||||
6
package/python-lxml/python-lxml.hash
Normal file
6
package/python-lxml/python-lxml.hash
Normal file
@ -0,0 +1,6 @@
|
||||
# Locally computed
|
||||
sha256 fe749b052bb7233fe5d072fcb549221a8cb1a16725c47c37e42b0b9cb3ff2c3f lxml-4.9.1.tar.gz
|
||||
sha256 41d49dd406aa0e1548a6d5f21a30d6bf638b3cd96eb7289dd348d83ed2e40392 LICENSES.txt
|
||||
sha256 69edb445c1335a8312d4c09271847e9956d84f0d9f724d125340cc3fad767b2a doc/licenses/BSD.txt
|
||||
sha256 0497ae8138811ef4466ede653bab7a59feb3d3c14f9ed50fc33a00aeb5bec32e doc/licenses/elementtree.txt
|
||||
sha256 56c5b13f28b78958890c36e3249c34c169041e42ebcfdce8080f3324ba2bf4de src/lxml/isoschematron/resources/rng/iso-schematron.rng
|
||||
38
package/python-lxml/python-lxml.mk
Normal file
38
package/python-lxml/python-lxml.mk
Normal file
@ -0,0 +1,38 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-lxml
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_LXML_VERSION = 4.9.1
|
||||
PYTHON_LXML_SITE = https://files.pythonhosted.org/packages/70/bb/7a2c7b4f8f434aa1ee801704bf08f1e53d7b5feba3d5313ab17003477808
|
||||
PYTHON_LXML_SOURCE = lxml-$(PYTHON_LXML_VERSION).tar.gz
|
||||
|
||||
# Not including the GPL, because it is used only for the test scripts.
|
||||
PYTHON_LXML_LICENSE = BSD-3-Clause, Others
|
||||
PYTHON_LXML_LICENSE_FILES = \
|
||||
LICENSES.txt \
|
||||
doc/licenses/BSD.txt \
|
||||
doc/licenses/elementtree.txt \
|
||||
src/lxml/isoschematron/resources/rng/iso-schematron.rng
|
||||
PYTHON_LXML_CPE_ID_VENDOR = lxml
|
||||
PYTHON_LXML_CPE_ID_PRODUCT = lxml
|
||||
|
||||
# python-lxml can use either setuptools, or distutils as a fallback.
|
||||
# So, we use setuptools.
|
||||
PYTHON_LXML_SETUP_TYPE = setuptools
|
||||
|
||||
PYTHON_LXML_DEPENDENCIES = libxml2 libxslt zlib
|
||||
HOST_PYTHON_LXML_DEPENDENCIES = host-libxml2 host-libxslt host-zlib
|
||||
|
||||
# python-lxml needs these scripts in order to properly detect libxml2 and
|
||||
# libxslt compiler and linker flags
|
||||
PYTHON_LXML_BUILD_OPTS = \
|
||||
--xslt-config=$(STAGING_DIR)/usr/bin/xslt-config \
|
||||
--xml2-config=$(STAGING_DIR)/usr/bin/xml2-config
|
||||
HOST_PYTHON_LXML_BUILD_OPTS = \
|
||||
--xslt-config=$(HOST_DIR)/bin/xslt-config \
|
||||
--xml2-config=$(HOST_DIR)/bin/xml2-config
|
||||
|
||||
$(eval $(python-package))
|
||||
$(eval $(host-python-package))
|
||||
Reference in New Issue
Block a user