Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/grisbi/
Date: Sun, 04 Jul 2021 18:24:38
Message-Id: 1625422215.3cf6a44731f195a7bedee64e79f841c8c16cf4eb.mattst88@gentoo
1 commit: 3cf6a44731f195a7bedee64e79f841c8c16cf4eb
2 Author: Guillaume Castagnino <casta <AT> xwing <DOT> info>
3 AuthorDate: Wed Jun 30 08:00:20 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 4 18:10:15 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cf6a447
7
8 app-office/grisbi: Version bump to 2.0.4
9
10 Closes: https://bugs.gentoo.org/797595
11 Closes: https://github.com/gentoo/gentoo/pull/21483
12 Signed-off-by: Guillaume Castagnino <casta <AT> xwing.info>
13 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
14
15 app-office/grisbi/Manifest | 1 +
16 app-office/grisbi/grisbi-2.0.4.ebuild | 40 +++++++++++++++++++++++++++++++++++
17 2 files changed, 41 insertions(+)
18
19 diff --git a/app-office/grisbi/Manifest b/app-office/grisbi/Manifest
20 index 7fa05f67dc5..14f3db243a5 100644
21 --- a/app-office/grisbi/Manifest
22 +++ b/app-office/grisbi/Manifest
23 @@ -1,2 +1,3 @@
24 DIST grisbi-1.2.2.tar.bz2 7325947 BLAKE2B 559ffc8c46edc629fd17aa38042a7d9a39dd9c1866bddc86560bae2750a53916a6e0a451dc6e482b9d21bc1d8d493701d656dfa85b131f5f9b5b3c014249dcd2 SHA512 7d627f9ae588c0d5a8235bb86f3ed160a572114ccfec1dce9c7137296e5525411600033ca4e42b242004edddc42f2160e95c18c0c0cd13516cf62486e081acdd
25 DIST grisbi-2.0.3.tar.bz2 7504520 BLAKE2B 28f9fd2535d3d863a4b36237f5dbb0947631764738a45869ad9c15750235cd741043382041eb40189ccbf34901527b950378e086e6f87a1beeeccd1c64f6be7a SHA512 2fdc93051399be2e7818890a88078f0c18976efe703a4f1ca9177484eb30def0533f35c6b7362b62dc29872596d9bb28494045ca2c137eec192d8c9bdde0e8aa
26 +DIST grisbi-2.0.4.tar.bz2 7506352 BLAKE2B 4c1717b934677b01cc3bb90ff67a3a2cb48c640e81fae40579d7f7007f72ac93f8d0b68fa0e72e41bf383e5be68316d7cc042a4067dfbf5286e28434932c8764 SHA512 755440aaab3d1db82eeca9fce8d63751c8073d082bcff5d97a11a87b1af47e2bbdc44be34270fbad311e3641fbf263f206996833dd08fd1ac27774b28a1fa3b5
27
28 diff --git a/app-office/grisbi/grisbi-2.0.4.ebuild b/app-office/grisbi/grisbi-2.0.4.ebuild
29 new file mode 100644
30 index 00000000000..5fc8d7898b3
31 --- /dev/null
32 +++ b/app-office/grisbi/grisbi-2.0.4.ebuild
33 @@ -0,0 +1,40 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit gnome2
40 +
41 +DESCRIPTION="Grisbi is a personal accounting application for Linux"
42 +HOMEPAGE="http://www.grisbi.org https://github.com/grisbi/grisbi"
43 +SRC_URI="mirror://sourceforge/${PN}/grisbi%20stable/2.0.x/${P}.tar.bz2"
44 +IUSE="goffice nls ofx ssl"
45 +
46 +LICENSE="GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~ppc ~x86"
49 +
50 +RDEPEND="
51 + >=dev-libs/libxml2-2.5:2
52 + >=dev-libs/glib-2.44.0:2
53 + >=x11-libs/gtk+-3.20:3
54 + x11-misc/xdg-utils
55 + >=gnome-extra/libgsf-1.14
56 + ssl? ( >=dev-libs/openssl-1.0.0:0= )
57 + ofx? ( >=dev-libs/libofx-0.9.0:= )
58 + goffice? ( >=x11-libs/goffice-0.10.0 )
59 +"
60 +DEPEND="${RDEPEND}
61 + virtual/pkgconfig
62 +"
63 +
64 +src_configure() {
65 + gnome2_src_configure \
66 + --with-libxml2 \
67 + --without-cunit \
68 + --disable-static \
69 + $(use_with ssl openssl) \
70 + $(use_with ofx) \
71 + $(use_with goffice) \
72 + $(use_enable nls)
73 +}