From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 05 12:48:00 2020 Received: (at submit) by debbugs.gnu.org; 5 Mar 2020 17:48:00 +0000 Received: from localhost ([127.0.0.1]:43694 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9ubI-0001aP-G1 for submit@debbugs.gnu.org; Thu, 05 Mar 2020 12:48:00 -0500 Received: from lists.gnu.org ([209.51.188.17]:59570) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9ubH-0001aI-LK for submit@debbugs.gnu.org; Thu, 05 Mar 2020 12:48:00 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:45370) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j9ubF-0002WY-W7 for guix-patches@gnu.org; Thu, 05 Mar 2020 12:47:59 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_20,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 1j9ubE-0008OV-EQ for guix-patches@gnu.org; Thu, 05 Mar 2020 12:47:57 -0500 Received: from mx1.riseup.net ([198.252.153.129]:48678) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j9ubE-0008NR-4v for guix-patches@gnu.org; Thu, 05 Mar 2020 12:47:56 -0500 Received: from bell.riseup.net (bell-pn.riseup.net [10.0.1.178]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "Sectigo RSA Domain Validation Secure Server CA" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 48YJB23WNfzFdRj for ; Thu, 5 Mar 2020 09:47:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1583430474; bh=JHgbGDsG6LQpffE3wUsEsHHaathxZV3ec1vfqPS1tOo=; h=From:To:Cc:Subject:Date:From; b=YfyO7YyRU/VBcmeZQ2tWfQ9NV3NQdkqv+ZyZiuzjLRM8+0btqhQREJrW6XADvx/M0 OB/Vmyy0OkQPsWJWuIl2yahMEhirwnKYuBQjj1xz7aVkDTBc//ZJ+vviJhc9E0vAka sVSsIu64J+40trb1kOMkpr3SnkfK5JbPiL7MMauw= X-Riseup-User-ID: FDE53F78F0C63E2F3A14C3E81ED5562DA5C6CD82F4DAD51C47E819015DFC46D8 Received: from [127.0.0.1] (localhost [127.0.0.1]) by bell.riseup.net (Postfix) with ESMTPSA id 48YJ9t2gDRzJrNx; Thu, 5 Mar 2020 09:47:41 -0800 (PST) From: Martin Becze To: guix-patches@gnu.org Subject: [PATCH] gnu: Added emacs-org-journal Date: Thu, 5 Mar 2020 12:47:23 -0500 Message-Id: <20200305174723.15314-1-mjbecze@riseup.net> 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] [fuzzy] X-Received-From: 198.252.153.129 X-Spam-Score: 0.2 (/) X-Debbugs-Envelope-To: submit Cc: Martin Becze 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.8 (/) * gnu/packages/emacs-xyz.scm (emacs-org-journal): New Variable. --- gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 19c4ed7571..f20ea14174 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -60,6 +60,7 @@ ;;; Copyright =C2=A9 2020 Paul Garlick ;;; Copyright =C2=A9 2020 Robert Smith ;;; Copyright =C2=A9 2020 Evan Straw +;;; Copyright =C2=A9 2020 Martin Becze ;;; ;;; This file is part of GNU Guix. ;;; @@ -21732,3 +21733,30 @@ supports generation of phonetic and numeric pass= words.") Separated Value) files. It follows the format as defined in RFC 4180 \"= Common Format and MIME Type for CSV Files\" (@url{http://tools.ietf.org/html/rf= c4180}).") (license license:gpl3+))) + +(define-public emacs-org-journal + (package + (name "emacs-org-journal") + (version "2.0.0") + (home-page "https://github.com/bastibe/org-journal") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "18dqd0jy2x530lk0h4fcn9cld9qh4w7b3vxa60fpiia628vsv1dg")))) + (build-system emacs-build-system) + (synopsis "A simple org-mode based journaling mode") + (description "@code{org-journal} maintains a set of files, depending= on the value + of @{org-journal-file-type}, a file represents a day, week, month or ye= ar. When +@code{org-journal-file-type} is set to =3D=E2=80=99daily=3D, each file r= epresent a day. In case +@{org-journal-file-type} is set to =3D=E2=80=99weekly=3D, a file represe= nts a week, etc. + Convenient bindings allow the creation of journal records in the curren= t daily, + weekly, monthly or yearly file and search within all records or specifi= ed time + intervals. All records can be browsed and searched from the Emacs Calen= dar for + convenience.") + (license license:bsd-3))) --=20 2.25.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Mar 05 15:19:03 2020 Received: (at 39931) by debbugs.gnu.org; 5 Mar 2020 20:19:03 +0000 Received: from localhost ([127.0.0.1]:43760 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9wxS-0005wC-Tz for submit@debbugs.gnu.org; Thu, 05 Mar 2020 15:19:03 -0500 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:34861) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j9wxQ-0005vg-37 for 39931@debbugs.gnu.org; Thu, 05 Mar 2020 15:19:01 -0500 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id 37B5E20005; Thu, 5 Mar 2020 20:18:52 +0000 (UTC) From: Nicolas Goaziou To: Martin Becze Subject: Re: [bug#39931] [PATCH] gnu: Added emacs-org-journal References: <20200305174723.15314-1-mjbecze@riseup.net> Date: Thu, 05 Mar 2020 21:18:52 +0100 In-Reply-To: <20200305174723.15314-1-mjbecze@riseup.net> (Martin Becze's message of "Thu, 5 Mar 2020 12:47:23 -0500") Message-ID: <87a74uk11v.fsf@nicolasgoaziou.fr> 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-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39931 Cc: 39931@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.7 (-) Hello, Martin Becze writes: > * gnu/packages/emacs-xyz.scm (emacs-org-journal): New Variable. Thank you! > +(define-public emacs-org-journal > + (package > + (name "emacs-org-journal") > + (version "2.0.0") > + (home-page "https://github.com/bastibe/org-journal") Usually, `home-page' is lower in the package definition, right above `synop= sis'. > + (source > + (origin > + (method git-fetch) > + (uri (git-reference > + (url home-page) It may be just me, but I'm not a big fan of this trick, because it binds two information that might be unrelated at some point. I suggest to use the full URL instead. OTOH, the above is not a strong argument either, so it's up to you. > + (commit version))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 > + "18dqd0jy2x530lk0h4fcn9cld9qh4w7b3vxa60fpiia628vsv1dg")))) > + (build-system emacs-build-system) > + (synopsis "A simple org-mode based journaling mode") I suggest "Simple Org mode based journaling mode". In any case, I think "guix lint" complains when a synopsis starts with an article. > + (description "@code{org-journal} maintains a set of files, depending= on the value > + of @{org-journal-file-type}, a file represents a day, week, month or ye= ar. When > +@code{org-journal-file-type} is set to =3D=E2=80=99daily=3D, each file r= epresent a day. In case > +@{org-journal-file-type} is set to =3D=E2=80=99weekly=3D, a file represe= nts > a week, etc. "Org Journal maintains a set of files, which may represent a day, a week, a month or a year." IOW, I think description should not leak the innards of the package. > + Convenient bindings allow the creation of journal records in the curren= t daily, > + weekly, monthly or yearly file and search within all records or specifi= ed time > + intervals. All records can be browsed and searched from the Emacs Calen= dar for > + convenience.") You need to add two spaces after full stops. Could you send an updated patch? Regards, --=20 Nicolas Goaziou From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 06 11:05:28 2020 Received: (at 39931) by debbugs.gnu.org; 6 Mar 2020 16:05:28 +0000 Received: from localhost ([127.0.0.1]:45783 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jAFTc-0000Iv-B5 for submit@debbugs.gnu.org; Fri, 06 Mar 2020 11:05:28 -0500 Received: from mx1.riseup.net ([198.252.153.129]:59426) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jAFTZ-0000Ik-Br for 39931@debbugs.gnu.org; Fri, 06 Mar 2020 11:05:26 -0500 Received: from bell.riseup.net (bell-pn.riseup.net [10.0.1.178]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "Sectigo RSA Domain Validation Secure Server CA" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 48Yss34vrszFfMX; Fri, 6 Mar 2020 08:05:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1583510724; bh=+JknKgOlNB0zooy1rbHYXHrfQysS+HvRYfInaWsEezg=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=hktYEpZzuTwwo2+TZovexXitxIQktx7ZCEmlbl89IfYh8c3kutAEK1R2FOBlhozHH 74g+e6XCJgDN9E7otluBMuItAE7ct53uDcufwdf5GA/eFu7dLKIiBNNMosKHE2mBr3 WOxYTOaFhmVQac0kmIdhYM4TgLXXst9ntjl7YTwQ= X-Riseup-User-ID: 309B9A82F65CBDAF1026415851E9496A2B9C9D7F113604943E2745B74CF7AA65 Received: from [127.0.0.1] (localhost [127.0.0.1]) by bell.riseup.net (Postfix) with ESMTPSA id 48Yss24nDSzJqYn; Fri, 6 Mar 2020 08:05:10 -0800 (PST) Subject: Re: [bug#39931] [PATCH] gnu: Added emacs-org-journal To: Nicolas Goaziou References: <20200305174723.15314-1-mjbecze@riseup.net> <87a74uk11v.fsf@nicolasgoaziou.fr> From: Martin Becze Message-ID: <8283ce01-fb0a-9591-f8bd-3cf36e8c4332@riseup.net> Date: Fri, 6 Mar 2020 11:05:07 -0500 MIME-Version: 1.0 In-Reply-To: <87a74uk11v.fsf@nicolasgoaziou.fr> Content-Type: multipart/mixed; boundary="------------104C13DC4923115A0610222D" Content-Language: en-US X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39931 Cc: 39931@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.7 (-) This is a multi-part message in MIME format. --------------104C13DC4923115A0610222D Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Thanks for the review Nicolas! Attached is an updated patch. On 3/5/20 3:18 PM, Nicolas Goaziou wrote: > Hello, > > Martin Becze writes: > >> * gnu/packages/emacs-xyz.scm (emacs-org-journal): New Variable. > > Thank you! > >> +(define-public emacs-org-journal >> + (package >> + (name "emacs-org-journal") >> + (version "2.0.0") >> + (home-page "https://github.com/bastibe/org-journal") > > Usually, `home-page' is lower in the package definition, right above `synopsis'. > >> + (source >> + (origin >> + (method git-fetch) >> + (uri (git-reference >> + (url home-page) > > It may be just me, but I'm not a big fan of this trick, because it binds > two information that might be unrelated at some point. I suggest to use > the full URL instead. > > OTOH, the above is not a strong argument either, so it's up to you. > >> + (commit version))) >> + (file-name (git-file-name name version)) >> + (sha256 >> + (base32 >> + "18dqd0jy2x530lk0h4fcn9cld9qh4w7b3vxa60fpiia628vsv1dg")))) >> + (build-system emacs-build-system) >> + (synopsis "A simple org-mode based journaling mode") > > I suggest "Simple Org mode based journaling mode". In any case, I think > "guix lint" complains when a synopsis starts with an article. > >> + (description "@code{org-journal} maintains a set of files, depending on the value >> + of @{org-journal-file-type}, a file represents a day, week, month or year. When >> +@code{org-journal-file-type} is set to =’daily=, each file represent a day. In case >> +@{org-journal-file-type} is set to =’weekly=, a file represents >> a week, etc. > > "Org Journal maintains a set of files, which may represent a day, > a week, a month or a year." > > IOW, I think description should not leak the innards of the package. > >> + Convenient bindings allow the creation of journal records in the current daily, >> + weekly, monthly or yearly file and search within all records or specified time >> + intervals. All records can be browsed and searched from the Emacs Calendar for >> + convenience.") > > You need to add two spaces after full stops. > > Could you send an updated patch? > > Regards, > --------------104C13DC4923115A0610222D Content-Type: text/x-patch; charset=UTF-8; name="v2-0001-gnu-Added-emacs-org-journal.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="v2-0001-gnu-Added-emacs-org-journal.patch" >From a767bfa8094be4bcd5fcdca9c4f4862114b5a07a Mon Sep 17 00:00:00 2001 From: Martin Becze Date: Thu, 5 Mar 2020 12:40:42 -0500 Subject: [PATCH v2] gnu: Added emacs-org-journal * gnu/packages/emacs-xyz.scm (emacs-org-journal): New Variable. --- gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 19c4ed7571..f20ea14174 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -60,6 +60,7 @@ ;;; Copyright © 2020 Paul Garlick ;;; Copyright © 2020 Robert Smith ;;; Copyright © 2020 Evan Straw +;;; Copyright © 2020 Martin Becze ;;; ;;; This file is part of GNU Guix. ;;; @@ -21732,3 +21733,30 @@ supports generation of phonetic and numeric passwords.") Separated Value) files. It follows the format as defined in RFC 4180 \"Common Format and MIME Type for CSV Files\" (@url{http://tools.ietf.org/html/rfc4180}).") (license license:gpl3+))) + +(define-public emacs-org-journal + (package + (name "emacs-org-journal") + (version "2.0.0") + (home-page "https://github.com/bastibe/org-journal") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "18dqd0jy2x530lk0h4fcn9cld9qh4w7b3vxa60fpiia628vsv1dg")))) + (build-system emacs-build-system) + (synopsis "A simple org-mode based journaling mode") + (description "@code{org-journal} maintains a set of files, depending on the value + of @{org-journal-file-type}, a file represents a day, week, month or year. When +@code{org-journal-file-type} is set to =’daily=, each file represent a day. In case +@{org-journal-file-type} is set to =’weekly=, a file represents a week, etc. + Convenient bindings allow the creation of journal records in the current daily, + weekly, monthly or yearly file and search within all records or specified time + intervals. All records can be browsed and searched from the Emacs Calendar for + convenience.") + (license license:bsd-3))) -- 2.25.1 --------------104C13DC4923115A0610222D-- From debbugs-submit-bounces@debbugs.gnu.org Sat Mar 07 13:23:51 2020 Received: (at 39931) by debbugs.gnu.org; 7 Mar 2020 18:23:51 +0000 Received: from localhost ([127.0.0.1]:47536 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jAe74-0003W9-NL for submit@debbugs.gnu.org; Sat, 07 Mar 2020 13:23:51 -0500 Received: from mx1.riseup.net ([198.252.153.129]:41850) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jAe70-0003Vz-TC for 39931@debbugs.gnu.org; Sat, 07 Mar 2020 13:23:50 -0500 Received: from bell.riseup.net (unknown [10.0.1.178]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "Sectigo RSA Domain Validation Secure Server CA" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 48ZXtT687gzFdfM; Sat, 7 Mar 2020 10:23:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1583605426; bh=iHaaYZm5aiypvfwHR3MuqISfUP/tvCn5KcPTLrfScb0=; h=Subject:From:To:Cc:References:Date:In-Reply-To:From; b=RcxtarJhT3hlaBAhKvbqJRADKBbjrKxtveqV/hg80zFodrD5Xf2PeD3gSLgzmCMiw DHpZecbRkzGtjrd+d3I1EbDcqvPducmYAhqP0HCTfeatnr2oaxvx7YQyHqDIT6aRYg BNVL8LuGHX7SLrOdua6IL+Nz5+/3ThjjAisMMqeA= X-Riseup-User-ID: F37A2888583B14090FEF67EFCA7FE5E0583126C1F37C9B4100CAB658C4F7FEA4 Received: from [127.0.0.1] (localhost [127.0.0.1]) by bell.riseup.net (Postfix) with ESMTPSA id 48ZXtT00G2zJmhn; Sat, 7 Mar 2020 10:23:44 -0800 (PST) Subject: Re: [bug#39931] [PATCH] gnu: Added emacs-org-journal From: Martin Becze To: Nicolas Goaziou References: <20200305174723.15314-1-mjbecze@riseup.net> <87a74uk11v.fsf@nicolasgoaziou.fr> <8283ce01-fb0a-9591-f8bd-3cf36e8c4332@riseup.net> Message-ID: Date: Sat, 7 Mar 2020 13:23:41 -0500 MIME-Version: 1.0 In-Reply-To: <8283ce01-fb0a-9591-f8bd-3cf36e8c4332@riseup.net> Content-Type: multipart/mixed; boundary="------------6DE288B6E32B7942BE80AC2C" Content-Language: en-US X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39931 Cc: 39931@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.7 (-) This is a multi-part message in MIME format. --------------6DE288B6E32B7942BE80AC2C Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit opps i messed that the last patch file. Here is the correct one! On 3/6/20 11:05 AM, Martin Becze wrote: > Thanks for the review Nicolas! > > Attached is an updated patch. > > On 3/5/20 3:18 PM, Nicolas Goaziou wrote: >> Hello, >> >> Martin Becze writes: >> >>> * gnu/packages/emacs-xyz.scm (emacs-org-journal): New Variable. >> >> Thank you! >> >>> +(define-public emacs-org-journal >>> +  (package >>> +    (name "emacs-org-journal") >>> +    (version "2.0.0") >>> +    (home-page "https://github.com/bastibe/org-journal") >> >> Usually, `home-page' is lower in the package definition, right above >> `synopsis'. >> >>> +    (source >>> +     (origin >>> +       (method git-fetch) >>> +       (uri (git-reference >>> +             (url home-page) >> >> It may be just me, but I'm not a big fan of this trick, because it binds >> two information that might be unrelated at some point. I suggest to use >> the full URL instead. >> >> OTOH, the above is not a strong argument either, so it's up to you. >> >>> +             (commit version))) >>> +       (file-name (git-file-name name version)) >>> +       (sha256 >>> +        (base32 >>> +         "18dqd0jy2x530lk0h4fcn9cld9qh4w7b3vxa60fpiia628vsv1dg")))) >>> +    (build-system emacs-build-system) >>> +    (synopsis "A simple org-mode based journaling mode") >> >> I suggest "Simple Org mode based journaling mode". In any case, I think >> "guix lint" complains when a synopsis starts with an article. >> >>> +    (description "@code{org-journal} maintains a set of files, >>> depending on the value >>> + of @{org-journal-file-type}, a file represents a day, week, month >>> or year. When >>> +@code{org-journal-file-type} is set to =’daily=, each file represent >>> a day. In case >>> +@{org-journal-file-type} is set to =’weekly=, a file represents >>> a week, etc. >> >> "Org Journal maintains a set of files, which may represent a day, >> a week, a month or a year." >> >> IOW, I think description should not leak the innards of the package. >> >>> + Convenient bindings allow the creation of journal records in the >>> current daily, >>> + weekly, monthly or yearly file and search within all records or >>> specified time >>> + intervals. All records can be browsed and searched from the Emacs >>> Calendar for >>> + convenience.") >> >> You need to add two spaces after full stops. >> >> Could you send an updated patch? >> >> Regards, >> --------------6DE288B6E32B7942BE80AC2C Content-Type: text/x-patch; charset=UTF-8; name="v3-0001-gnu-Added-emacs-org-journal.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="v3-0001-gnu-Added-emacs-org-journal.patch" >From b9f584ae41d70209feb230d281df420e0e30c239 Mon Sep 17 00:00:00 2001 From: Martin Becze Date: Thu, 5 Mar 2020 12:40:42 -0500 Subject: [PATCH v3] gnu: Added emacs-org-journal * gnu/packages/emacs-xyz.scm (emacs-org-journal): New Variable. --- gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 19c4ed7571..2cc7d3a485 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -60,6 +60,7 @@ ;;; Copyright © 2020 Paul Garlick ;;; Copyright © 2020 Robert Smith ;;; Copyright © 2020 Evan Straw +;;; Copyright © 2020 Martin Becze ;;; ;;; This file is part of GNU Guix. ;;; @@ -21732,3 +21733,29 @@ supports generation of phonetic and numeric passwords.") Separated Value) files. It follows the format as defined in RFC 4180 \"Common Format and MIME Type for CSV Files\" (@url{http://tools.ietf.org/html/rfc4180}).") (license license:gpl3+))) + +(define-public emacs-org-journal + (package + (name "emacs-org-journal") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/bastibe/org-journal.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "18dqd0jy2x530lk0h4fcn9cld9qh4w7b3vxa60fpiia628vsv1dg")))) + (build-system emacs-build-system) + (home-page "https://github.com/bastibe/org-journal") + (synopsis "Simple org-mode journaling mode") + (description "Adapted from @url{https://www.emacswiki.org/emacs/PersonalDiary} +Functions to maintain a simple personal diary / journal using in Emacs. +Convenient bindings allow the creation of journal records in the current daily, +weekly, monthly or yearly file and search within all records or specified time +intervals. All records can be browsed and searched from the Emacs Calendar for +convenience. All entries in a specified TODO state will be carried over to the +next day.") + (license license:bsd-3))) -- 2.25.1 --------------6DE288B6E32B7942BE80AC2C-- From debbugs-submit-bounces@debbugs.gnu.org Sun Mar 08 06:25:08 2020 Received: (at 39931-done) by debbugs.gnu.org; 8 Mar 2020 10:25:08 +0000 Received: from localhost ([127.0.0.1]:47941 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jAt7L-0002pN-Iy for submit@debbugs.gnu.org; Sun, 08 Mar 2020 06:25:08 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:39311) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jAt7J-0002o0-3Y for 39931-done@debbugs.gnu.org; Sun, 08 Mar 2020 06:25:05 -0400 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id 418F520002; Sun, 8 Mar 2020 10:24:58 +0000 (UTC) From: Nicolas Goaziou To: Martin Becze Subject: Re: [bug#39931] [PATCH] gnu: Added emacs-org-journal References: <20200305174723.15314-1-mjbecze@riseup.net> <87a74uk11v.fsf@nicolasgoaziou.fr> <8283ce01-fb0a-9591-f8bd-3cf36e8c4332@riseup.net> Date: Sun, 08 Mar 2020 11:24:57 +0100 In-Reply-To: (Martin Becze's message of "Sat, 7 Mar 2020 13:23:41 -0500") Message-ID: <877dzvdtza.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39931-done Cc: 39931-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.7 (-) Hello, Martin Becze writes: > opps i messed that the last patch file. Here is the correct one! Thank you! I slightly reworded the beginning of the description so it now starts with a full sentence. Applied as 1eb3b2b666fd6ae5c0e3b09aa08c97b9d23e26be. Regards, -- Nicolas Goaziou From unknown Sat Jun 14 18:38:30 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 05 Apr 2020 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator