This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 2f15b032c9 gnu: emacs-org-gnosis: Update to 0.2.2.
2f15b032c9 is described below

commit 2f15b032c9a6d243228d53794f009c0c1cc9f5e1
Author: Thanos Apollo <[email protected]>
AuthorDate: Fri Feb 27 22:13:21 2026 +0200

    gnu: emacs-org-gnosis: Update to 0.2.2.
    
    * gnu/packages/emacs-xyz.scm (emacs-org-gnosis): Update to 0.2.2.
    [arguments]<#tests?>: Remove.
    <#test-command>: Set it.
    <#emacs>: Set to 'emacs-no-x'.
    <#phases>:  Add 'patch-makefile', 'set-home' and 'make-info'.
    [native-inputs]: Add texinfo.
    [synopsis, description]: Update to match upstream.
    
    Merges guix/guix!6757
    
    Change-Id: Idcd4a58a240e5d74fdad8b25ba881d891881eca5
    Signed-off-by: Cayetano Santos <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 62 +++++++++++++++++++++++++++++-----------------
 1 file changed, 39 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index abd8addd43..6d8edbc662 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -44235,29 +44235,45 @@ across all Org export back-ends.")
       (license license:gpl3+))))
 
 (define-public emacs-org-gnosis
-  (let ((commit "7db80112f08547ae4526f4ca645dbe6e224d27c6")) ;version bump
-    (package
-      (name "emacs-org-gnosis")
-      (version "0.1.1")
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-                (url "https://git.thanosapollo.org/org-gnosis";)
-                (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "0y4qna0m5pdf2m53sac792rzsyp8lm7lfcl92981zwx3sqfy25gv"))))
-      (build-system emacs-build-system)
-      (arguments (list #:tests? #f))    ; no tests
-      (propagated-inputs (list emacs-compat emacs-emacsql))
-      (home-page "https://thanosapollo.org/projects/org-gnosis/";)
-      (synopsis "Roam-like note taking system")
-      (description
-       "Org Gnosis is a knowledge management tool that leverages Org mode for
-storing notes and journal entries, integrating them with an SQLite database
-for efficient retrieval and relationship mapping.")
-      (license license:gpl3+))))
+  (package
+    (name "emacs-org-gnosis")
+    (version "0.2.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://git.thanosapollo.org/org-gnosis";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "01v0dbzwncmfzs12j1vlsqxv2s9bcib6pb18cgyn8xqrpmkw4vfm"))))
+    (build-system emacs-build-system)
+    (arguments
+     (list #:test-command #~(list "make" "test")
+           #:emacs emacs-no-x   ; tests require built-in SQLite support
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'patch-makefile
+                 (lambda _
+                   (substitute* "Makefile"
+                     (("guix shell -m manifest.scm -- ") ""))))
+               (add-before 'check 'set-home
+                 (lambda _
+                   (setenv "HOME" (getenv "TMPDIR"))))
+               (add-before 'install 'make-info
+                 (lambda _ (invoke "make" "doc"))))))
+    (native-inputs (list texinfo))
+    (propagated-inputs (list emacs-compat emacs-emacsql))
+    (home-page "https://thanosapollo.org/projects/org-gnosis/";)
+    (synopsis "Zettelkasten-style note-taking system for Emacs")
+    (description
+     "Org Gnosis is a note-taking system that implements Zettelkasten-style
+linked notes with an SQLite database for indexing.  It functions as an
+independent module, designed to integrate with Gnosis (a knowledge management
+system with spaced repetition) but usable standalone.  Features include
+backlinks, tag-based organization, daily journaling, and optional
+@code{.gpg} encryption.")
+    (license license:gpl3+)))
 
 (define-public emacs-uml-mode
   ;; Package has no release.  Version is extracted from "Version:" keyword in

Reply via email to