blob: 02f12d0e670ce26e57f9d807c162382fce94863d (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
# Tests fail with pypy3 as of PyPy 7.3.9 / Python 3.9.12
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1 optfeature
DESCRIPTION="Command-line File Verify - versatile file checksum creator and verifier"
HOMEPAGE="https://github.com/cfv-project/cfv/"
# Tests aren't included in PyPI tarballs
SRC_URI="https://github.com/cfv-project/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="
test? (
app-arch/cksfv
)
"
python_prepare_all() {
# Remove upstream's attempt to install the man page
sed -i '/\sdata_files=/d' setup.py || die
distutils-r1_python_prepare_all
}
python_test() {
# In order to run integration tests in addition to unit tests, we can't
# just rely on pytest here, we need to use upstream's runner.
"${EPYTHON}" "test/test.py" || die "Tests failed with ${EPYTHON}"
}
python_install_all() {
distutils-r1_python_install_all
doman cfv.1
}
pkg_postinst() {
optfeature "the dimension column of JPEG Sheriff crc files" dev-python/pillow
}
|