summaryrefslogtreecommitdiff
path: root/www/py-beautifulsoup
AgeCommit message (Collapse)AuthorFilesLines
2017-01-01Add python-3.6 to incompatible versions.wiz1-2/+2
2016-07-09Remove python33: adapt all packages that refer to it.wiz1-2/+2
2015-12-05Extend PYTHON_VERSIONS_INCOMPATIBLE to 35adam1-2/+2
2015-11-04Add SHA512 digests for distfiles for www categoryagc1-1/+2
Problems found locating distfiles: Package haskell-cgi: missing distfile haskell-cgi-20001206.tar.gz Package nginx: missing distfile array-var-nginx-module-0.04.tar.gz Package nginx: missing distfile encrypted-session-nginx-module-0.04.tar.gz Package nginx: missing distfile headers-more-nginx-module-0.261.tar.gz Package nginx: missing distfile nginx_http_push_module-0.692.tar.gz Package nginx: missing distfile set-misc-nginx-module-0.29.tar.gz Package nginx-devel: missing distfile echo-nginx-module-0.58.tar.gz Package nginx-devel: missing distfile form-input-nginx-module-0.11.tar.gz Package nginx-devel: missing distfile lua-nginx-module-0.9.16.tar.gz Package nginx-devel: missing distfile nginx_http_push_module-0.692.tar.gz Package nginx-devel: missing distfile set-misc-nginx-module-0.29.tar.gz Package php-owncloud: missing distfile owncloud-8.2.0.tar.bz2 Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2014-05-09Mark packages that are not ready for python-3.3 also not ready for 3.4,wiz1-2/+2
until proven otherwise.
2014-01-25Mark this is as major version 3 of the modulewiz2-3/+6
(compare py-beautifulsoup4)
2012-10-28Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-04-22Update to 3.2.1, bugfix release.wiz2-7/+7
2012-04-08All supported python versions in pkgsrc support eggs, so removewiz1-2/+2
${PLIST.eggfile} from PLISTs and support code from lang/python.
2012-01-27tabify.obache1-3/+3
2012-01-27patch-aa had be removed at last update.obache1-2/+1
2011-11-29Update to version 3.2.0. Not much in the way of release notes except this:darcy3-22/+8
Beautiful Soup 3.2.0 features very little new functionality, but its version number leapfrogs the defunct 3.1 series, preventing confusion about which version is the latest. However, the web site also says this about our previous version: Beautiful Soup version 3.1.0.1 was released January 6, 2009. It won't work very well — I consider it a failed experiment.
2011-10-15* LICENSE=modified-bsdobache2-5/+6
* regist egg-info Bump PKGREVISION.
2009-10-19Add missing patches for beautifulsoup-3.1.0.1joerg1-0/+13
2009-10-19Update to BeautifulSoup 3.1.0.1:joerg2-7/+8
- various changes to prepare for Python 3
2009-01-15Supports destdir installation.joerg1-1/+3
2008-12-10Remove homepage URL from DESCR.wiz1-5/+3
2008-12-10Fix PKGNAME.wiz1-3/+3
2008-09-05Add BeautifullSoup package.darcy4-0/+40
Beautiful Soup is a Python HTML/XML parser designed for quick turnaround projects like screen-scraping. Three features make it powerful: 1. Beautiful Soup won't choke if you give it bad markup. It yields a parse tree that makes approximately as much sense as your original document. This is usually good enough to collect the data you need and run away. 2. Beautiful Soup provides a few simple methods and Pythonic idioms for navigating, searching, and modifying a parse tree: a toolkit for dissecting a document and extracting what you need. You don't have to create a custom parser for each application. 3. Beautiful Soup automatically converts incoming documents to Unicode and outgoing documents to UTF-8. You don't have to think about encodings, unless the document doesn't specify an encoding and Beautiful Soup can't autodetect one. Then you just have to specify the original encoding.