diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2015-12-19 21:42:53 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-01-01 21:07:07 +0100 |
commit | af45a4f46ccc5709e3ff391b417b6768cff5117e (patch) | |
tree | 8d4c39cf2dcdc2bd0669e7a0b76a05c769c0b281 /package/python-pyxml | |
parent | ee2f4138004a8fb7493039503dbedd8a73d6475d (diff) | |
download | buildroot-af45a4f46ccc5709e3ff391b417b6768cff5117e.tar.gz buildroot-af45a4f46ccc5709e3ff391b417b6768cff5117e.zip |
python-pyxml: remove obsolete package
PyXML is bitrotten and obsolete. You'll find the functionality it
previously provided is now included in the Python standard library.
So no need to keep this package in Buildroot anymore.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/python-pyxml')
-rw-r--r-- | package/python-pyxml/Config.in | 12 | ||||
-rw-r--r-- | package/python-pyxml/python-pyxml.hash | 2 | ||||
-rw-r--r-- | package/python-pyxml/python-pyxml.mk | 17 |
3 files changed, 0 insertions, 31 deletions
diff --git a/package/python-pyxml/Config.in b/package/python-pyxml/Config.in deleted file mode 100644 index 82316bab2f..0000000000 --- a/package/python-pyxml/Config.in +++ /dev/null @@ -1,12 +0,0 @@ -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 diff --git a/package/python-pyxml/python-pyxml.hash b/package/python-pyxml/python-pyxml.hash deleted file mode 100644 index df98c4655a..0000000000 --- a/package/python-pyxml/python-pyxml.hash +++ /dev/null @@ -1,2 +0,0 @@ -# Locally computed -sha256 9fab66f9584fb8e67aebd8745a5c97bf1c5a2e2e461adf68862bcec64e448c13 PyXML-0.8.4.tar.gz diff --git a/package/python-pyxml/python-pyxml.mk b/package/python-pyxml/python-pyxml.mk deleted file mode 100644 index 7ccce8e173..0000000000 --- a/package/python-pyxml/python-pyxml.mk +++ /dev/null @@ -1,17 +0,0 @@ -################################################################################ -# -# 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/$(PYTHON_PYXML_VERSION) -PYTHON_PYXML_LICENSE = BSD-3c -PYTHON_PYXML_LICENSE_FILES = LICENCE -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)) |