blob: 3ca949f8ace665cd0e8550d512c7a37b06a303a6 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_REQ_USE="sqlite?"
DISTUTILS_USE_PEP517=hatchling
DISTUTILS_SINGLE_IMPL=1
inherit bash-completion-r1 distutils-r1 multiprocessing optfeature
MY_P=LinkChecker-${PV}
DESCRIPTION="Check websites for broken links"
HOMEPAGE="https://github.com/linkchecker/linkchecker"
SRC_URI="https://github.com/linkchecker/linkchecker/releases/download/v${PV}/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE="sqlite"
RDEPEND="
$(python_gen_cond_dep '
dev-python/beautifulsoup4[${PYTHON_USEDEP}]
dev-python/dnspython[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
')
"
BDEPEND="
test? (
$(python_gen_cond_dep '
app-text/pdfminer[${PYTHON_USEDEP}]
dev-python/parameterized[${PYTHON_USEDEP}]
dev-python/pyftpdlib[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/pytest-xdist[${PYTHON_USEDEP}]
')
sys-devel/gettext
)
"
distutils_enable_tests pytest
PATCHES=( "${FILESDIR}/${PN}-9.3-bash-completion.patch" )
DOCS=(
doc/changelog.txt
doc/upgrading.txt
)
python_test() {
# Multiple warnings about unclosed test sockets with epytest
pytest -vra -n "$(makeopts_jobs)" || die
}
python_install_all() {
distutils-r1_python_install_all
newbashcomp config/linkchecker-completion ${PN}
}
pkg_postinst() {
optfeature "Virus scanning" app-antivirus/clamav
optfeature "Check links in PDF files" app-text/pdfminer
optfeature "bash-completion support" dev-python/argcomplete
}
|