Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
Date: Mon, 24 Feb 2020 13:36:46
Message-Id: 1582551386.2b68319652cb6a6d4b4f74727a391a0bd3ab94c3.asturm@gentoo
1 commit: 2b68319652cb6a6d4b4f74727a391a0bd3ab94c3
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 24 13:33:42 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 24 13:36:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b683196
7
8 app-office/moneyguru: Drop 2.13.1-r2
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-office/moneyguru/Manifest | 1 -
14 app-office/moneyguru/moneyguru-2.13.1-r2.ebuild | 55 -------------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/app-office/moneyguru/Manifest b/app-office/moneyguru/Manifest
18 index 7963e8611b8..7263b73b216 100644
19 --- a/app-office/moneyguru/Manifest
20 +++ b/app-office/moneyguru/Manifest
21 @@ -1,2 +1 @@
22 -DIST moneyguru-2.13.1.tar.gz 1665892 BLAKE2B 969286130c5336f4c41ccf0ee3cbfe55a13560f753e137ff5370184c5aff3e038995c79ad48620a5653552406ea6fb56d356a209cd36774751db4f8e3777354c SHA512 9544a2fe17d0c1d4a6f1ee6c52c79e66ca76da6a6ac35067f1961fe2b44a8efe20173ee5932a91adeeebcb0a522b544df11ad388cb4c453a0641060d75f2a17c
23 DIST moneyguru-3.0.1.tar.gz 1052191 BLAKE2B 30ea5eaa7b6256a33e98dc590015f563a3d5f6a10ccf26911e397dced79dfffa3b55941900ecf2cf3915ad0055db0c4c95b2f10c0c55e34d972afe32d714a588 SHA512 fe0de1d01340d124f8f385a4713c6748d2d445c653b508ad08303a3fea5192a0d88be9feb4984d19d4608436eb47de830d1c3dc6680d23aeff81107d27dcaf10
24
25 diff --git a/app-office/moneyguru/moneyguru-2.13.1-r2.ebuild b/app-office/moneyguru/moneyguru-2.13.1-r2.ebuild
26 deleted file mode 100644
27 index 31987d2240e..00000000000
28 --- a/app-office/moneyguru/moneyguru-2.13.1-r2.ebuild
29 +++ /dev/null
30 @@ -1,55 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{6,7} )
37 -
38 -inherit python-single-r1
39 -
40 -DESCRIPTION="Future-aware personal finances management"
41 -HOMEPAGE="https://hardcoded.net/moneyguru"
42 -SRC_URI="https://download.hardcoded.net/${P}.tar.gz"
43 -
44 -LICENSE="GPL-3+"
45 -SLOT="0"
46 -KEYWORDS="amd64"
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -REQUIRED_USE=${PYTHON_REQUIRED_USE}
50 -
51 -RDEPEND="${PYTHON_DEPS}
52 - dev-db/sqlite:3
53 - dev-libs/glib:2
54 - $(python_gen_cond_dep '
55 - dev-python/PyQt5[${PYTHON_MULTI_USEDEP},gui,widgets,printsupport]
56 - ')
57 - dev-qt/qttranslations"
58 -DEPEND="${RDEPEND}
59 - test? (
60 - $(python_gen_cond_dep '
61 - <dev-python/pytest-4[${PYTHON_MULTI_USEDEP}]
62 - ')
63 - dev-util/cunit
64 - )"
65 -
66 -_emake() {
67 - emake CFLAGS="\$(DEFAULT_CFLAGS) ${CFLAGS}" \
68 - SHEBANG="${PYTHON}" \
69 - DESTDIR="${ED}" \
70 - PREFIX=/usr \
71 - $@
72 -}
73 -
74 -src_compile() {
75 - _emake
76 -}
77 -
78 -src_install() {
79 - _emake install
80 -}
81 -
82 -src_test() {
83 - emake -C ccore CFLAGS="\$(DEFAULT_CFLAGS) ${CFLAGS}" tests
84 - pytest -vv core || die "Tests failed with ${EPYTHON}"
85 -}