blob: 4e615ee1bc6fed5eff2e605cd8fa829ebfccc848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $NetBSD: Makefile,v 1.24 2022/01/04 20:55:16 wiz Exp $
DISTNAME= bleach-3.3.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
PKGREVISION= 1
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=b/bleach/}
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= https://github.com/mozilla/bleach
COMMENT= Easy whitelist-based HTML-sanitizing tool
LICENSE= apache-2.0
DEPENDS+= ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six
DEPENDS+= ${PYPKGPREFIX}-webencodings-[0-9]*:../../textproc/py-webencodings
TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner>=2.0:../../devel/py-test-runner
PYTHON_VERSIONED_DEPENDENCIES+= packaging
USE_LANGUAGES= # none
REPLACE_SH+= bleach/_vendor/pip_install_vendor.sh
PYSETUPTESTTARGET= pytest
.include "../../lang/python/versioned_dependencies.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
|