python/BeautifulSoup4: Updated for v 4.9.1, moved from libraries.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Isaac Yu 2020-05-22 21:36:13 +07:00 committed by Willy Sudiarto Raharjo
parent a289f8b6c7
commit 8a62cd4620
4 changed files with 9 additions and 8 deletions

View file

@ -24,7 +24,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=BeautifulSoup4 PRGNAM=BeautifulSoup4
VERSION=${VERSION:-4.9.0} VERSION=${VERSION:-4.9.1}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}

View file

@ -1,8 +1,8 @@
PRGNAM="BeautifulSoup4" PRGNAM="BeautifulSoup4"
VERSION="4.9.0" VERSION="4.9.1"
HOMEPAGE="https://www.crummy.com/software/BeautifulSoup/" HOMEPAGE="https://www.crummy.com/software/BeautifulSoup/"
DOWNLOAD="https://www.crummy.com/software/BeautifulSoup/bs4/download/4.9/beautifulsoup4-4.9.0.tar.gz" DOWNLOAD="https://www.crummy.com/software/BeautifulSoup/bs4/download/4.9/beautifulsoup4-4.9.1.tar.gz"
MD5SUM="54e86045e37b578036f34b0e4927c85f" MD5SUM="57502b5b34ccfd97b180260071f5799a"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
REQUIRES="python-soupsieve" REQUIRES="python-soupsieve"

View file

@ -1,5 +1,6 @@
Beautiful Soup is a Python HTML/XML parser designed for quick turnaround Beautiful Soup is a Python HTML/XML parser designed for quick
projects like screen-scraping. Three features make it powerful: 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 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 parse tree that makes approximately as much sense as your original
@ -14,8 +15,8 @@ create a custom parser for each application.
3. Beautiful Soup automatically converts incoming documents to Unicode 3. Beautiful Soup automatically converts incoming documents to Unicode
and outgoing documents to UTF-8. You don't have to think about and outgoing documents to UTF-8. You don't have to think about
encodings, unless the document doesn't specify an encoding and encodings, unless the document doesn't specify an encoding and
Beautiful Soup can't autodetect one. Then you just have to specify the Beautiful Soup can't autodetect one. Then you just have to specify
original encoding. the original encoding.
Beautiful Soup parses anything you give it, and does the tree traversal 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 stuff for you. You can tell it "Find all the links", or "Find all the