GNU bug report logs -
#77284
[PATCH] gnu: emacs-org-node: Update to 2.4.1.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 77284 in the body.
You can then email your comments to 77284 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#77284
; Package
guix-patches
.
(Wed, 26 Mar 2025 14:59:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Cayetano Santos <csantosb <at> inventati.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 26 Mar 2025 14:59:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-org-node): Update to 2.4.1.
Change-Id: I8412633c31fd7c5ce2159323d4720dd64e590ffd
---
gnu/packages/emacs-xyz.scm | 33 +++++++++++++++++++++++----------
1 file changed, 23 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index da30b4776c..3c99681a88 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -40003,26 +40003,39 @@ (define-public emacs-org-roam
(define-public emacs-org-node
(package
(name "emacs-org-node")
- (version "2.1.2")
+ (version "2.4.1")
(source (origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/meedstrom/org-node.git")
+ (url "https://github.com/meedstrom/org-node/")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
- "05f5ga66q2vyv48z95lky0hzbs2zq5bvppkx7bbyv252jzxbibw3"))))
+ "0yvc61ydz8c8wms5pwb14v67da7w4l3xvd5w4x83qf81d9f44w9v"))))
(build-system emacs-build-system)
+ (arguments
+ '(#:tests? #f ; fails
+ #:test-command '("./makem.sh" "tests")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'dont-git
+ (lambda _
+ (substitute* "makem.sh"
+ (("^cd.*\"")
+ "")))))))
(propagated-inputs
- (list emacs-dash
- emacs-el-job
+ (list emacs-el-job
emacs-llama
- emacs-magit
- emacs-org
- emacs-persist
- emacs-transient))
- (home-page "https://github.com/meedstrom/org-node")
+ emacs-magit))
+ ;; tests
+ (inputs
+ (list emacs-buttercup
+ emacs-dash
+ util-linux
+ grep
+ sed))
+ (home-page "https://github.com/meedstrom/org-node/")
(synopsis "Non-hierarchical note-taking with Org-mode, faster than
org-roam")
(description "This package provides a notetaking system like Roam,
base-commit: 0c83bcfa812f49d5d8c91255548aad46ef3bfcb6
--
2.49.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77284
; Package
guix-patches
.
(Sat, 29 Mar 2025 15:18:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 77284 <at> debbugs.gnu.org (full text, mbox):
Hi Cayetano,
Cayetano Santos <csantosb <at> inventati.org> writes:
> * gnu/packages/emacs-xyz.scm (emacs-org-node): Update to 2.4.1.
>
> Change-Id: I8412633c31fd7c5ce2159323d4720dd64e590ffd
> ---
> gnu/packages/emacs-xyz.scm | 33
> +++++++++++++++++++++++----------
> 1 file changed, 23 insertions(+), 10 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm
> b/gnu/packages/emacs-xyz.scm
> index da30b4776c..3c99681a88 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -40003,26 +40003,39 @@ (define-public emacs-org-roam
> (define-public emacs-org-node
> (package
> (name "emacs-org-node")
> - (version "2.1.2")
> + (version "2.4.1")
> (source (origin
> (method git-fetch)
> (uri (git-reference
> - (url
> "https://github.com/meedstrom/org-node.git")
> + (url
> "https://github.com/meedstrom/org-node/")
> (commit version)))
> (file-name (git-file-name name version))
> (sha256
> (base32
> -
> "05f5ga66q2vyv48z95lky0hzbs2zq5bvppkx7bbyv252jzxbibw3"))))
> +
> "0yvc61ydz8c8wms5pwb14v67da7w4l3xvd5w4x83qf81d9f44w9v"))))
> (build-system emacs-build-system)
> + (arguments
> + '(#:tests? #f ; fails
> + #:test-command '("./makem.sh" "tests")
> + #:phases
> + (modify-phases %standard-phases
> + (add-after 'unpack 'dont-git
> + (lambda _
> + (substitute* "makem.sh"
> + (("^cd.*\"")
> + "")))))))
> (propagated-inputs
> - (list emacs-dash
> - emacs-el-job
> + (list emacs-el-job
> emacs-llama
> - emacs-magit
> - emacs-org
> - emacs-persist
> - emacs-transient))
> - (home-page "https://github.com/meedstrom/org-node")
> + emacs-magit))
> + ;; tests
> + (inputs
> + (list emacs-buttercup
> + emacs-dash
> + util-linux
> + grep
> + sed))
Any test dependencies need to be moved to native-inputs. Could
you please do that and send a v2?
Thanks,
-- Ian
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77284
; Package
guix-patches
.
(Tue, 01 Apr 2025 08:35:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 77284 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-org-node): Update to 2.4.1.
Change-Id: I8412633c31fd7c5ce2159323d4720dd64e590ffd
---
gnu/packages/emacs-xyz.scm | 33 +++++++++++++++++++++++----------
1 file changed, 23 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b5dc07acbb..a00c641f58 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -40104,26 +40104,39 @@ (define-public emacs-org-roam
(define-public emacs-org-node
(package
(name "emacs-org-node")
- (version "2.1.2")
+ (version "2.4.1")
(source (origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/meedstrom/org-node.git")
+ (url "https://github.com/meedstrom/org-node/")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
- "05f5ga66q2vyv48z95lky0hzbs2zq5bvppkx7bbyv252jzxbibw3"))))
+ "0yvc61ydz8c8wms5pwb14v67da7w4l3xvd5w4x83qf81d9f44w9v"))))
(build-system emacs-build-system)
+ (arguments
+ '(#:tests? #f ; fails
+ #:test-command '("./makem.sh" "tests")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'dont-git
+ (lambda _
+ (substitute* "makem.sh"
+ (("^cd.*\"")
+ "")))))))
(propagated-inputs
- (list emacs-dash
- emacs-el-job
+ (list emacs-el-job
emacs-llama
- emacs-magit
- emacs-org
- emacs-persist
- emacs-transient))
- (home-page "https://github.com/meedstrom/org-node")
+ emacs-magit))
+ ;; tests
+ (native-inputs
+ (list emacs-buttercup
+ emacs-dash
+ util-linux
+ grep
+ sed))
+ (home-page "https://github.com/meedstrom/org-node/")
(synopsis "Non-hierarchical note-taking with Org-mode, faster than
org-roam")
(description "This package provides a notetaking system like Roam,
base-commit: bcd207005c4ae1b0ae11ebe932047218ffe6ee83
--
2.49.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77284
; Package
guix-patches
.
(Thu, 03 Apr 2025 04:20:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 77284 <at> debbugs.gnu.org (full text, mbox):
Hi Cayetano,
Thanks for the updated patch. Pushed as 4f0b03a5dd.
-- Ian
bug closed, send any further explanations to
77284 <at> debbugs.gnu.org and Cayetano Santos <csantosb <at> inventati.org>
Request was from
Ian Eure <ian <at> retrospec.tv>
to
control <at> debbugs.gnu.org
.
(Thu, 03 Apr 2025 04:20:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 01 May 2025 11:24:14 GMT)
Full text and
rfc822 format available.
This bug report was last modified 51 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.