public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
@ 2019-01-02 21:22 Virgil Dupras
  0 siblings, 0 replies; 10+ messages in thread
From: Virgil Dupras @ 2019-01-02 21:22 UTC (permalink / raw
  To: gentoo-commits

commit:     0f10a1e24dced271acbee1b2cb29b1d842574013
Author:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  2 21:21:47 2019 +0000
Commit:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Wed Jan  2 21:21:47 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f10a1e2

app-office/moneyguru: new package

I'm upstream and I've spent the last two releases pimping up the build
system.

Closes: https://bugs.gentoo.org/388645
Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-office/moneyguru/Manifest                |  1 +
 app-office/moneyguru/metadata.xml            | 11 +++++++
 app-office/moneyguru/moneyguru-2.13.0.ebuild | 49 ++++++++++++++++++++++++++++
 3 files changed, 61 insertions(+)

diff --git a/app-office/moneyguru/Manifest b/app-office/moneyguru/Manifest
new file mode 100644
index 00000000000..0ccf1eba41a
--- /dev/null
+++ b/app-office/moneyguru/Manifest
@@ -0,0 +1 @@
+DIST moneyguru-2.13.0.tar.gz 1666383 BLAKE2B ea0f11728cacfe1763d9bf0e84749f18b2191af3b6c442de8c9a8095101a34c837126868589ed2c89cc4bb76cae0f5361c0b158b4f84342d1f7c74f6da06601e SHA512 fbc144070f4d78470e9a16bc7fbe35769e3fafacf4ecd746d86dd04cae759299d50b2132c21068d0fbbd01abcbfb1e9234a3a281e5097d789520cb053b6aee6f

diff --git a/app-office/moneyguru/metadata.xml b/app-office/moneyguru/metadata.xml
new file mode 100644
index 00000000000..951b70bfa8e
--- /dev/null
+++ b/app-office/moneyguru/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>vdurpas@gentoo.org</email>
+		<name>Virgil Dupras</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">hsoft/moneyguru</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/app-office/moneyguru/moneyguru-2.13.0.ebuild b/app-office/moneyguru/moneyguru-2.13.0.ebuild
new file mode 100644
index 00000000000..ffe8516e22b
--- /dev/null
+++ b/app-office/moneyguru/moneyguru-2.13.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,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"
+
+RDEPEND="${PYTHON_DEPS}
+	dev-db/sqlite:3
+	dev-libs/glib:2
+	dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets,printsupport]
+	dev-qt/qttranslations"
+DEPEND="${RDEPEND}
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-util/cunit
+	)"
+
+_emake() {
+	emake CFLAGS="\$(DEFAULT_CFLAGS) ${CFLAGS}" \
+		SHEBANG="${PYTHON}" \
+		DESTDIR="${ED}" \
+		PREFIX=/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}"
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
@ 2019-01-03 14:18 Virgil Dupras
  0 siblings, 0 replies; 10+ messages in thread
