aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MOVED1
-rw-r--r--textproc/Makefile1
-rw-r--r--textproc/py-beautifulsoup4/Makefile35
-rw-r--r--textproc/py-beautifulsoup4/distinfo3
-rw-r--r--textproc/py-beautifulsoup4/pkg-descr18
5 files changed, 1 insertions, 57 deletions
diff --git a/MOVED b/MOVED
index c1050eab09e2..2ec272d57c49 100644
--- a/MOVED
+++ b/MOVED
@@ -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
diff --git a/textproc/Makefile b/textproc/Makefile
index 1d7cd6162831..29b3789e8c08 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -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
diff --git a/textproc/py-beautifulsoup4/Makefile b/textproc/py-beautifulsoup4/Makefile
deleted file mode 100644
index 40fea397b052..000000000000
--- a/textproc/py-beautifulsoup4/Makefile
+++ /dev/null
@@ -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>
diff --git a/textproc/py-beautifulsoup4/distinfo b/textproc/py-beautifulsoup4/distinfo
deleted file mode 100644
index 4b9d4864aa6f..000000000000
--- a/textproc/py-beautifulsoup4/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1466692802
-SHA256 (beautifulsoup4-4.4.1.tar.gz) = 87d4013d0625d4789a4f56b8d79a04d5ce6db1152bb65f1d39744f7709a366b4
-SIZE (beautifulsoup4-4.4.1.tar.gz) = 152140
diff --git a/textproc/py-beautifulsoup4/pkg-descr b/textproc/py-beautifulsoup4/pkg-descr
deleted file mode 100644
index f58d77056c4b..000000000000
--- a/textproc/py-beautifulsoup4/pkg-descr
+++ /dev/null
@@ -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/