summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Marco Bonetti2011-03-04 22:34:52 +0100
committer Niels Horn2011-03-04 22:34:52 +0100
commit2f37ed8b3dfed9ff4d4907bcecb6377de4285854 (patch)
tree2d8f515c75d35a8ae320de73528b251ad3c09526
parent93deb8fb3e4278adc064b415d82e949472ba1498 (diff)
downloadslackbuilds-2f37ed8b3dfed9ff4d4907bcecb6377de4285854.tar.gz
libraries/BeautifulSoup: Updated for version 3.2.0.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
-rw-r--r--libraries/BeautifulSoup/BeautifulSoup.SlackBuild10
-rw-r--r--libraries/BeautifulSoup/BeautifulSoup.info8
-rw-r--r--libraries/BeautifulSoup/README5
3 files changed, 11 insertions, 12 deletions
diff --git a/libraries/BeautifulSoup/BeautifulSoup.SlackBuild b/libraries/BeautifulSoup/BeautifulSoup.SlackBuild
index 79c312ae19..355375a42b 100644
--- a/libraries/BeautifulSoup/BeautifulSoup.SlackBuild
+++ b/libraries/BeautifulSoup/BeautifulSoup.SlackBuild
@@ -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
diff --git a/libraries/BeautifulSoup/BeautifulSoup.info b/libraries/BeautifulSoup/BeautifulSoup.info
index cabebba4be..8dd66ac866 100644
--- a/libraries/BeautifulSoup/BeautifulSoup.info
+++ b/libraries/BeautifulSoup/BeautifulSoup.info
@@ -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"
diff --git a/libraries/BeautifulSoup/README b/libraries/BeautifulSoup/README
index 002dc2b409..08cac5c366 100644
--- a/libraries/BeautifulSoup/README
+++ b/libraries/BeautifulSoup/README
@@ -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