From: Virgil Dupras @ 2019-01-03 14:18 UTC (permalink / raw
  To: gentoo-commits

commit:     d8ba090d7d83d8c38b1d307ad0bc595671e273e0
Author:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  3 14:18:16 2019 +0000
Commit:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Thu Jan  3 14:18:16 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8ba090d

app-office/moneyguru: bump to 2.13.1

Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
Package-Manager: Portage-2.3.53, Repoman-2.3.11

 app-office/moneyguru/Manifest                                           | 2 +-
 .../moneyguru/{moneyguru-2.13.0.ebuild => moneyguru-2.13.1.ebuild}      | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/moneyguru/Manifest b/app-office/moneyguru/Manifest
index 0ccf1eba41a..c6fd4179caa 100644
--- a/app-office/moneyguru/Manifest
+++ b/app-office/moneyguru/Manifest
@@ -1 +1 @@
-DIST moneyguru-2.13.0.tar.gz 1666383 BLAKE2B ea0f11728cacfe1763d9bf0e84749f18b2191af3b6c442de8c9a8095101a34c837126868589ed2c89cc4bb76cae0f5361c0b158b4f84342d1f7c74f6da06601e SHA512 fbc144070f4d78470e9a16bc7fbe35769e3fafacf4ecd746d86dd04cae759299d50b2132c21068d0fbbd01abcbfb1e9234a3a281e5097d789520cb053b6aee6f
+DIST moneyguru-2.13.1.tar.gz 1665892 BLAKE2B 969286130c5336f4c41ccf0ee3cbfe55a13560f753e137ff5370184c5aff3e038995c79ad48620a5653552406ea6fb56d356a209cd36774751db4f8e3777354c SHA512 9544a2fe17d0c1d4a6f1ee6c52c79e66ca76da6a6ac35067f1961fe2b44a8efe20173ee5932a91adeeebcb0a522b544df11ad388cb4c453a0641060d75f2a17c

diff --git a/app-office/moneyguru/moneyguru-2.13.0.ebuild b/app-office/moneyguru/moneyguru-2.13.1.ebuild
similarity index 100%
rename from app-office/moneyguru/moneyguru-2.13.0.ebuild
rename to app-office/moneyguru/moneyguru-2.13.1.ebuild


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
@ 2019-03-27 18:15 Virgil Dupras
  0 siblings, 0 replies; 10+ messages in thread
From: Virgil Dupras @ 2019-03-27 18:15 UTC (permalink / raw
  To: gentoo-commits

commit:     6e834457c069b7b195c59d98ce3ac446bec36169
Author:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 27 17:52:00 2019 +0000
Commit:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Wed Mar 27 18:14:37 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e834457

app-office/moneyguru: stable on amd64

Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-office/moneyguru/moneyguru-2.13.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/moneyguru/moneyguru-2.13.1.ebuild b/app-office/moneyguru/moneyguru-2.13.1.ebuild
index 053b98e5fa5..0b353762ff8 100644
--- a/app-office/moneyguru/moneyguru-2.13.1.ebuild
+++ b/app-office/moneyguru/moneyguru-2.13.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.hardcoded.net/${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="test"
 
 RDEPEND="${PYTHON_DEPS}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
@ 2019-03-27 18:15 Virgil Dupras
  0 siblings, 0 replies; 10+ messages in thread
From: Virgil Dupras @ 2019-03-27 18:15 UTC (permalink / raw
  To: gentoo-commits

commit:     55a7ffffcb53ddded0bc10532f61dd7c68597778
Author:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 27 17:50:50 2019 +0000
Commit:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Wed Mar 27 18:14:37 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55a7ffff

app-office/moneyguru: add upper pytest constraint

Tests don't run with newer pytest

Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-office/moneyguru/metadata.xml            | 2 +-
 app-office/moneyguru/moneyguru-2.13.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-office/moneyguru/metadata.xml b/app-office/moneyguru/metadata.xml
index 951b70bfa8e..1f5b64f0bf0 100644
--- a/app-office/moneyguru/metadata.xml
+++ b/app-office/moneyguru/metadata.xml
@@ -2,7 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="person">
-		<email>vdurpas@gentoo.org</email>
+		<email>vdupras@gentoo.org</email>
 		<name>Virgil Dupras</name>
 	</maintainer>
 	<upstream>

diff --git a/app-office/moneyguru/moneyguru-2.13.1.ebuild b/app-office/moneyguru/moneyguru-2.13.1.ebuild
index ffe8516e22b..053b98e5fa5 100644
--- a/app-office/moneyguru/moneyguru-2.13.1.ebuild
+++ b/app-office/moneyguru/moneyguru-2.13.1.ebuild
@@ -23,7 +23,7 @@ RDEPEND="${PYTHON_DEPS}
 	dev-qt/qttranslations"
 DEPEND="${RDEPEND}
 	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
+		<dev-python/pytest-4[${PYTHON_USEDEP}]
 		dev-util/cunit
 	)"
 


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
@ 2019-03-27 18:15 Virgil Dupras
  0 siblings, 0 replies; 10+ messages in thread
From: Virgil Dupras @ 2019-03-27 18:15 UTC (permalink / raw
  To: gentoo-commits

commit:     1efefa894f56cf96b1eca701f2961e59cc5bd840
Author:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 27 18:08:42 2019 +0000
Commit:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Wed Mar 27 18:14:38 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1efefa89

app-office/moneyguru: bump to 3.0.0

Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-office/moneyguru/Manifest               |  1 +
 app-office/moneyguru/moneyguru-3.0.0.ebuild | 49 +++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/app-office/moneyguru/Manifest b/app-office/moneyguru/Manifest
index c6fd4179caa..a06a315af5a 100644
--- a/app-office/moneyguru/Manifest
+++ b/app-office/moneyguru/Manifest
@@ -1 +1,2 @@
 DIST moneyguru-2.13.1.tar.gz 1665892 BLAKE2B 969286130c5336f4c41ccf0ee3cbfe55a13560f753e137ff5370184c5aff3e038995c79ad48620a5653552406ea6fb56d356a209cd36774751db4f8e3777354c SHA512 9544a2fe17d0c1d4a6f1ee6c52c79e66ca76da6a6ac35067f1961fe2b44a8efe20173ee5932a91adeeebcb0a522b544df11ad388cb4c453a0641060d75f2a17c
+DIST moneyguru-3.0.0.tar.gz 1049954 BLAKE2B af411ea9cf965b93e6d3e88c47db74adc87ebb695862bef9a103ece0e56a5ec2c45e929a2a8bd405a41d3388c7561c69f7c54c41ae97e84f405a9c92385a162b SHA512 184d2e042014baea4f05f2f0397818cde4f86d726858ed253caac12e986660f85418c65657cc6fad1e3137195d55da35eceec3e8eaf23a01e81874dc20380e7f

diff --git a/app-office/moneyguru/moneyguru-3.0.0.ebuild b/app-office/moneyguru/moneyguru-3.0.0.ebuild
new file mode 100644
index 00000000000..ffe8516e22b
--- /dev/null
+++ b/app-office/moneyguru/moneyguru-3.0.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,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"
+
+RDEPEND="${PYTHON_DEPS}
+	dev-db/sqlite:3
+	dev-libs/glib:2
+	dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets,printsupport]
+	dev-qt/qttranslations"
+DEPEND="${RDEPEND}
+	test? (
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-util/cunit
+	)"
+
+_emake() {
+	emake CFLAGS="\$(DEFAULT_CFLAGS) ${CFLAGS}" \
+		SHEBANG="${PYTHON}" \
+		DESTDIR="${ED}" \
+		PREFIX=/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}"
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
@ 2019-05-20 19:55 Virgil Dupras
  0 siblings, 0 replies; 10+ messages in thread
From: Virgil Dupras @ 2019-05-20 19:55 UTC (permalink / raw
  To: gentoo-commits

commit:     8ac3138f8d60421f7bb2eca2e6735e03e85ca328
Author:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
AuthorDate: Mon May 20 19:34:41 2019 +0000
Commit:     Virgil Dupras <vdupras <AT> gentoo <DOT> org>
CommitDate: Mon May 20 19:54:41 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ac3138f

app-office/moneyguru: bump to 3.0.1

Signed-off-by: Virgil Dupras <vdupras <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 app-office/moneyguru/Manifest                                         | 2 +-
 .../moneyguru/{moneyguru-3.0.0.ebuild => moneyguru-3.0.1.ebuild}      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-office/moneyguru/Manifest b/app-office/moneyguru/Manifest
index a06a315af5a..7963e8611b8 100644
--- a/app-office/moneyguru/Manifest
+++ b/app-office/moneyguru/Manifest
@@ -1,2 +1,2 @@
 DIST moneyguru-2.13.1.tar.gz 1665892 BLAKE2B 969286130c5336f4c41ccf0ee3cbfe55a13560f753e137ff5370184c5aff3e038995c79ad48620a5653552406ea6fb56d356a209cd36774751db4f8e3777354c SHA512 9544a2fe17d0c1d4a6f1ee6c52c79e66ca76da6a6ac35067f1961fe2b44a8efe20173ee5932a91adeeebcb0a522b544df11ad388cb4c453a0641060d75f2a17c
-DIST moneyguru-3.0.0.tar.gz 1049954 BLAKE2B af411ea9cf965b93e6d3e88c47db74adc87ebb695862bef9a103ece0e56a5ec2c45e929a2a8bd405a41d3388c7561c69f7c54c41ae97e84f405a9c92385a162b SHA512 184d2e042014baea4f05f2f0397818cde4f86d726858ed253caac12e986660f85418c65657cc6fad1e3137195d55da35eceec3e8eaf23a01e81874dc20380e7f
+DIST moneyguru-3.0.1.tar.gz 1052191 BLAKE2B 30ea5eaa7b6256a33e98dc590015f563a3d5f6a10ccf26911e397dced79dfffa3b55941900ecf2cf3915ad0055db0c4c95b2f10c0c55e34d972afe32d714a588 SHA512 fe0de1d01340d124f8f385a4713c6748d2d445c653b508ad08303a3fea5192a0d88be9feb4984d19d4608436eb47de830d1c3dc6680d23aeff81107d27dcaf10

diff --git a/app-office/moneyguru/moneyguru-3.0.0.ebuild b/app-office/moneyguru/moneyguru-3.0.1.ebuild
similarity index 96%
rename from app-office/moneyguru/moneyguru-3.0.0.ebuild
rename to app-office/moneyguru/moneyguru-3.0.1.ebuild
index ffe8516e22b..6761c2c98dc 100644
--- a/app-office/moneyguru/moneyguru-3.0.0.ebuild
+++ b/app-office/moneyguru/moneyguru-3.0.1.ebuild
@@ -31,8 +31,8 @@ _emake() {
 	emake CFLAGS="\$(DEFAULT_CFLAGS) ${CFLAGS}" \
 		SHEBANG="${PYTHON}" \
 		DESTDIR="${ED}" \
-		PREFIX=/usr \
-		$@
+		PREFIX="${EPREFIX}/usr" \
+		"$@"
 }
 
 src_compile() {


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
@ 2019-07-21 17:54 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2019-07-21 17:54 UTC (permalink / raw
  To: gentoo-commits

commit:     4a80f1ae70fb928fcbc322452106f44398a9dfd2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 21 17:51:03 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 17:51:03 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a80f1ae

app-office/moneyguru: Fix missing REQUIRED_USE & RESTRICT

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../moneyguru/{moneyguru-2.13.1.ebuild => moneyguru-2.13.1-r1.ebuild}   | 2 ++
 .../moneyguru/{moneyguru-3.0.1.ebuild => moneyguru-3.0.1-r1.ebuild}     | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/app-office/moneyguru/moneyguru-2.13.1.ebuild b/app-office/moneyguru/moneyguru-2.13.1-r1.ebuild
similarity index 93%
rename from app-office/moneyguru/moneyguru-2.13.1.ebuild
rename to app-office/moneyguru/moneyguru-2.13.1-r1.ebuild
index 0b353762ff8..56dae2b7824 100644
--- a/app-office/moneyguru/moneyguru-2.13.1.ebuild
+++ b/app-office/moneyguru/moneyguru-2.13.1-r1.ebuild
@@ -15,6 +15,8 @@ LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="amd64"
 IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 RDEPEND="${PYTHON_DEPS}
 	dev-db/sqlite:3

diff --git a/app-office/moneyguru/moneyguru-3.0.1.ebuild b/app-office/moneyguru/moneyguru-3.0.1-r1.ebuild
similarity index 93%
rename from app-office/moneyguru/moneyguru-3.0.1.ebuild
rename to app-office/moneyguru/moneyguru-3.0.1-r1.ebuild
index 6761c2c98dc..b311cf29be2 100644
--- a/app-office/moneyguru/moneyguru-3.0.1.ebuild
+++ b/app-office/moneyguru/moneyguru-3.0.1-r1.ebuild
@@ -15,6 +15,8 @@ LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
 
 RDEPEND="${PYTHON_DEPS}
 	dev-db/sqlite:3


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
@ 2020-02-09 16:11 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2020-02-09 16:11 UTC (permalink / raw
  To: gentoo-commits

commit:     05b8398c0b4125f5dff270ad320e9035bba9ae1b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  7 11:28:52 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb  9 16:10:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05b8398c

app-office/moneyguru: Switch to PYTHON_MULTI_USEDEP API

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../{moneyguru-2.13.1-r1.ebuild => moneyguru-2.13.1-r2.ebuild}    | 8 ++++++--
 .../{moneyguru-3.0.1-r1.ebuild => moneyguru-3.0.1-r2.ebuild}      | 8 ++++++--
 2 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/app-office/moneyguru/moneyguru-2.13.1-r1.ebuild b/app-office/moneyguru/moneyguru-2.13.1-r2.ebuild
similarity index 83%
rename from app-office/moneyguru/moneyguru-2.13.1-r1.ebuild
rename to app-office/moneyguru/moneyguru-2.13.1-r2.ebuild
index 5e3aaab58e1..31987d2240e 100644
--- a/app-office/moneyguru/moneyguru-2.13.1-r1.ebuild
+++ b/app-office/moneyguru/moneyguru-2.13.1-r2.ebuild
@@ -21,11 +21,15 @@ REQUIRED_USE=${PYTHON_REQUIRED_USE}
 RDEPEND="${PYTHON_DEPS}
 	dev-db/sqlite:3
 	dev-libs/glib:2
-	dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets,printsupport]
+	$(python_gen_cond_dep '
+		dev-python/PyQt5[${PYTHON_MULTI_USEDEP},gui,widgets,printsupport]
+	')
 	dev-qt/qttranslations"
 DEPEND="${RDEPEND}
 	test? (
-		<dev-python/pytest-4[${PYTHON_USEDEP}]
+		$(python_gen_cond_dep '
+			<dev-python/pytest-4[${PYTHON_MULTI_USEDEP}]
+		')
 		dev-util/cunit
 	)"
 

diff --git a/app-office/moneyguru/moneyguru-3.0.1-r1.ebuild b/app-office/moneyguru/moneyguru-3.0.1-r2.ebuild
similarity index 84%
rename from app-office/moneyguru/moneyguru-3.0.1-r1.ebuild
rename to app-office/moneyguru/moneyguru-3.0.1-r2.ebuild
index db78b348715..ba927b91e60 100644
--- a/app-office/moneyguru/moneyguru-3.0.1-r1.ebuild
+++ b/app-office/moneyguru/moneyguru-3.0.1-r2.ebuild
@@ -21,11 +21,15 @@ REQUIRED_USE=${PYTHON_REQUIRED_USE}
 RDEPEND="${PYTHON_DEPS}
 	dev-db/sqlite:3
 	dev-libs/glib:2
-	dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets,printsupport]
+	$(python_gen_cond_dep '
+		dev-python/PyQt5[${PYTHON_MULTI_USEDEP},gui,widgets,printsupport]
+	')
 	dev-qt/qttranslations"
 DEPEND="${RDEPEND}
 	test? (
-		dev-python/pytest[${PYTHON_USEDEP}]
+		$(python_gen_cond_dep '
+			dev-python/pytest[${PYTHON_MULTI_USEDEP}]
+		')
 		dev-util/cunit
 	)"
 


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
@ 2020-02-24 12:53 Agostino Sarubbo
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo @ 2020-02-24 12:53 UTC (permalink / raw
  To: gentoo-commits

commit:     962ae638e7bdfb31aff5b28d38d5dfbe05b8e342
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 24 12:53:05 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Feb 24 12:53:05 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=962ae638

app-office/moneyguru: amd64 stable wrt bug #710492

Package-Manager: Portage-2.3.84, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 app-office/moneyguru/moneyguru-3.0.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/moneyguru/moneyguru-3.0.1-r2.ebuild b/app-office/moneyguru/moneyguru-3.0.1-r2.ebuild
index ba927b91e60..f61cd8bea01 100644
--- a/app-office/moneyguru/moneyguru-3.0.1-r2.ebuild
+++ b/app-office/moneyguru/moneyguru-3.0.1-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.hardcoded.net/${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE=${PYTHON_REQUIRED_USE}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/
@ 2020-02-24 13:36 Andreas Sturmlechner
  0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2020-02-24 13:36 UTC (permalink / raw
  To: gentoo-commits

commit:     2b68319652cb6a6d4b4f74727a391a0bd3ab94c3
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 24 13:33:42 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Feb 24 13:36:26 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b683196

app-office/moneyguru: Drop 2.13.1-r2

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 app-office/moneyguru/Manifest                   |  1 -
 app-office/moneyguru/moneyguru-2.13.1-r2.ebuild | 55 -------------------------
 2 files changed, 56 deletions(-)

diff --git a/app-office/moneyguru/Manifest b/app-office/moneyguru/Manifest
index 7963e8611b8..7263b73b216 100644
--- a/app-office/moneyguru/Manifest
+++ b/app-office/moneyguru/Manifest
@@ -1,2 +1 @@
-DIST moneyguru-2.13.1.tar.gz 1665892 BLAKE2B 969286130c5336f4c41ccf0ee3cbfe55a13560f753e137ff5370184c5aff3e038995c79ad48620a5653552406ea6fb56d356a209cd36774751db4f8e3777354c SHA512 9544a2fe17d0c1d4a6f1ee6c52c79e66ca76da6a6ac35067f1961fe2b44a8efe20173ee5932a91adeeebcb0a522b544df11ad388cb4c453a0641060d75f2a17c
 DIST moneyguru-3.0.1.tar.gz 1052191 BLAKE2B 30ea5eaa7b6256a33e98dc590015f563a3d5f6a10ccf26911e397dced79dfffa3b55941900ecf2cf3915ad0055db0c4c95b2f10c0c55e34d972afe32d714a588 SHA512 fe0de1d01340d124f8f385a4713c6748d2d445c653b508ad08303a3fea5192a0d88be9feb4984d19d4608436eb47de830d1c3dc6680d23aeff81107d27dcaf10

diff --git a/app-office/moneyguru/moneyguru-2.13.1-r2.ebuild b/app-office/moneyguru/moneyguru-2.13.1-r2.ebuild
deleted file mode 100644
index 31987d2240e..00000000000
--- a/app-office/moneyguru/moneyguru-2.13.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_{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-4[${PYTHON_MULTI_USEDEP}]
-		')
-		dev-util/cunit
-	)"
-
-_emake() {
-	emake CFLAGS="\$(DEFAULT_CFLAGS) ${CFLAGS}" \
-		SHEBANG="${PYTHON}" \
-		DESTDIR="${ED}" \
-		PREFIX=/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}"
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2020-02-24 13:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-03 14:18 [gentoo-commits] repo/gentoo:master commit in: app-office/moneyguru/ Virgil Dupras
  -- strict thread matches above, loose matches on Subject: below --
2020-02-24 13:36 Andreas Sturmlechner
2020-02-24 12:53 Agostino Sarubbo
2020-02-09 16:11 Michał Górny
2019-07-21 17:54 Michał Górny
2019-05-20 19:55 Virgil Dupras
2019-03-27 18:15 Virgil Dupras
2019-03-27 18:15 Virgil Dupras
2019-03-27 18:15 Virgil Dupras
2019-01-02 21:22 Virgil Dupras

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox