aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2021-06-20 20:45:23 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2021-06-20 20:45:23 +0000
commit715ddce37a41bdf4e52ab7426997beb3f5a8ca64 (patch)
treefb1979b183cd9b1327f77977f5a72930dda8041e
parent8420be871a7356546afe35d410226d7710f96860 (diff)
downloadports-715ddce37a41bdf4e52ab7426997beb3f5a8ca64.tar.gz
ports-715ddce37a41bdf4e52ab7426997beb3f5a8ca64.zip
www/py-beautifulsoup448: Remove obsoleted port
Use www/py-beautifulsoup instead.
-rw-r--r--MOVED1
-rw-r--r--www/Makefile1
-rw-r--r--www/py-beautifulsoup448/Makefile25
-rw-r--r--www/py-beautifulsoup448/distinfo3
-rw-r--r--www/py-beautifulsoup448/pkg-descr12
5 files changed, 1 insertions, 41 deletions
diff --git a/MOVED b/MOVED
index 8bc24eb3ba24..5632d8c16cef 100644
--- a/MOVED
+++ b/MOVED
@@ -16413,3 +16413,4 @@ devel/powerpc64-xtoolchain-gcc|devel/freebsd-gcc6@powerpc64|2021-06-18|Replaced
devel/sparc64-gcc|devel/freebsd-gcc6@sparc64|2021-06-18|Replaced by a flavor
devel/sparc64-xtoolchain-gcc|devel/freebsd-gcc6@sparc64|2021-06-18|Replaced by a flavor
devel/riscv64-xtoolchain-gcc|devel/freebsd-gcc9@riscv64|2021-06-19|Replaced by a flavor
+www/py-beautifulsoup448|www/py-beautifulsoup|2021-06-20|Remove obsoleted port. Use www/py-beautifulsoup instead
diff --git a/www/Makefile b/www/Makefile
index 89a48b3a73df..2ce53427252e 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -1422,7 +1422,6 @@
SUBDIR += py-azure-storage
SUBDIR += py-beaker
SUBDIR += py-beautifulsoup
- SUBDIR += py-beautifulsoup448
SUBDIR += py-betamax
SUBDIR += py-biscuits
SUBDIR += py-bjoern
diff --git a/www/py-beautifulsoup448/Makefile b/www/py-beautifulsoup448/Makefile
deleted file mode 100644
index e8d678b7bb8d..000000000000
--- a/www/py-beautifulsoup448/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-# Created by: Mike Meyer
-
-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:3.6+
-USE_PYTHON= autoplist concurrent distutils
-
-NO_ARCH= yes
-
-PORTSCOUT= ignore:1
-
-.include <bsd.port.mk>
diff --git a/www/py-beautifulsoup448/distinfo b/www/py-beautifulsoup448/distinfo
deleted file mode 100644
index 6dc7d776c50c..000000000000
--- a/www/py-beautifulsoup448/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1578105245
-SHA256 (beautifulsoup4-4.8.2.tar.gz) = 05fd825eb01c290877657a56df4c6e4c311b3965bda790c613a3d6fb01a5462a
-SIZE (beautifulsoup4-4.8.2.tar.gz) = 298650
diff --git a/www/py-beautifulsoup448/pkg-descr b/www/py-beautifulsoup448/pkg-descr
deleted file mode 100644
index 8d41275bc801..000000000000
--- a/www/py-beautifulsoup448/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-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/