From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45456) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iTDnP-0000DZ-Np for guix-patches@gnu.org; Fri, 08 Nov 2019 18:36:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iTDnO-00036q-IS for guix-patches@gnu.org; Fri, 08 Nov 2019 18:36:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39147) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iTDnO-00036h-FA for guix-patches@gnu.org; Fri, 08 Nov 2019 18:36:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iTDnO-0000Pl-Ax for guix-patches@gnu.org; Fri, 08 Nov 2019 18:36:02 -0500 Subject: bug#38094: [PATCH] gnu: Add homebank. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20191106220005.4419-1-sschott@mailbox.org> Date: Sat, 09 Nov 2019 00:35:12 +0100 In-Reply-To: <20191106220005.4419-1-sschott@mailbox.org> (Sebastian Schott's message of "Wed, 6 Nov 2019 23:00:05 +0100") Message-ID: <87wocaaqmn.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Sebastian Schott Cc: 38094-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Sebastian, Sebastian Schott skribis: > --- > gnu/packages/finance.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) Applied! I took the liberty to make apply the cosmetic changes below to follow our guidelines, in particular . I also added a commit log that follows our conventions. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index fd29099aa3..c9a1637412 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -156,13 +156,13 @@ line client and a client based on Qt.") (package (name "homebank") (version "5.2.8") - (source - (origin - (method url-fetch) - (uri (string-append "http://homebank.free.fr/public/homebank-" version ".tar.gz")) - (sha256 - (base32 - "13ampiv68y30kc0p2560g3yz8whqpwnidfcnb9lndv93b9ca767y")))) + (source (origin + (method url-fetch) + (uri (string-append "http://homebank.free.fr/public/homebank-" + version ".tar.gz")) + (sha256 + (base32 + "13ampiv68y30kc0p2560g3yz8whqpwnidfcnb9lndv93b9ca767y")))) (build-system glib-or-gtk-build-system) (native-inputs `(("pkg-config" ,pkg-config) @@ -173,8 +173,11 @@ line client and a client based on Qt.") (arguments `(#:configure-flags (list "-without-ofx"))) ; libofx is not available yet (home-page "http://homebank.free.fr/") - (synopsis "Free, easy, personal accounting for everyone") - (description "HomeBank is the free software you have always wanted to manage your personal accounts at home. The main concept is to be light, simple and very easy to use. It brings you many features that allows you to analyze your finances in a detailed way instantly and dynamically with powerful report tools based on filtering and graphical charts.") + (synopsis "Graphical personal accounting application") + (description "HomeBank allows you to manage your personal accounts at +home. The seeks to be lightweight, simple and easy to use. It brings +features that allow you to analyze your finances in a detailed way instantly +and dynamically with report tools based on filtering and graphical charts.") (license license:gpl2+))) (define-public ledger --=-=-=--