1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-10 07:04:03 +00:00

Add py-beautifulsoup448 4.8.2 (copied from py-beautifulsoup)

- Add PORTSCOUT
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-05-08 20:46:51 +00:00
parent 779db799d7
commit c16e9e1bd6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=534422
4 changed files with 42 additions and 0 deletions
www

View File

@ -1404,6 +1404,7 @@
SUBDIR += py-beaker
SUBDIR += py-beautifulsoup
SUBDIR += py-beautifulsoup32
SUBDIR += py-beautifulsoup448
SUBDIR += py-beautifulsoup460
SUBDIR += py-biscuits
SUBDIR += py-bjoern

View File

@ -0,0 +1,26 @@
# Created by: Mike Meyer
# $FreeBSD$
PORTNAME= beautifulsoup4
PORTVERSION= 4.8.2
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
PKGNAMESUFFIX= 48
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= HTML/XML Parser for Python
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}soupsieve>=1.2:www/py-soupsieve@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
PORTSCOUT= ignore:1
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1578105245
SHA256 (beautifulsoup4-4.8.2.tar.gz) = 05fd825eb01c290877657a56df4c6e4c311b3965bda790c613a3d6fb01a5462a
SIZE (beautifulsoup4-4.8.2.tar.gz) = 298650

View File

@ -0,0 +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: https://www.crummy.com/software/BeautifulSoup/