diff options
author | pav <pav@FreeBSD.org> | 2005-07-17 05:51:18 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-07-17 05:51:18 +0800 |
commit | a5e5df966fd6821cd692a2af28004afe92abc959 (patch) | |
tree | c8d3de5106c55e1f3f3062d03458193ba352765d /www/py-beautifulsoup30 | |
parent | 9c9b8dffbe050fb7ce818632eaef0c7536b2c5a5 (diff) | |
download | freebsd-ports-gnome-a5e5df966fd6821cd692a2af28004afe92abc959.tar.gz freebsd-ports-gnome-a5e5df966fd6821cd692a2af28004afe92abc959.tar.zst freebsd-ports-gnome-a5e5df966fd6821cd692a2af28004afe92abc959.zip |
Beautiful Soup parses arbitrarily invalid XML- or HTML-like substance
into a tree representation. It provides methods and Pythonic idioms
that make it easy to search and modify the tree.
PR: ports/83531
Submitted by: Mike Meyer <mwm@mired.org>
Diffstat (limited to 'www/py-beautifulsoup30')
-rw-r--r-- | www/py-beautifulsoup30/Makefile | 23 | ||||
-rw-r--r-- | www/py-beautifulsoup30/distinfo | 2 | ||||
-rw-r--r-- | www/py-beautifulsoup30/pkg-descr | 12 | ||||
-rw-r--r-- | www/py-beautifulsoup30/pkg-plist | 6 |
4 files changed, 43 insertions, 0 deletions
diff --git a/www/py-beautifulsoup30/Makefile b/www/py-beautifulsoup30/Makefile new file mode 100644 index 000000000000..95ba52d31b54 --- /dev/null +++ b/www/py-beautifulsoup30/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: beautifulsoup +# Date created: 15 July 2005 +# Whom: Mike Meyer <mwm@mired.org> +# +# $FreeBSD$ +# + +PORTNAME= beautifulsoup +PORTVERSION= 2.1.0 +CATEGORIES= www python +MASTER_SITES= http://www.crummy.com/software/BeautifulSoup/download/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= BeautifulSoup + +MAINTAINER= mwm@mired.org +COMMENT= HTML/XML Parser for Python + +WRKSRC= ${WRKDIR}/${DISTNAME}-${PORTVERSION} + +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +.include <bsd.port.mk> diff --git a/www/py-beautifulsoup30/distinfo b/www/py-beautifulsoup30/distinfo new file mode 100644 index 000000000000..337b3c03a57d --- /dev/null +++ b/www/py-beautifulsoup30/distinfo @@ -0,0 +1,2 @@ +MD5 (BeautifulSoup.tar.gz) = 06cca36d76601fa43ecfaf18fcf11985 +SIZE (BeautifulSoup.tar.gz) = 15657 diff --git a/www/py-beautifulsoup30/pkg-descr b/www/py-beautifulsoup30/pkg-descr new file mode 100644 index 000000000000..eb0ab5affd47 --- /dev/null +++ b/www/py-beautifulsoup30/pkg-descr @@ -0,0 +1,12 @@ +Beautiful Soup parses arbitrarily invalid XML- or HTML-like substance +into a tree representation. It provides methods and Pythonic idioms +that make it easy to search and modify the tree. + +A well-formed XML/HTML document will yield a well-formed data +structure. An ill-formed XML/HTML document will yield a +correspondingly ill-formed data structure. If your document is only +locally well-formed, you can use this library to find and process the +well-formed part of it. The BeautifulSoup class has heuristics for +obtaining a sensible parse tree in the face of common HTML errors. + +WWW: http://www.crummy.com/software/BeautifulSoup/ diff --git a/www/py-beautifulsoup30/pkg-plist b/www/py-beautifulsoup30/pkg-plist new file mode 100644 index 000000000000..e8e0f66c96b0 --- /dev/null +++ b/www/py-beautifulsoup30/pkg-plist @@ -0,0 +1,6 @@ +lib/%%PYTHON_VERSION%%/site-packages/BeautifulSoup.py +lib/%%PYTHON_VERSION%%/site-packages/BeautifulSoup.pyc +lib/%%PYTHON_VERSION%%/site-packages/BeautifulSoup.pyo +lib/%%PYTHON_VERSION%%/site-packages/BeautifulSoupTests.py +lib/%%PYTHON_VERSION%%/site-packages/BeautifulSoupTests.pyc +lib/%%PYTHON_VERSION%%/site-packages/BeautifulSoupTests.pyo |