9b4cb16a39
4.7.1: * Fixed a significant performance problem introduced in 4.7.0. * Fixed an incorrectly raised exception when inserting a tag before or after an identical tag. * Beautiful Soup will no longer try to keep track of namespaces that are not defined with a prefix; this can confuse soupselect. * Tried even harder to avoid the deprecation warning originally fixed in 4.6.1.
23 lines
736 B
Makefile
23 lines
736 B
Makefile
# $NetBSD: Makefile,v 1.14 2019/01/08 09:30:44 adam Exp $
|
|
|
|
DISTNAME= beautifulsoup4-4.7.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= https://www.crummy.com/software/BeautifulSoup/bs4/download/${PKGVERSION_NOREV:R}/
|
|
MASTER_SITES+= ${MASTER_SITE_PYPI:=b/beautifulsoup4/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://www.crummy.com/software/BeautifulSoup/
|
|
COMMENT= HTML/XML Parser for Python, version 4
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml
|
|
DEPENDS+= ${PYPKGPREFIX}-soupsieve>=1.2:../../www/py-soupsieve
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${PYTHONBIN} -m unittest discover -s bs4
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|