23 lines
559 B
Bash
23 lines
559 B
Bash
|
# Copyright 2020 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=7
|
||
|
|
||
|
PYTHON_COMPAT=( python3_{6,7,8,9} )
|
||
|
inherit distutils-r1
|
||
|
|
||
|
DESCRIPTION="Allowlist-based HTML cleaner"
|
||
|
HOMEPAGE="https://github.com/matthiask/html-sanitizer/ https://pypi.org/project/html-sanitizer/"
|
||
|
SRC_URI="https://github.com/matthiask/html-sanitizer/archive/"${PV}".tar.gz -> "${PN}"-"${PV}".tar.gz"
|
||
|
|
||
|
LICENSE="BSD-2"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
|
||
|
DEPEND="
|
||
|
>=dev-python/lxml-3.6.1
|
||
|
dev-python/beautifulsoup:4
|
||
|
"
|
||
|
|
||
|
S=""${WORKDIR}"/html-sanitizer-"${PV}""
|