[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: emacs-org-ql: Update to 0.6.3-0.2953352.
From: |
guix-commits |
Subject: |
branch master updated: gnu: emacs-org-ql: Update to 0.6.3-0.2953352. |
Date: |
Sat, 07 Jan 2023 09:58:52 -0500 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 7e656bfa28 gnu: emacs-org-ql: Update to 0.6.3-0.2953352.
7e656bfa28 is described below
commit 7e656bfa2888f4af53116402573589b3a38cbaba
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat Jan 7 15:56:16 2023 +0100
gnu: emacs-org-ql: Update to 0.6.3-0.2953352.
* gnu/packages/emacs-xyz.scm (emacs-org-ql): Update to 0.6.3-0.2953352.
[arguments]: Fix a test.
[native-inputs]: Move after arguments field.
[propagated-inputs]: Re-order alphabetically. Move after arguments field.
---
gnu/packages/emacs-xyz.scm | 75 ++++++++++++++++++++++++++--------------------
1 file changed, 42 insertions(+), 33 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index f9464dba3e..20976d8961 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -20735,40 +20735,49 @@ interactive commands and functions, such as
@code{completing-read}.")
(license license:gpl3+)))
(define-public emacs-org-ql
- (package
- (name "emacs-org-ql")
- (version "0.6.2")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/alphapapa/org-ql")
- (commit version)))
- (sha256
- (base32
- "0iamqv5j43ngj1xdqr36rkgk9lqpk9bg8y531jsldnvwzrp3srpf"))
- (file-name (git-file-name name version))))
- (build-system emacs-build-system)
- (propagated-inputs
- (list emacs-dash
- emacs-f
- emacs-helm
- emacs-helm-org
- emacs-org
- emacs-org-super-agenda
- emacs-ov
- emacs-peg
- emacs-ts
- emacs-s))
- (native-inputs
- (list emacs-buttercup emacs-with-simulated-input))
- (arguments
- `(#:tests? #t
- #:test-command '("buttercup" "-L" ".")))
- (home-page "https://github.com/alphapapa/org-ql/")
- (synopsis "Query language for Org buffers")
- (description "This package provides a Lispy query language for Org
+ (let ((commit "29533525c39e0e243912bb3c807412e4bc3e804e")
+ (revision "0"))
+ (package
+ (name "emacs-org-ql")
+ (version (git-version "0.6.3" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/alphapapa/org-ql")
+ (commit commit)))
+ (sha256
+ (base32
+ "01zc2mrlr197r0h2xjgzg88fy74lqbw0hv60jw08ihs0yw7n56y7"))
+ (file-name (git-file-name name version))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:tests? #t
+ #:test-command #~(list "buttercup" "-L" ".")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'fix-test
+ (lambda _
+ (substitute* "tests/test-org-ql.el"
+ (("can't be linked to") "can’t be linked to")))))))
+ (native-inputs
+ (list emacs-buttercup emacs-with-simulated-input))
+ (propagated-inputs
+ (list emacs-dash
+ emacs-f
+ emacs-helm
+ emacs-helm-org
+ emacs-org
+ emacs-org-super-agenda
+ emacs-ov
+ emacs-peg
+ emacs-s
+ emacs-ts))
+ (home-page "https://github.com/alphapapa/org-ql/")
+ (synopsis "Query language for Org buffers")
+ (description "This package provides a Lispy query language for Org
files, allowing for actions to be performed based on search criteria.")
- (license license:gpl3+)))
+ (license license:gpl3+))))
(define-public emacs-bing-dict
(package
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: emacs-org-ql: Update to 0.6.3-0.2953352.,
guix-commits <=