guix_mirror_bot pushed a commit to branch master
in repository guix.
commit e1d9ab07d49415211f2c02a03a56c794e32e80c0
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Sat Jan 31 14:50:53 2026 +0100
gnu: emacs-org-supertag: Update to 5.6.3.
* gnu/packages/emacs-xyz.scm (emacs-org-supertag): Update to 5.6.3.
[arguments]: Add a phase to fix byte-compilation.
[propagated-inputs]: Add emacs-posframe.
Change-Id: I66c7f159fc5aae37221e94be9041c172055fdee6
---
gnu/packages/emacs-xyz.scm | 53 +++++++++++++++++++++++++---------------------
1 file changed, 29 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e688a5177d..0db665bb34 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -14247,31 +14247,36 @@ Features degrade gracefully when viewed from
terminal.")
(license license:gpl3+)))
(define-public emacs-org-supertag
- ;; No tags or releases.
- (let ((commit "2b17051c3d7e2e35db5b5fa66df0b6e67fa8d011")
- (revision "0"))
- (package
- (name "emacs-org-supertag")
- (version (git-version "5.0.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/yibie/org-supertag/")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "159aqyah89nw0ar2y68rs5s4ja5hhy4j5yx3slhagzdklcpimpq8"))))
- (build-system emacs-build-system)
- (arguments (list #:tests? #f)) ;no tests
- (propagated-inputs
- (list emacs-ht emacs-gptel))
- (home-page "https://github.com/yibie/org-supertag/")
- (synopsis "Note taking application on top of Org mode")
- (description
- "This package implements a knowledge manage engine as an extension to
+ (package
+ (name "emacs-org-supertag")
+ (version "5.6.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/yibie/org-supertag/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0ccr3s4mhk28klizbsb7cqhgg2h3092mpg1qvnzpzf53hwlhds2p"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list #:tests? #f ;no tests
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'appease-byte-compilation
+ (lambda _
+ (substitute* "supertag-services-capture.el"
+ (("\\(lambda \\(t\\) \\(concat \"#\" t\\)\\)")
+ "(lambda (x) (concat \"#\" x))")))))))
+ (propagated-inputs
+ (list emacs-gptel emacs-ht emacs-posframe))
+ (home-page "https://github.com/yibie/org-supertag/")
+ (synopsis "Note taking application on top of Org mode")
+ (description
+ "This package implements a knowledge manage engine as an extension to
Org mode, upgrading its tagging system.")
- (license license:gpl3+))))
+ (license license:gpl3+)))
(define-public emacs-org-pandoc-import
(let ((commit "db308f1a05be26ce5b287633637ce554599b1377")