libraries/BeautifulSoup: Updated for version 3.2.0.

Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
Marco Bonetti 2011-03-04 18:34:52 -03:00 committed by Niels Horn
parent 93deb8fb3e
commit 2f37ed8b3d
3 changed files with 11 additions and 12 deletions

View file

@ -2,7 +2,7 @@
# Slackware build script for BeautifulSoup.
#
# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it>
# Copyright 2009-2011 Marco Bonetti <sid77@slackware.it>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,16 +23,14 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=BeautifulSoup
VERSION=3.1.0.1
BUILD=${BUILD:-3}
VERSION=3.2.0
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;;
esac
fi
@ -42,7 +40,7 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
DOCS="PKG-INFO README"
DOCS="PKG-INFO"
set -e

View file

@ -1,10 +1,10 @@
PRGNAM="BeautifulSoup"
VERSION="3.1.0.1"
VERSION="3.2.0"
HOMEPAGE="http://www.crummy.com/software/BeautifulSoup/"
DOWNLOAD="http://www.crummy.com/software/BeautifulSoup/download/3.1.x/BeautifulSoup-3.1.0.1.tar.gz"
MD5SUM="69ec3a99c8a2bf2fc03ff6ccaae58491"
DOWNLOAD="http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-3.2.0.tar.gz"
MD5SUM="ef1e78f7689ea61314f7bddebcfde88c"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Marco Bonetti"
EMAIL="sid77@slackware.it"
APPROVED="Erik Hanson"
APPROVED="Niels Horn"

View file

@ -13,8 +13,9 @@ projects like screen-scraping. Three features make it powerful:
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.
unless the document doesn't specify an encoding and Beautiful Soup
can't autodetect one. Then you just have to specify the original
encoding.
Beautiful Soup parses anything you give it, and does the tree traversal
stuff for you. You can tell it "Find all the links", or "Find all the links