From unknown Sun Jun 22 07:49:26 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#36446] [PATCH] Add grisbi Resent-From: Tanguy Le Carrour Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 30 Jun 2019 15:45:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 36446 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 36446@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.1561909501897 (code B ref -1); Sun, 30 Jun 2019 15:45:02 +0000 Received: (at submit) by debbugs.gnu.org; 30 Jun 2019 15:45:01 +0000 Received: from localhost ([127.0.0.1]:47153 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hhc0i-0000EF-LA for submit@debbugs.gnu.org; Sun, 30 Jun 2019 11:45:01 -0400 Received: from lists.gnu.org ([209.51.188.17]:48715) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hhYQA-0000iV-Ia for submit@debbugs.gnu.org; Sun, 30 Jun 2019 07:55:03 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:60617) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hhYQ9-0008Ba-4r for guix-patches@gnu.org; Sun, 30 Jun 2019 07:55:02 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hhYQ7-0007Lq-U9 for guix-patches@gnu.org; Sun, 30 Jun 2019 07:55:01 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:33581) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hhYQ7-0007KU-Mv for guix-patches@gnu.org; Sun, 30 Jun 2019 07:54:59 -0400 Received: from localhost (89-92-229-106.hfc.dyn.abo.bbox.fr [89.92.229.106]) (Authenticated sender: tanguy@bioneland.org) by relay11.mail.gandi.net (Postfix) with ESMTPSA id DFF02100008 for ; Sun, 30 Jun 2019 11:54:51 +0000 (UTC) Date: Sun, 30 Jun 2019 13:54:45 +0200 From: Tanguy Le Carrour Message-ID: <20190630115445.e4td6p7upcsrk6hg@melmoth> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: NeoMutt/20180716 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.178.231 X-Spam-Score: -2.3 (--) X-Mailman-Approved-At: Sun, 30 Jun 2019 11:44:59 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --- gnu/packages/finance.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index e1a1e8ab6f..d3e12c2618 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2018 Adriano Peluso ;;; Copyright © 2018, 2019 Nicolas Goaziou ;;; Copyright © 2018 Arun Isaac +;;; Copyright © 2019 Tanguy Le Carrour ;;; ;;; This file is part of GNU Guix. ;;; @@ -35,6 +36,7 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix build-system python) + #:use-module (guix build-system glib-or-gtk) #:use-module (gnu packages) #:use-module (gnu packages base) #:use-module (gnu packages boost) @@ -45,9 +47,12 @@ #:use-module (gnu packages dns) #:use-module (gnu packages emacs) #:use-module (gnu packages dbm) + #:use-module (gnu packages glib) + #:use-module (gnu packages gnome) #:use-module (gnu packages gnupg) #:use-module (gnu packages graphviz) #:use-module (gnu packages groff) + #:use-module (gnu packages gtk) #:use-module (gnu packages libedit) #:use-module (gnu packages libevent) #:use-module (gnu packages libunwind) @@ -1028,3 +1033,38 @@ Its features are: @item get account amount. @end itemize") (license license:agpl3+))) + +(define-public grisbi + (package + (name "grisbi") + (version "1.2.2") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/grisbi/grisbi%20stable/1.2.x" + "/" version "/grisbi-" version ".tar.bz2")) + (sha256 + (base32 + "1piiyyxjsjbw9gcqydvknzxmmfgh8kdqal12ywrxyxih2afwnvbw")))) + (build-system glib-or-gtk-build-system) + (arguments + `(#:configure-flags (list "--without-ofx"))) + (propagated-inputs + `(("dconf" ,dconf))) + (native-inputs + `(("glib" ,glib "bin") ; glib-compile-schemas + ("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (inputs + `(("gtk+" ,gtk+) + ("libgsf" ,libgsf))) + (synopsis "Personnal accounting application") + (description "Grisbi is an application written by French developers, +so it perfectly respects French accounting rules. Grisbi can manage +multiple accounts, currencies and users. It manages third party, +expenditure and receipt categories, budgetary lines, financial years, +budget estimates, bankcard management and other information that make Grisbi +adapted for associations.") + (home-page "http://grisbi.org") + (license license:gpl2+))) -- 2.21.0 From unknown Sun Jun 22 07:49:26 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#36446] [PATCH] Add grisbi Resent-From: Efraim Flashner Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 02 Jul 2019 09:34:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 36446 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Tanguy Le Carrour Cc: 36446@debbugs.gnu.org Received: via spool by 36446-submit@debbugs.gnu.org id=B36446.156206000721213 (code B ref 36446); Tue, 02 Jul 2019 09:34:01 +0000 Received: (at 36446) by debbugs.gnu.org; 2 Jul 2019 09:33:27 +0000 Received: from localhost ([127.0.0.1]:46571 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hiFAE-0005W5-Ns for submit@debbugs.gnu.org; Tue, 02 Jul 2019 05:33:26 -0400 Received: from flashner.co.il ([178.62.234.194]:59540) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hiFAC-0005Vr-Qu for 36446@debbugs.gnu.org; Tue, 02 Jul 2019 05:33:25 -0400 Received: from localhost (unknown [94.230.83.247]) by flashner.co.il (Postfix) with ESMTPSA id A9BBF4009C; Tue, 2 Jul 2019 09:33:18 +0000 (UTC) Date: Tue, 2 Jul 2019 12:33:17 +0300 From: Efraim Flashner Message-ID: <20190702093317.GD22794@macbook41> References: <20190630115445.e4td6p7upcsrk6hg@melmoth> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="mSxgbZZZvrAyzONB" Content-Disposition: inline In-Reply-To: <20190630115445.e4td6p7upcsrk6hg@melmoth> X-PGP-Key-ID: 0x41AAE7DCCA3D8351 X-PGP-Key: https://flashner.co.il/~efraim/efraim_flashner.asc X-PGP-Fingerprint: A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 User-Agent: Mutt/1.12.1 (2019-06-15) X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --mSxgbZZZvrAyzONB Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I haven't checked the package, but one thing stood out to me: On Sun, Jun 30, 2019 at 01:54:45PM +0200, Tanguy Le Carrour wrote: > --- > + (version "1.2.2") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "mirror://sourceforge/grisbi/grisbi%20stable/1.2.x" 1.2.x could instead be: (verion-major+minor version) ".x" > + "/" version "/grisbi-" version ".tar.bz2")) >=20 >=20 --=20 Efraim Flashner =D7=90=D7=A4=D7=A8=D7=99=D7=9D = =D7=A4=D7=9C=D7=A9=D7=A0=D7=A8 GPG key =3D A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351 Confidentiality cannot be guaranteed on emails sent or received unencrypted --mSxgbZZZvrAyzONB Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAl0bJNkACgkQQarn3Mo9 g1E3uA//b+XCzknLTOaUUc5R6nmLollVMSi9aqGENIdJ2gAhMlZsMXifkOdUYgPc TnbwtN0MEnySYQP2iShmEAh9zTSxReMm6kHuO+S7Mjm/tG1KWlyurukkJxQVyCvS 6AaAeqW4MdIkNRmHC15lpf6a0pqTxzLmncCfTNjFykcBIuoPnnmOwLbvbM2VNkn3 bOONjDPAcfpxv7xyu3hwHaAlWw73rVCNJzRAgH9xlGE688xK0AUtta4bA86YhUky qFmlMg1QdK9qkl++B8Fgbd5XMNznACE85dNCUQ3F0y+nqB8UgM8cnNEjZM3BKvle vG4Kg21dDG6DOA1n6PmK5maQUmH2AUAmD882smAMZ9w5JJd35EsRAjDBqnG95XhK mJkfvpC1AEqNqpyvzhOwJrxRkIKV+TqCj7ay7Y+raHyua5FOYczt+t/qfdhXdwxp N3fE3yYqrQmLcZ59uABJe5loEDy2RX8em9PbDygSUr3R7ghO9JxErUMK1HqNV4k+ VHDi9h4S5UbaF1YMEsHZttXQbGAAhaO3FrGasJwoketRLUlWEk5ZKcKMtKr9EsYL IuLSnia5iEHzN6uQ32MFAZyQMZ4C5+gQldY8/BiKx6AgckPJctAE/GwPftl3F4Og LCbI9ts9UZXKNRGiNVQDIswIsOftq++I8a77Dw7zbYvw8ILjFTA= =QvLX -----END PGP SIGNATURE----- --mSxgbZZZvrAyzONB-- From unknown Sun Jun 22 07:49:26 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#36446] [PATCH] Add grisbi Resent-From: Tanguy Le Carrour Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 03 Jul 2019 12:40:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 36446 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner Cc: 36446@debbugs.gnu.org Received: via spool by 36446-submit@debbugs.gnu.org id=B36446.156215758524879 (code B ref 36446); Wed, 03 Jul 2019 12:40:02 +0000 Received: (at 36446) by debbugs.gnu.org; 3 Jul 2019 12:39:45 +0000 Received: from localhost ([127.0.0.1]:48531 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hieY3-0006TA-U0 for submit@debbugs.gnu.org; Wed, 03 Jul 2019 08:39:45 -0400 Received: from relay8-d.mail.gandi.net ([217.70.183.201]:52289) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hiZFa-0002HN-GR for 36446@debbugs.gnu.org; Wed, 03 Jul 2019 03:00:19 -0400 X-Originating-IP: 176.159.32.89 Received: from localhost (176-159-32-89.abo.bbox.fr [176.159.32.89]) (Authenticated sender: tanguy@bioneland.org) by relay8-d.mail.gandi.net (Postfix) with ESMTPSA id D351E1BF21B; Wed, 3 Jul 2019 07:00:11 +0000 (UTC) Date: Wed, 3 Jul 2019 09:00:11 +0200 From: Tanguy Le Carrour Message-ID: <20190703070011.6oywboheryvbsnua@rafflesia.localdomain> References: <20190630115445.e4td6p7upcsrk6hg@melmoth> <20190702093317.GD22794@macbook41> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20190702093317.GD22794@macbook41> User-Agent: NeoMutt/20180716 X-Spam-Score: -0.7 (/) X-Mailman-Approved-At: Wed, 03 Jul 2019 08:39:42 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Le 07/02, Efraim Flashner a écrit : > I haven't checked the package, but one thing stood out to me: > > On Sun, Jun 30, 2019 at 01:54:45PM +0200, Tanguy Le Carrour wrote: > > --- > > + (version "1.2.2") > > + (source > > + (origin > > + (method url-fetch) > > + (uri (string-append > > + "mirror://sourceforge/grisbi/grisbi%20stable/1.2.x" > > 1.2.x could instead be: > (verion-major+minor version) ".x" Thanks for the tip! I didn't know about this one, but it makes perfect sense! Am I supposed to update my patch and re-submit it? (sorry, newbie! ^_^') -- Tanguy From unknown Sun Jun 22 07:49:26 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#36446] [PATCH] Add grisbi Resent-From: Tanguy Le Carrour Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 07 Jul 2019 15:41:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 36446 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Efraim Flashner Cc: 36446@debbugs.gnu.org Received: via spool by 36446-submit@debbugs.gnu.org id=B36446.156251405815050 (code B ref 36446); Sun, 07 Jul 2019 15:41:01 +0000 Received: (at 36446) by debbugs.gnu.org; 7 Jul 2019 15:40:58 +0000 Received: from localhost ([127.0.0.1]:57333 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hk9Ha-0003uc-PH for submit@debbugs.gnu.org; Sun, 07 Jul 2019 11:40:58 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:43317) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hk9HY-0003uQ-UA for 36446@debbugs.gnu.org; Sun, 07 Jul 2019 11:40:53 -0400 X-Originating-IP: 89.92.229.106 Received: from localhost (89-92-229-106.hfc.dyn.abo.bbox.fr [89.92.229.106]) (Authenticated sender: tanguy@bioneland.org) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id 9D83120004; Sun, 7 Jul 2019 15:40:45 +0000 (UTC) Date: Sun, 7 Jul 2019 17:40:44 +0200 From: Tanguy Le Carrour Message-ID: <20190707154044.bstjb7fwu4nez2hu@melmoth> References: <20190630115445.e4td6p7upcsrk6hg@melmoth> <20190702093317.GD22794@macbook41> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20190702093317.GD22794@macbook41> User-Agent: NeoMutt/20180716 X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Thanks again for reading it. Here is the updated (and rebased) version. --- gnu/packages/finance.scm | 41 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 550354b650..c0a56f5180 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -12,6 +12,7 @@ ;;; Copyright © 2018, 2019 Nicolas Goaziou ;;; Copyright © 2018 Arun Isaac ;;; Copyright © 2019 Guillaume Le Vaillant +;;; Copyright © 2019 Tanguy Le Carrour ;;; ;;; This file is part of GNU Guix. ;;; @@ -36,6 +37,7 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix build-system python) + #:use-module (guix build-system glib-or-gtk) + #:use-module (guix utils) #:use-module (gnu packages) #:use-module (gnu packages base) #:use-module (gnu packages boost) @@ -47,9 +49,12 @@ #:use-module (gnu packages dns) #:use-module (gnu packages emacs) #:use-module (gnu packages dbm) + #:use-module (gnu packages gnome) + #:use-module (gnu packages glib) #:use-module (gnu packages gnupg) #:use-module (gnu packages graphviz) #:use-module (gnu packages groff) + #:use-module (gnu packages gtk) #:use-module (gnu packages libedit) #:use-module (gnu packages libevent) #:use-module (gnu packages libunwind) @@ -1050,3 +1055,39 @@ Its features are: @item get account amount. @end itemize") (license license:agpl3+))) + +(define-public grisbi + (package + (name "grisbi") + (version "1.2.2") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/grisbi/grisbi%20stable" + "/" (version-major+minor version) ".x" + "/" version "/grisbi-" version ".tar.bz2")) + (sha256 + (base32 + "1piiyyxjsjbw9gcqydvknzxmmfgh8kdqal12ywrxyxih2afwnvbw")))) + (build-system glib-or-gtk-build-system) + (arguments + `(#:configure-flags (list "--without-ofx"))) + (propagated-inputs + `(("dconf" ,dconf))) + (native-inputs + `(("glib" ,glib "bin") ; glib-compile-schemas + ("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (inputs + `(("gtk+" ,gtk+) + ("libgsf" ,libgsf))) + (synopsis "Personnal accounting application") + (description "Grisbi is an application written by French developers, +so it perfectly respects French accounting rules. Grisbi can manage +multiple accounts, currencies and users. It manages third party, +expenditure and receipt categories, budgetary lines, financial years, +budget estimates, bankcard management and other information that make Grisbi +adapted for associations.") + (home-page "http://grisbi.org") + (license license:gpl2+))) -- 2.22.0 -- Tanguy From unknown Sun Jun 22 07:49:26 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Tanguy Le Carrour Subject: bug#36446: closed (Re: [bug#36446] [PATCH] Add grisbi) Message-ID: References: <87tvbrp6b6.fsf@ngyro.com> <20190630115445.e4td6p7upcsrk6hg@melmoth> X-Gnu-PR-Message: they-closed 36446 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 36446@debbugs.gnu.org Date: Fri, 12 Jul 2019 16:28:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1562948882-25577-1" This is a multi-part message in MIME format... ------------=_1562948882-25577-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #36446: [PATCH] Add grisbi which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 36446@debbugs.gnu.org. --=20 36446: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D36446 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1562948882-25577-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 36446-done) by debbugs.gnu.org; 12 Jul 2019 16:27:02 +0000 Received: from localhost ([127.0.0.1]:40596 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hlyNy-0006dP-BR for submit@debbugs.gnu.org; Fri, 12 Jul 2019 12:27:02 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:42259) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hlyNw-0006ct-Q3 for 36446-done@debbugs.gnu.org; Fri, 12 Jul 2019 12:27:01 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 27F2A220A9; Fri, 12 Jul 2019 12:26:55 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Fri, 12 Jul 2019 12:26:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=Y5RBqR GiBDlcw/gwKdj6bxiqZHvOlxy2cAyJ5cGUL2g=; b=hbb8qjrqRox6Jmk9EBU/vo a9/gnRa5WOac24OymJrzaa3cpf4/ipJmum9nBBLWZaAJoQQbkSiCyreRFIoLsXLS CA2EPcFYPmL26aegPmV2H9fB3B/DRY/laYFi+BsTCwtraWEx0igMVZJOf015b3SF rB4tzJcJevMYwn0BSbUbBj5m47BiNUyUJBkcXFhkLqEUCAZuNrK7IjIjy9Sf2m0t pbeLUrnsM0ykclBazwQavsLBdz6ridlXlrqffcN3Wzuu/+ZFwADkaN2aiXc1/T6u OuLaz9wZiQ4XqPtQTzakIENpL7vKpm0XjEIUhYc304eJjPwpSwYKAdoKux5ltMtA == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddrhedtgddutddtucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufhfffgjkfgfgggtsehttdertddtredtnecuhfhrohhmpefvihhmohht hhihucfurghmphhlvgcuoehsrghmphhlvghtsehnghihrhhordgtohhmqeenucfkphepje egrdduudeirddukeeirdeggeenucfrrghrrghmpehmrghilhhfrhhomhepshgrmhhplhgv thesnhhghihrohdrtghomhenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from mrblack (74-116-186-44.qc.dsl.ebox.net [74.116.186.44]) by mail.messagingengine.com (Postfix) with ESMTPA id 133C98005A; Fri, 12 Jul 2019 12:26:54 -0400 (EDT) From: Timothy Sample To: Tanguy Le Carrour Subject: Re: [bug#36446] [PATCH] Add grisbi References: <20190630115445.e4td6p7upcsrk6hg@melmoth> <20190702093317.GD22794@macbook41> <20190707154044.bstjb7fwu4nez2hu@melmoth> Date: Fri, 12 Jul 2019 12:26:53 -0400 In-Reply-To: <20190707154044.bstjb7fwu4nez2hu@melmoth> (Tanguy Le Carrour's message of "Sun, 7 Jul 2019 17:40:44 +0200") Message-ID: <87tvbrp6b6.fsf@ngyro.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 36446-done Cc: 36446-done@debbugs.gnu.org, Efraim Flashner X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Tanguy, Tanguy Le Carrour writes: > Thanks again for reading it. Here is the updated (and rebased) version. With the minor changes to the synopsis and description that I mentioned before, I pushed this as 90bb244f29cacba8a098c07cd7c19a77d16f6cfb. Thanks! (As a note for the future, please be sure your patches apply. I had to fix the boundaries on one of the hunks.) -- Tim ------------=_1562948882-25577-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 30 Jun 2019 15:45:01 +0000 Received: from localhost ([127.0.0.1]:47153 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hhc0i-0000EF-LA for submit@debbugs.gnu.org; Sun, 30 Jun 2019 11:45:01 -0400 Received: from lists.gnu.org ([209.51.188.17]:48715) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hhYQA-0000iV-Ia for submit@debbugs.gnu.org; Sun, 30 Jun 2019 07:55:03 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:60617) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hhYQ9-0008Ba-4r for guix-patches@gnu.org; Sun, 30 Jun 2019 07:55:02 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hhYQ7-0007Lq-U9 for guix-patches@gnu.org; Sun, 30 Jun 2019 07:55:01 -0400 Received: from relay11.mail.gandi.net ([217.70.178.231]:33581) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hhYQ7-0007KU-Mv for guix-patches@gnu.org; Sun, 30 Jun 2019 07:54:59 -0400 Received: from localhost (89-92-229-106.hfc.dyn.abo.bbox.fr [89.92.229.106]) (Authenticated sender: tanguy@bioneland.org) by relay11.mail.gandi.net (Postfix) with ESMTPSA id DFF02100008 for ; Sun, 30 Jun 2019 11:54:51 +0000 (UTC) Date: Sun, 30 Jun 2019 13:54:45 +0200 From: Tanguy Le Carrour To: guix-patches@gnu.org Subject: [PATCH] Add grisbi Message-ID: <20190630115445.e4td6p7upcsrk6hg@melmoth> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: NeoMutt/20180716 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.178.231 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 30 Jun 2019 11:44:59 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --- gnu/packages/finance.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index e1a1e8ab6f..d3e12c2618 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2018 Adriano Peluso ;;; Copyright © 2018, 2019 Nicolas Goaziou ;;; Copyright © 2018 Arun Isaac +;;; Copyright © 2019 Tanguy Le Carrour ;;; ;;; This file is part of GNU Guix. ;;; @@ -35,6 +36,7 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix build-system python) + #:use-module (guix build-system glib-or-gtk) #:use-module (gnu packages) #:use-module (gnu packages base) #:use-module (gnu packages boost) @@ -45,9 +47,12 @@ #:use-module (gnu packages dns) #:use-module (gnu packages emacs) #:use-module (gnu packages dbm) + #:use-module (gnu packages glib) + #:use-module (gnu packages gnome) #:use-module (gnu packages gnupg) #:use-module (gnu packages graphviz) #:use-module (gnu packages groff) + #:use-module (gnu packages gtk) #:use-module (gnu packages libedit) #:use-module (gnu packages libevent) #:use-module (gnu packages libunwind) @@ -1028,3 +1033,38 @@ Its features are: @item get account amount. @end itemize") (license license:agpl3+))) + +(define-public grisbi + (package + (name "grisbi") + (version "1.2.2") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/grisbi/grisbi%20stable/1.2.x" + "/" version "/grisbi-" version ".tar.bz2")) + (sha256 + (base32 + "1piiyyxjsjbw9gcqydvknzxmmfgh8kdqal12ywrxyxih2afwnvbw")))) + (build-system glib-or-gtk-build-system) + (arguments + `(#:configure-flags (list "--without-ofx"))) + (propagated-inputs + `(("dconf" ,dconf))) + (native-inputs + `(("glib" ,glib "bin") ; glib-compile-schemas + ("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (inputs + `(("gtk+" ,gtk+) + ("libgsf" ,libgsf))) + (synopsis "Personnal accounting application") + (description "Grisbi is an application written by French developers, +so it perfectly respects French accounting rules. Grisbi can manage +multiple accounts, currencies and users. It manages third party, +expenditure and receipt categories, budgetary lines, financial years, +budget estimates, bankcard management and other information that make Grisbi +adapted for associations.") + (home-page "http://grisbi.org") + (license license:gpl2+))) -- 2.21.0 ------------=_1562948882-25577-1-- From unknown Sun Jun 22 07:49:26 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#36446] [PATCH] Add grisbi Resent-From: Tanguy Le Carrour Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Mon, 15 Jul 2019 06:56:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 36446 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Timothy Sample Cc: 36446-done@debbugs.gnu.org, Efraim Flashner Received: via spool by 36446-done@debbugs.gnu.org id=D36446.156317374625734 (code D ref 36446); Mon, 15 Jul 2019 06:56:01 +0000 Received: (at 36446-done) by debbugs.gnu.org; 15 Jul 2019 06:55:46 +0000 Received: from localhost ([127.0.0.1]:46271 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hmutl-0006gz-Q1 for submit@debbugs.gnu.org; Mon, 15 Jul 2019 02:55:46 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:40369) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hmutk-0006gq-EL for 36446-done@debbugs.gnu.org; Mon, 15 Jul 2019 02:55:45 -0400 X-Originating-IP: 176.159.32.89 Received: from localhost (176-159-32-89.abo.bbox.fr [176.159.32.89]) (Authenticated sender: tanguy@bioneland.org) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 435D51C0011; Mon, 15 Jul 2019 06:55:37 +0000 (UTC) Date: Mon, 15 Jul 2019 08:55:37 +0200 From: Tanguy Le Carrour Message-ID: <20190715065537.o6h2kog3lbujmy4m@rafflesia.localdomain> References: <20190630115445.e4td6p7upcsrk6hg@melmoth> <20190702093317.GD22794@macbook41> <20190707154044.bstjb7fwu4nez2hu@melmoth> <87tvbrp6b6.fsf@ngyro.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <87tvbrp6b6.fsf@ngyro.com> User-Agent: NeoMutt/20180716 X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hi Timothy, Le 07/12, Timothy Sample a écrit : > Tanguy Le Carrour writes: > With the minor changes to the synopsis and description that I mentioned > before, I pushed this as 90bb244f29cacba8a098c07cd7c19a77d16f6cfb. Thank you so much for that! > (As a note for the future, please be sure your patches apply. I had to > fix the boundaries on one of the hunks.) I'm really sorry to hear that! I'll do my best next time not to give you extra work! Best regards! -- Tanguy