GNU bug report logs - #57026
[PATCH] gnu: Add emacs-denote.

Previous Next

Package: guix-patches;

Reported by: jgart <jgart <at> dismail.de>

Date: Sun, 7 Aug 2022 03:16:02 UTC

Severity: normal

Tags: patch

Done: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57026 in the body.
You can then email your comments to 57026 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#57026; Package guix-patches. (Sun, 07 Aug 2022 03:16:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to jgart <jgart <at> dismail.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sun, 07 Aug 2022 03:16:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: guix-patches <at> gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH] gnu: Add emacs-denote.
Date: Sat,  6 Aug 2022 22:15:42 -0500
* gnu/packages/emacs-xyz.scm (emacs-denote): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 08b2359577..2b360e53cc 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13617,6 +13617,28 @@ (define-public emacs-log4e
 you to deal with multiple log levels.")
     (license license:gpl3+)))
 
+(define-public emacs-denote
+  (package
+    (name "emacs-denote")
+    (version "0.4.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://git.sr.ht/~protesilaos/denote")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0vh0nc416yyhnqsp1vwk889iic0412hx4h1qf49b1gmzjy566v2n"))))
+    (build-system emacs-build-system)
+    (native-inputs (list texinfo))
+    (home-page "https://protesilaos.com/emacs/denote/")
+    (synopsis "Simple notes for Emacs")
+    (description
+"Denote aims to be a simple-to-use, focused-in-scope, and effective
+note-taking tool for Emacs.")
+    (license license:gpl3+)))
+
 (define-public emacs-logos
   (package
     (name "emacs-logos")
-- 
2.37.1





Information forwarded to guix-patches <at> gnu.org:
bug#57026; Package guix-patches. (Thu, 11 Aug 2022 03:07:01 GMT) Full text and rfc822 format available.

Message #8 received at 57026 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: 57026 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH v2] gnu: Add emacs-denote.
Date: Wed, 10 Aug 2022 22:06:27 -0500
* gnu/packages/emacs-xyz.scm (emacs-denote): New variable.

Just sending a v2 since 0.5.0 was released.

---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 690858ba6a..7df2262429 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13618,6 +13618,28 @@ (define-public emacs-log4e
 you to deal with multiple log levels.")
     (license license:gpl3+)))
 
+(define-public emacs-denote
+  (package
+    (name "emacs-denote")
+    (version "0.5.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://git.sr.ht/~protesilaos/denote")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0z2q0xl4h6x0b38582mgx4i1h21lrn4i508zj9siripqixzb95ak"))))
+    (build-system emacs-build-system)
+    (native-inputs (list texinfo))
+    (home-page "https://protesilaos.com/emacs/denote/")
+    (synopsis "Simple notes for Emacs")
+    (description
+"Denote aims to be a simple-to-use, focused-in-scope, and effective
+note-taking tool for Emacs.")
+    (license license:gpl3+)))
+
 (define-public emacs-logos
   (package
     (name "emacs-logos")
-- 
2.37.1





Information forwarded to guix-patches <at> gnu.org:
bug#57026; Package guix-patches. (Thu, 11 Aug 2022 13:57:02 GMT) Full text and rfc822 format available.

Message #11 received at 57026 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: 57026 <at> debbugs.gnu.org
Subject: Re: [PATCH v2] gnu: Add emacs-denote.
Date: Thu, 11 Aug 2022 08:56:50 -0500
On Wed, 10 Aug 2022 22:06:27 -0500 jgart <jgart <at> dismail.de> wrote:
> * gnu/packages/emacs-xyz.scm (emacs-denote): New variable.
> 
> Just sending a v2 since 0.5.0 was released.

This version might have a bug. I need to ask prot about it.

When calling `denote` it throws an error  and doesn't display the header lines (front matter?).

Is anybody able to reproduce that?

all best,

 jgart

> 
> ---
>  gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
> 
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index 690858ba6a..7df2262429 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -13618,6 +13618,28 @@ (define-public emacs-log4e
>  you to deal with multiple log levels.")
>      (license license:gpl3+)))
>  
> +(define-public emacs-denote
> +  (package
> +    (name "emacs-denote")
> +    (version "0.5.0")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://git.sr.ht/~protesilaos/denote")
> +             (commit version)))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "0z2q0xl4h6x0b38582mgx4i1h21lrn4i508zj9siripqixzb95ak"))))
> +    (build-system emacs-build-system)
> +    (native-inputs (list texinfo))
> +    (home-page "https://protesilaos.com/emacs/denote/")
> +    (synopsis "Simple notes for Emacs")
> +    (description
> +"Denote aims to be a simple-to-use, focused-in-scope, and effective
> +note-taking tool for Emacs.")
> +    (license license:gpl3+)))
> +
>  (define-public emacs-logos
>    (package
>      (name "emacs-logos")
> -- 
> 2.37.1
> 




Information forwarded to guix-patches <at> gnu.org:
bug#57026; Package guix-patches. (Thu, 11 Aug 2022 22:35:02 GMT) Full text and rfc822 format available.

Message #14 received at 57026 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: 57026 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH v3] gnu: Add emacs-denote.
Date: Thu, 11 Aug 2022 17:33:34 -0500
* gnu/packages/emacs-xyz.scm (emacs-denote): New variable.

0.5.1 is here! yayyyyyyyy

---
 gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 690858ba6a..53641a7afa 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13618,6 +13618,28 @@ (define-public emacs-log4e
 you to deal with multiple log levels.")
     (license license:gpl3+)))
 
+(define-public emacs-denote
+  (package
+    (name "emacs-denote")
+    (version "0.5.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://git.sr.ht/~protesilaos/denote")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "00f50dhw0x1hn87rc6vkrdwpybnbphg5z0g2c6c4r4cbgaiia8bi"))))
+    (build-system emacs-build-system)
+    (native-inputs (list texinfo))
+    (home-page "https://protesilaos.com/emacs/denote/")
+    (synopsis "Simple notes for Emacs")
+    (description
+"Denote aims to be a simple-to-use, focused-in-scope, and effective
+note-taking tool for Emacs.")
+    (license license:gpl3+)))
+
 (define-public emacs-logos
   (package
     (name "emacs-logos")
-- 
2.37.1





Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Fri, 26 Aug 2022 08:38:01 GMT) Full text and rfc822 format available.

Notification sent to jgart <jgart <at> dismail.de>:
bug acknowledged by developer. (Fri, 26 Aug 2022 08:38:02 GMT) Full text and rfc822 format available.

Message #19 received at 57026-done <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: jgart <jgart <at> dismail.de>
Cc: 57026-done <at> debbugs.gnu.org
Subject: Re: [bug#57026] [PATCH v3] gnu: Add emacs-denote.
Date: Fri, 26 Aug 2022 10:37:38 +0200
Hello,

jgart via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-denote): New variable.

Applied. Thank you.

> +    (description
> +"Denote aims to be a simple-to-use, focused-in-scope, and effective
> +note-taking tool for Emacs.")

I replaced this with the description from the homepage. It seemed more
useful.

Regards,
-- 
Nicolas Goaziou




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 23 Sep 2022 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 348 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.