blob: f61cd8bea01e09083f96c35f28692d153f52d995 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7} )
inherit python-single-r1
DESCRIPTION="Future-aware personal finances management"
HOMEPAGE="https://hardcoded.net/moneyguru"
SRC_URI="https://download.hardcoded.net/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64"
IUSE="test"
RESTRICT="!test? ( test )"
REQUIRED_USE=${PYTHON_REQUIRED_USE}
RDEPEND="${PYTHON_DEPS}
dev-db/sqlite:3
dev-libs/glib:2
$(python_gen_cond_dep '
dev-python/PyQt5[${PYTHON_MULTI_USEDEP},gui,widgets,printsupport]
')
dev-qt/qttranslations"
DEPEND="${RDEPEND}
test? (
$(python_gen_cond_dep '
dev-python/pytest[${PYTHON_MULTI_USEDEP}]
')
dev-util/cunit
)"
_emake() {
emake CFLAGS="\$(DEFAULT_CFLAGS) ${CFLAGS}" \
SHEBANG="${PYTHON}" \
DESTDIR="${ED}" \
PREFIX="${EPREFIX}/usr" \
"$@"
}
src_compile() {
_emake
}
src_install() {
_emake install
}
src_test() {
emake -C ccore CFLAGS="\$(DEFAULT_CFLAGS) ${CFLAGS}" tests
pytest -vv core || die "Tests failed with ${EPYTHON}"
}
|