Index: head/www/py-beautifulsoup32/Makefile =================================================================== --- head/www/py-beautifulsoup32/Makefile (revision 523406) +++ head/www/py-beautifulsoup32/Makefile (revision 523407) @@ -1,21 +1,24 @@ # Created by: Mike Meyer # $FreeBSD$ PORTNAME= beautifulsoup PORTVERSION= 3.2.1 PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= http://www.crummy.com/software/BeautifulSoup/bs3/download//3.x/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMESUFFIX= 32 DISTNAME= BeautifulSoup-${PORTVERSION} MAINTAINER= mwm@mired.org COMMENT= HTML/XML Parser for Python +LICENSE= BSD3CLAUSE + USES= python:2.7 USE_PYTHON= autoplist distutils +NO_ARCH= yes CONFLICTS= py[0-9]*-beautifulsoup-3.0.* .include Index: head/www/py-beautifulsoup32/pkg-descr =================================================================== --- head/www/py-beautifulsoup32/pkg-descr (revision 523406) +++ head/www/py-beautifulsoup32/pkg-descr (revision 523407) @@ -1,12 +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/ +WWW: https://www.crummy.com/software/BeautifulSoup/