From unknown Tue Aug 19 10:09:40 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#40358] Add beancount Resent-From: Christopher Lemmer Webber Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 31 Mar 2020 21:04:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 40358 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: To: 40358@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.158568862016695 (code B ref -1); Tue, 31 Mar 2020 21:04:01 +0000 Received: (at submit) by debbugs.gnu.org; 31 Mar 2020 21:03:40 +0000 Received: from localhost ([127.0.0.1]:37107 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJO2n-0004Kt-Vx for submit@debbugs.gnu.org; Tue, 31 Mar 2020 17:03:40 -0400 Received: from lists.gnu.org ([209.51.188.17]:35091) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJO2m-0004Kk-Gq for submit@debbugs.gnu.org; Tue, 31 Mar 2020 17:03:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:34353) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jJO2k-0006ny-0K for guix-patches@gnu.org; Tue, 31 Mar 2020 17:03:32 -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.8 required=5.0 tests=BAYES_50,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 1jJO2h-0001dn-D3 for guix-patches@gnu.org; Tue, 31 Mar 2020 17:03:29 -0400 Received: from dustycloud.org ([50.116.34.160]:44716) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jJO2g-0001Zi-FQ for guix-patches@gnu.org; Tue, 31 Mar 2020 17:03:26 -0400 Received: from twig (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 2ED8F26650 for ; Tue, 31 Mar 2020 17:03:24 -0400 (EDT) User-agent: mu4e 1.2.0; emacs 26.3 From: Christopher Lemmer Webber Date: Tue, 31 Mar 2020 17:03:23 -0400 Message-ID: <87tv24ck4k.fsf@dustycloud.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 50.116.34.160 X-Spam-Score: 0.3 (/) 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: -0.0 (/) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain Yet Another Plaintext Accounting System! --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-beancount.patch Content-Transfer-Encoding: quoted-printable From=2027274e0075f7215693cc4a51482c68ce00167d37 Mon Sep 17 00:00:00 2001 From: Christopher Lemmer Webber Date: Tue, 31 Mar 2020 16:57:15 -0400 Subject: [PATCH] gnu: Add beancount. * gnu/packages/finance.scm (beancount): New variable. * gnu/packages/patches/beancount-disable-googleapis-fonts.patch: New file. =2D-- gnu/packages/finance.scm | 42 +++++++++++++++++++ .../beancount-disable-googleapis-fonts.patch | 23 ++++++++++ 2 files changed, 65 insertions(+) create mode 100644 gnu/packages/patches/beancount-disable-googleapis-fonts= .patch diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 7bf8f4fc6e..53bbbb2f84 100644 =2D-- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -16,6 +16,7 @@ ;;; Copyright =C2=A9 2019 Martin Becze ;;; Copyright =C2=A9 2019 Sebastian Schott ;;; Copyright =C2=A9 2020 Kei Kebreau +;;; Copyright =C2=A9 2020 Christopher Lemmer Webber ;;; ;;; This file is part of GNU Guix. ;;; @@ -1398,3 +1399,44 @@ entity management.") electronic cash system. This package provides a command line client and a Qt GUI.") (license license:expat))) + +(define-public beancount + (package + (name "beancount") + (version "2.2.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "beancount" version)) + (sha256 + (base32 + "0pcfl2rx2ng06i4f9izdpnlnb1k0rdzsckbzzn4cn4ixfzyssm0m")) + (patches (search-patches "beancount-disable-googleapis-fonts.patch"= )))) + (build-system python-build-system) + (arguments + `(#:tests? #f ; Says test is missing, not sure why + #:phases + (modify-phases %standard-phases + ;; Not importing the googleapis package for now + (add-after 'unpack 'ignore-googleapis + (lambda _ + (substitute* "setup.py" + (("'google-api-python-client',") "")) + #t))))) + (propagated-inputs + `(("python-beautifulsoup4" ,python-beautifulsoup4) + ("python-bottle" ,python-bottle) + ("python-chardet" ,python-chardet) + ("python-dateutil" ,python-dateutil) + ("python-lxml" ,python-lxml) + ("python-magic" ,python-magic) + ("python-ply" ,python-ply) + ("python-pytest" ,python-pytest) + ("python-requests" ,python-requests))) + (home-page "http://furius.ca/beancount") + (synopsis "Command-line Double-Entry Accounting") + (description + "A double-entry bookkeeping computer language that lets you define +financial transaction records in a text file, read them in memory, generate +a variety of reports from them, and provides a web interface.") + (license license:gpl2))) diff --git a/gnu/packages/patches/beancount-disable-googleapis-fonts.patch = b/gnu/packages/patches/beancount-disable-googleapis-fonts.patch new file mode 100644 index 0000000000..f3ef574ddc =2D-- /dev/null +++ b/gnu/packages/patches/beancount-disable-googleapis-fonts.patch @@ -0,0 +1,23 @@ +From: Nicolas Dandrimont +Date: Tue, 1 May 2018 04:49:55 +0200 +Subject: Remove fonts.googleapis.com links for the bean-web template + +--- + beancount/web/web.html | 4 ---- + 1 file changed, 4 deletions(-) + +diff --git a/beancount/web/web.html b/beancount/web/web.html +index 3995ce2..ec9e707 100644 +--- a/beancount/web/web.html ++++ b/beancount/web/web.html +@@ -3,10 +3,6 @@ + + +=20 +- +- +- +- + + {{title}}: {{pagetitle}} +=20 \ No newline at end of file =2D-=20 2.25.1 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEUQqGKOKndniPjHCcS8Alkl/49NMFAl6DsBsACgkQS8Alkl/4 9NPQnw/+Lsoz9iyY9OkcSC11hn/ddnUKsCEPmVCd1ZsfYbFq7cm2k1ksiN4zR8k0 WKF+C2MCGldM2rRAr3YIJYUxNzyiTikSVaIVUcSArAuP5V9/SrO1UqeXurgLUPdj i0XhD58+3HMOu/LqUGntORQVXA0YySTB08j1cohNXIVO9iUErD77cr7b9Pj87AfZ tZQ5eRggungj62uB3BVlYG3FrM/CCCrZDXBWAkrlQOnF07HcIdYOmxI4IaGOkdSN 4Rn9KJnxkphrWkOmEpp7gRU15HLkmNOu48gtixOv+Kv66pf2bevV7+uhZGNHDSHc t+h2g83NG55PLeyUFF804NVVkmVOzkpJ0EVkuQUNBNKstCw+6JV0/qvZHiNSyGbD dDFdeG9zM7QCSr//8Cl7s6eSG1t3HEjGQHUHenbPbj/hyaS8agAzqI9R6Muk5aAc PVw0bhTncdOa2/7bKON0JRLz/QmLzLaOTz3PnaKWafpw8+kgr/dwnWUU1cIQzZMD 2ZeuiuPaDK6km0cNDfBmeCyaCOxe+tc3C+BhUSB8cKFivaaB0Uo4bfsFZ3bfcllN yTlyOMB5ScUgtvsp6hcOSRy1Q9I/p4UqOKDO+TKc+NAkrMlUllZfI7rnGnwQvkvs 9keJ1hfeBB+bWXoS0VakZc4atczbPRhK7x2ebIpBEhvZ9V6QGEo= =a8rG -----END PGP SIGNATURE----- --==-=-=-- From unknown Tue Aug 19 10:09:40 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#40358] Add beancount Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 02 Apr 2020 13:45:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 40358 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: To: Christopher Lemmer Webber Cc: 40358@debbugs.gnu.org Received: via spool by 40358-submit@debbugs.gnu.org id=B40358.158583505119284 (code B ref 40358); Thu, 02 Apr 2020 13:45:02 +0000 Received: (at 40358) by debbugs.gnu.org; 2 Apr 2020 13:44:11 +0000 Received: from localhost ([127.0.0.1]:39381 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jK08g-00050x-QV for submit@debbugs.gnu.org; Thu, 02 Apr 2020 09:44:11 -0400 Received: from eggs.gnu.org ([209.51.188.92]:35253) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jK08f-00050V-DJ for 40358@debbugs.gnu.org; Thu, 02 Apr 2020 09:44:09 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:56967) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jK08a-0006o6-1u; Thu, 02 Apr 2020 09:44:04 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=44312 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jK08Z-00011c-J1; Thu, 02 Apr 2020 09:44:03 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <87tv24ck4k.fsf@dustycloud.org> Date: Thu, 02 Apr 2020 15:44:01 +0200 In-Reply-To: <87tv24ck4k.fsf@dustycloud.org> (Christopher Lemmer Webber's message of "Tue, 31 Mar 2020 17:03:23 -0400") Message-ID: <87lfnengta.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] 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 (-) Hello! Christopher Lemmer Webber skribis: > From 27274e0075f7215693cc4a51482c68ce00167d37 Mon Sep 17 00:00:00 2001 > From: Christopher Lemmer Webber > Date: Tue, 31 Mar 2020 16:57:15 -0400 > Subject: [PATCH] gnu: Add beancount. > > * gnu/packages/finance.scm (beancount): New variable. > * gnu/packages/patches/beancount-disable-googleapis-fonts.patch: New file. Could you add the patch to gnu/local.mk? > + (home-page "http://furius.ca/beancount") > + (synopsis "Command-line Double-Entry Accounting") Nitpick: please remote capitals except for the first one, and=E2=80=A6 > + (description > + "A double-entry bookkeeping computer language that lets you define > +financial transaction records in a text file, read them in memory, gener= ate > +a variety of reports from them, and provides a web interface.") =E2=80=A6 make it a full sentence. > +++ b/gnu/packages/patches/beancount-disable-googleapis-fonts.patch > @@ -0,0 +1,23 @@ > +From: Nicolas Dandrimont > +Date: Tue, 1 May 2018 04:49:55 +0200 > +Subject: Remove fonts.googleapis.com links for the bean-web template Could you add the URL of the upstream patch or discussion, if any? OK with these changes! Thanks, Ludo=E2=80=99. From unknown Tue Aug 19 10:09:40 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: Christopher Lemmer Webber Subject: bug#40358: closed (Re: [bug#40358] Add beancount) Message-ID: References: <87lfnddidn.fsf@dustycloud.org> <87tv24ck4k.fsf@dustycloud.org> X-Gnu-PR-Message: they-closed 40358 X-Gnu-PR-Package: guix-patches Reply-To: 40358@debbugs.gnu.org Date: Thu, 02 Apr 2020 15:21:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1585840861-7684-1" This is a multi-part message in MIME format... ------------=_1585840861-7684-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #40358: Add beancount 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 40358@debbugs.gnu.org. --=20 40358: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D40358 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1585840861-7684-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 40358-done) by debbugs.gnu.org; 2 Apr 2020 15:20:24 +0000 Received: from localhost ([127.0.0.1]:40422 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jK1do-0001xc-6c for submit@debbugs.gnu.org; Thu, 02 Apr 2020 11:20:24 -0400 Received: from dustycloud.org ([50.116.34.160]:40342) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jK1dl-0001xN-Mi for 40358-done@debbugs.gnu.org; Thu, 02 Apr 2020 11:20:22 -0400 Received: from twig (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 1B5062665A; Thu, 2 Apr 2020 11:20:21 -0400 (EDT) References: <87tv24ck4k.fsf@dustycloud.org> <87lfnengta.fsf@gnu.org> User-agent: mu4e 1.2.0; emacs 26.3 From: Christopher Lemmer Webber To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#40358] Add beancount In-reply-to: <87lfnengta.fsf@gnu.org> Date: Thu, 02 Apr 2020 11:20:20 -0400 Message-ID: <87lfnddidn.fsf@dustycloud.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 40358-done Cc: 40358-done@debbugs.gnu.org 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 (-) Ludovic Court=C3=A8s writes: > Hello! > > Christopher Lemmer Webber skribis: > >> From 27274e0075f7215693cc4a51482c68ce00167d37 Mon Sep 17 00:00:00 2001 >> From: Christopher Lemmer Webber >> Date: Tue, 31 Mar 2020 16:57:15 -0400 >> Subject: [PATCH] gnu: Add beancount. >> >> * gnu/packages/finance.scm (beancount): New variable. >> * gnu/packages/patches/beancount-disable-googleapis-fonts.patch: New fil= e. > > Could you add the patch to gnu/local.mk? Good call. Done. >> + (home-page "http://furius.ca/beancount") >> + (synopsis "Command-line Double-Entry Accounting") > > Nitpick: please remote capitals except for the first one, and=E2=80=A6 Done. >> + (description >> + "A double-entry bookkeeping computer language that lets you define >> +financial transaction records in a text file, read them in memory, gene= rate >> +a variety of reports from them, and provides a web interface.") > > =E2=80=A6 make it a full sentence. Okay, done. >> +++ b/gnu/packages/patches/beancount-disable-googleapis-fonts.patch >> @@ -0,0 +1,23 @@ >> +From: Nicolas Dandrimont >> +Date: Tue, 1 May 2018 04:49:55 +0200 >> +Subject: Remove fonts.googleapis.com links for the bean-web template > > Could you add the URL of the upstream patch or discussion, if any? > > OK with these changes! > > Thanks, > Ludo=E2=80=99. Pushed! Thanks for your review! ------------=_1585840861-7684-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 31 Mar 2020 21:03:40 +0000 Received: from localhost ([127.0.0.1]:37107 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJO2n-0004Kt-Vx for submit@debbugs.gnu.org; Tue, 31 Mar 2020 17:03:40 -0400 Received: from lists.gnu.org ([209.51.188.17]:35091) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJO2m-0004Kk-Gq for submit@debbugs.gnu.org; Tue, 31 Mar 2020 17:03:32 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:34353) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jJO2k-0006ny-0K for guix-patches@gnu.org; Tue, 31 Mar 2020 17:03:32 -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.8 required=5.0 tests=BAYES_50,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 1jJO2h-0001dn-D3 for guix-patches@gnu.org; Tue, 31 Mar 2020 17:03:29 -0400 Received: from dustycloud.org ([50.116.34.160]:44716) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jJO2g-0001Zi-FQ for guix-patches@gnu.org; Tue, 31 Mar 2020 17:03:26 -0400 Received: from twig (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 2ED8F26650 for ; Tue, 31 Mar 2020 17:03:24 -0400 (EDT) User-agent: mu4e 1.2.0; emacs 26.3 From: Christopher Lemmer Webber To: guix-patches@gnu.org Subject: Add beancount Date: Tue, 31 Mar 2020 17:03:23 -0400 Message-ID: <87tv24ck4k.fsf@dustycloud.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 50.116.34.160 X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: submit 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: -0.0 (/) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/plain Yet Another Plaintext Accounting System! --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-beancount.patch Content-Transfer-Encoding: quoted-printable From=2027274e0075f7215693cc4a51482c68ce00167d37 Mon Sep 17 00:00:00 2001 From: Christopher Lemmer Webber Date: Tue, 31 Mar 2020 16:57:15 -0400 Subject: [PATCH] gnu: Add beancount. * gnu/packages/finance.scm (beancount): New variable. * gnu/packages/patches/beancount-disable-googleapis-fonts.patch: New file. =2D-- gnu/packages/finance.scm | 42 +++++++++++++++++++ .../beancount-disable-googleapis-fonts.patch | 23 ++++++++++ 2 files changed, 65 insertions(+) create mode 100644 gnu/packages/patches/beancount-disable-googleapis-fonts= .patch diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index 7bf8f4fc6e..53bbbb2f84 100644 =2D-- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -16,6 +16,7 @@ ;;; Copyright =C2=A9 2019 Martin Becze ;;; Copyright =C2=A9 2019 Sebastian Schott ;;; Copyright =C2=A9 2020 Kei Kebreau +;;; Copyright =C2=A9 2020 Christopher Lemmer Webber ;;; ;;; This file is part of GNU Guix. ;;; @@ -1398,3 +1399,44 @@ entity management.") electronic cash system. This package provides a command line client and a Qt GUI.") (license license:expat))) + +(define-public beancount + (package + (name "beancount") + (version "2.2.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "beancount" version)) + (sha256 + (base32 + "0pcfl2rx2ng06i4f9izdpnlnb1k0rdzsckbzzn4cn4ixfzyssm0m")) + (patches (search-patches "beancount-disable-googleapis-fonts.patch"= )))) + (build-system python-build-system) + (arguments + `(#:tests? #f ; Says test is missing, not sure why + #:phases + (modify-phases %standard-phases + ;; Not importing the googleapis package for now + (add-after 'unpack 'ignore-googleapis + (lambda _ + (substitute* "setup.py" + (("'google-api-python-client',") "")) + #t))))) + (propagated-inputs + `(("python-beautifulsoup4" ,python-beautifulsoup4) + ("python-bottle" ,python-bottle) + ("python-chardet" ,python-chardet) + ("python-dateutil" ,python-dateutil) + ("python-lxml" ,python-lxml) + ("python-magic" ,python-magic) + ("python-ply" ,python-ply) + ("python-pytest" ,python-pytest) + ("python-requests" ,python-requests))) + (home-page "http://furius.ca/beancount") + (synopsis "Command-line Double-Entry Accounting") + (description + "A double-entry bookkeeping computer language that lets you define +financial transaction records in a text file, read them in memory, generate +a variety of reports from them, and provides a web interface.") + (license license:gpl2))) diff --git a/gnu/packages/patches/beancount-disable-googleapis-fonts.patch = b/gnu/packages/patches/beancount-disable-googleapis-fonts.patch new file mode 100644 index 0000000000..f3ef574ddc =2D-- /dev/null +++ b/gnu/packages/patches/beancount-disable-googleapis-fonts.patch @@ -0,0 +1,23 @@ +From: Nicolas Dandrimont +Date: Tue, 1 May 2018 04:49:55 +0200 +Subject: Remove fonts.googleapis.com links for the bean-web template + +--- + beancount/web/web.html | 4 ---- + 1 file changed, 4 deletions(-) + +diff --git a/beancount/web/web.html b/beancount/web/web.html +index 3995ce2..ec9e707 100644 +--- a/beancount/web/web.html ++++ b/beancount/web/web.html +@@ -3,10 +3,6 @@ + + +=20 +- +- +- +- + + {{title}}: {{pagetitle}} +=20 \ No newline at end of file =2D-=20 2.25.1 --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEUQqGKOKndniPjHCcS8Alkl/49NMFAl6DsBsACgkQS8Alkl/4 9NPQnw/+Lsoz9iyY9OkcSC11hn/ddnUKsCEPmVCd1ZsfYbFq7cm2k1ksiN4zR8k0 WKF+C2MCGldM2rRAr3YIJYUxNzyiTikSVaIVUcSArAuP5V9/SrO1UqeXurgLUPdj i0XhD58+3HMOu/LqUGntORQVXA0YySTB08j1cohNXIVO9iUErD77cr7b9Pj87AfZ tZQ5eRggungj62uB3BVlYG3FrM/CCCrZDXBWAkrlQOnF07HcIdYOmxI4IaGOkdSN 4Rn9KJnxkphrWkOmEpp7gRU15HLkmNOu48gtixOv+Kv66pf2bevV7+uhZGNHDSHc t+h2g83NG55PLeyUFF804NVVkmVOzkpJ0EVkuQUNBNKstCw+6JV0/qvZHiNSyGbD dDFdeG9zM7QCSr//8Cl7s6eSG1t3HEjGQHUHenbPbj/hyaS8agAzqI9R6Muk5aAc PVw0bhTncdOa2/7bKON0JRLz/QmLzLaOTz3PnaKWafpw8+kgr/dwnWUU1cIQzZMD 2ZeuiuPaDK6km0cNDfBmeCyaCOxe+tc3C+BhUSB8cKFivaaB0Uo4bfsFZ3bfcllN yTlyOMB5ScUgtvsp6hcOSRy1Q9I/p4UqOKDO+TKc+NAkrMlUllZfI7rnGnwQvkvs 9keJ1hfeBB+bWXoS0VakZc4atczbPRhK7x2ebIpBEhvZ9V6QGEo= =a8rG -----END PGP SIGNATURE----- --==-=-=-- ------------=_1585840861-7684-1--