- Remove duplicate port

Reviewed by:	junovitch (mentor)
Approved by:	junovitch (mentor)
Differential Revision:	D6972
This commit is contained in:
Carlos J. Puga Medina 2016-06-26 18:53:12 +00:00
parent b9d027a776
commit e854af1ba8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=417605
5 changed files with 1 additions and 57 deletions

1
MOVED
View file

@ -8372,3 +8372,4 @@ devel/p5-ReadLine-Gnu|devel/p5-Term-ReadLine-Gnu|2016-06-21|Rename to match upst
devel/p5-ReadLine-TTYtter|devel/p5-Term-ReadLine-TTYtter|2016-06-21|Rename to match upstream
graphics/linux-c6-dri-compat|graphics/linux-c6-dri|2016-06-22|Obsolete
security/py-letsencrypt|security/py-certbot|2016-06-23|The LetsEncrypt project has renamed the utility
textproc/py-beautifulsoup4|www/py-beautifulsoup|2016-06-26|Duplicate port deleted

View file

@ -1219,7 +1219,6 @@
SUBDIR += py-acora
SUBDIR += py-alabaster
SUBDIR += py-asv
SUBDIR += py-beautifulsoup4
SUBDIR += py-bugzillatools
SUBDIR += py-chardet
SUBDIR += py-cloud_sptheme

View file

@ -1,35 +0,0 @@
# Created by: Carlos J. Puga Medina <cpm@FreeBSD.org>
# $FreeBSD$
PORTNAME= beautifulsoup4
PORTVERSION= 4.4.1
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= cpm@FreeBSD.org
COMMENT= Python screen-scraping library
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING.txt
OPTIONS_DEFINE= DOCS
DOCS_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx
DOCS_PORTDOCS= *
DOCS_VARS= PYDISTUTILS_BUILD_TARGET=build_ext
USES= python:3
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
post-build-DOCS-on:
(cd ${WRKSRC}/doc ; ${MAKE} html)
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/doc/build/html && \
${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} "! -name .buildinfo -and ! -name objects.inv")
.include <bsd.port.mk>

View file

@ -1,3 +0,0 @@
TIMESTAMP = 1466692802
SHA256 (beautifulsoup4-4.4.1.tar.gz) = 87d4013d0625d4789a4f56b8d79a04d5ce6db1152bb65f1d39744f7709a366b4
SIZE (beautifulsoup4-4.4.1.tar.gz) = 152140

View file

@ -1,18 +0,0 @@
Beautiful Soup is a Python library designed for quick turnaround projects like
screen-scraping.
Three features make it powerful:
1. 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. It doesn't take much code to write
an application.
2. 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 detect one.
Then you just have to specify the original encoding.
3. Beautiful Soup sits on top of popular Python parsers like lxml and html5lib,
allowing you to try out different parsing strategies or trade speed for
flexibility.
WWW: https://www.crummy.com/software/BeautifulSoup/