GNU bug report logs - #48104
[PATCH] gnu: emacs-org-roam: Update to 1.2.4.

Previous Next

Package: guix-patches;

Reported by: Xinglu Chen <public <at> yoctocell.xyz>

Date: Thu, 29 Apr 2021 18: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 48104 in the body.
You can then email your comments to 48104 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#48104; Package guix-patches. (Thu, 29 Apr 2021 18:16:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Xinglu Chen <public <at> yoctocell.xyz>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 29 Apr 2021 18:16:02 GMT) Full text and rfc822 format available.

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

From: Xinglu Chen <public <at> yoctocell.xyz>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: emacs-org-roam: Update to 1.2.4.
Date: Thu, 29 Apr 2021 20:15:14 +0200
* gnu/packages/emacs-xyz.scm (emacs-org-roam): Update to 1.2.4.
[native-inputs]: Add texinfo.
[arguments]: Install image and Texinfo documentation.
---
 gnu/packages/emacs-xyz.scm | 66 +++++++++++++++++++++++---------------
 1 file changed, 40 insertions(+), 26 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ef26d19506..c5e66e5e92 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -26875,36 +26875,50 @@ snippets for Emacs.")
       (license license:expat))))
 
 (define-public emacs-org-roam
-  (let ((commit "8ad57b121831eda8d226faa14ff2ba7ab652849c")
-        (revision "0")
-        (version "1.2.3"))
-    (package
-      (name "emacs-org-roam")
-      (version (git-version version revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/org-roam/org-roam")
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "162qhb6rkpl1n0l8yhnwgagsx56ykaj9lchsny1id5z1257kgw9w"))))
-      (build-system emacs-build-system)
-      (propagated-inputs
-       `(("emacs-dash" ,emacs-dash)
-         ("emacs-emacsql-sqlite3" ,emacs-emacsql-sqlite3)
-         ("emacs-f" ,emacs-f)
-         ("emacs-org" ,emacs-org)
-         ("emacs-s" ,emacs-s)))
-      (home-page "https://github.com/org-roam/org-roam/")
-      (synopsis "Non-hierarchical note-taking with Org mode")
-      (description "Emacs Org Roam is a solution for taking non-hierarchical
+  (package
+    (name "emacs-org-roam")
+    (version "1.2.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/org-roam/org-roam")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "10jrnjq65lpg1x8d7lqc537yai9m6pdnfbzwr87fcyv6f8yii8xn"))))
+    (build-system emacs-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'install 'install-image
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (install-file "doc/images/org-ref-citelink.png"
+                             (string-append out "/share/info/images")))))
+         (add-after 'install-image 'make-info
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (with-directory-excursion "doc"
+                 (invoke "makeinfo" "-o" "org-roam.info" "org-roam.texi")
+                 (install-file "org-roam.info"
+                               (string-append out "/share/info")))))))))
+       (native-inputs
+        `(("texinfo" ,texinfo)))
+       (propagated-inputs
+        `(("emacs-dash" ,emacs-dash)
+          ("emacs-emacsql-sqlite3" ,emacs-emacsql-sqlite3)
+          ("emacs-f" ,emacs-f)
+          ("emacs-org" ,emacs-org)
+          ("emacs-s" ,emacs-s)))
+       (home-page "https://github.com/org-roam/org-roam/")
+       (synopsis "Non-hierarchical note-taking with Org mode")
+       (description "Emacs Org Roam is a solution for taking non-hierarchical
 notes with Org mode.  Notes are captured without hierarchy and are connected
 by tags.  Notes can be found and created quickly.  Org Roam should also work
 as a plug-and-play solution for anyone already using Org mode for their
 personal wiki.")
-      (license license:gpl3+))))
+       (license license:gpl3+)))
 
 (define-public emacs-org-roam-bibtex
   (package

base-commit: 7540f6915c0ea04412ffdc8d70acd7b063251e74
-- 
2.31.1






Reply sent to Nicolas Goaziou <mail <at> nicolasgoaziou.fr>:
You have taken responsibility. (Mon, 03 May 2021 23:04:02 GMT) Full text and rfc822 format available.

Notification sent to Xinglu Chen <public <at> yoctocell.xyz>:
bug acknowledged by developer. (Mon, 03 May 2021 23:04:02 GMT) Full text and rfc822 format available.

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

From: Nicolas Goaziou <mail <at> nicolasgoaziou.fr>
To: Xinglu Chen <public <at> yoctocell.xyz>
Cc: 48104-done <at> debbugs.gnu.org
Subject: Re: [bug#48104] [PATCH] gnu: emacs-org-roam: Update to 1.2.4.
Date: Tue, 04 May 2021 01:03:42 +0200
Hello,

Xinglu Chen <public <at> yoctocell.xyz> writes:

> * gnu/packages/emacs-xyz.scm (emacs-org-roam): Update to 1.2.4.
> [native-inputs]: Add texinfo.
> [arguments]: Install image and Texinfo documentation.

Applied. Thank you.

Regards,
-- 
Nicolas Goaziou




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

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

Previous Next


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