Commit 0ef25ae2 authored by Clayton Shotwell's avatar Clayton Shotwell Committed by Peter Korsgaard
Browse files

python-pyxml: new package



It always uses its own copy of pyexpat, but we can at least make it use
buildroot's expat.so.

[Peter: select expat]
Signed-off-by: default avatarClayton Shotwell <clshotwe@rockwellcollins.com>
Signed-off-by: default avatarMatthew Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: default avatarYegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent fba6a491
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -629,6 +629,7 @@ menu "external python modules"
	source "package/python-pysnmp-mibs/Config.in"
	source "package/python-pyusb/Config.in"
	source "package/python-pyxb/Config.in"
	source "package/python-pyxml/Config.in"
	source "package/python-pyzmq/Config.in"
	source "package/python-requests/Config.in"
	source "package/python-rtslib-fb/Config.in"
+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_PYXML
	bool "python-pyxml"
	depends on BR2_PACKAGE_PYTHON
	select BR2_PACKAGE_EXPAT
	help
	  This is the Python XML package. The distribution contains a
	  validating XML parser, an implementation of the SAX and DOM
	  programming interfaces, an interface to the Expat parser (and the
	  Expat parser itself), and a C helper module that can speed up
	  xmllib.py by a factor of 5. There's even documentation!

	  http://pyxml.sourceforge.net/topics/index.html
+2 −0
Original line number Diff line number Diff line
# Locally computed
sha256 9fab66f9584fb8e67aebd8745a5c97bf1c5a2e2e461adf68862bcec64e448c13  PyXML-0.8.4.tar.gz
+17 −0
Original line number Diff line number Diff line
################################################################################
#
# python-pyxml
#
################################################################################

PYTHON_PYXML_VERSION = 0.8.4
PYTHON_PYXML_SOURCE = PyXML-$(PYTHON_PYXML_VERSION).tar.gz
PYTHON_PYXML_SITE = http://downloads.sourceforge.net/project/pyxml/pyxml/0.8.4/
PYTHON_PYXML_LICENSE = BSD-3c
PYTHON_PYXML_LICENSE_FILES = LICENSE
PYTHON_PYXML_SETUP_TYPE = distutils
PYTHON_PYXML_DEPENDENCIES = expat
PYTHON_PYXML_BUILD_OPTS = --with-libexpat=$(STAGING_DIR)/usr
PYTHON_PYXML_INSTALL_TARGET_OPTS = --with-libexpat=$(STAGING_DIR)/usr

$(eval $(python-package))