summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-04-14 01:04:29 +0100
committerSam James <sam@gentoo.org>2021-04-14 15:29:56 +0000
commita0ffc72dbdcb54e961c37519ab45e83f55e61841 (patch)
treec17975a9b0625ad20f08581c0a2c75f3997855df /app-office
parentdev-python/python-nbxmpp: Remove old, cleanup keywords. (diff)
downloadgentoo-a0ffc72dbdcb54e961c37519ab45e83f55e61841.tar.gz
gentoo-a0ffc72dbdcb54e961c37519ab45e83f55e61841.tar.bz2
gentoo-a0ffc72dbdcb54e961c37519ab45e83f55e61841.zip
app-office/moneyguru: Remove last-rited pkg
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-office')
-rw-r--r--app-office/moneyguru/Manifest1
-rw-r--r--app-office/moneyguru/metadata.xml8
-rw-r--r--app-office/moneyguru/moneyguru-3.0.1-r2.ebuild55
3 files changed, 0 insertions, 64 deletions
diff --git a/app-office/moneyguru/Manifest b/app-office/moneyguru/Manifest
deleted file mode 100644
index 7263b73b216e..000000000000
--- a/app-office/moneyguru/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST moneyguru-3.0.1.tar.gz 1052191 BLAKE2B 30ea5eaa7b6256a33e98dc590015f563a3d5f6a10ccf26911e397dced79dfffa3b55941900ecf2cf3915ad0055db0c4c95b2f10c0c55e34d972afe32d714a588 SHA512 fe0de1d01340d124f8f385a4713c6748d2d445c653b508ad08303a3fea5192a0d88be9feb4984d19d4608436eb47de830d1c3dc6680d23aeff81107d27dcaf10
diff --git a/app-office/moneyguru/metadata.xml b/app-office/moneyguru/metadata.xml
deleted file mode 100644
index aedd054b6f89..000000000000
--- a/app-office/moneyguru/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <remote-id type="github">hsoft/moneyguru</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/app-office/moneyguru/moneyguru-3.0.1-r2.ebuild b/app-office/moneyguru/moneyguru-3.0.1-r2.ebuild
deleted file mode 100644
index 1eac49c27c0c..000000000000
--- a/app-office/moneyguru/moneyguru-3.0.1-r2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_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}"
-}