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.master
parent
8b665a4ff3
commit
7e656bfa28
|
@ -20735,40 +20735,49 @@ interactive commands and functions, such as @code{completing-read}.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-org-ql
|
(define-public emacs-org-ql
|
||||||
(package
|
(let ((commit "29533525c39e0e243912bb3c807412e4bc3e804e")
|
||||||
(name "emacs-org-ql")
|
(revision "0"))
|
||||||
(version "0.6.2")
|
(package
|
||||||
(source (origin
|
(name "emacs-org-ql")
|
||||||
(method git-fetch)
|
(version (git-version "0.6.3" revision commit))
|
||||||
(uri (git-reference
|
(source (origin
|
||||||
(url "https://github.com/alphapapa/org-ql")
|
(method git-fetch)
|
||||||
(commit version)))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/alphapapa/org-ql")
|
||||||
(base32
|
(commit commit)))
|
||||||
"0iamqv5j43ngj1xdqr36rkgk9lqpk9bg8y531jsldnvwzrp3srpf"))
|
(sha256
|
||||||
(file-name (git-file-name name version))))
|
(base32
|
||||||
(build-system emacs-build-system)
|
"01zc2mrlr197r0h2xjgzg88fy74lqbw0hv60jw08ihs0yw7n56y7"))
|
||||||
(propagated-inputs
|
(file-name (git-file-name name version))))
|
||||||
(list emacs-dash
|
(build-system emacs-build-system)
|
||||||
emacs-f
|
(arguments
|
||||||
emacs-helm
|
(list
|
||||||
emacs-helm-org
|
#:tests? #t
|
||||||
emacs-org
|
#:test-command #~(list "buttercup" "-L" ".")
|
||||||
emacs-org-super-agenda
|
#:phases
|
||||||
emacs-ov
|
#~(modify-phases %standard-phases
|
||||||
emacs-peg
|
(add-before 'check 'fix-test
|
||||||
emacs-ts
|
(lambda _
|
||||||
emacs-s))
|
(substitute* "tests/test-org-ql.el"
|
||||||
(native-inputs
|
(("can't be linked to") "can’t be linked to")))))))
|
||||||
(list emacs-buttercup emacs-with-simulated-input))
|
(native-inputs
|
||||||
(arguments
|
(list emacs-buttercup emacs-with-simulated-input))
|
||||||
`(#:tests? #t
|
(propagated-inputs
|
||||||
#:test-command '("buttercup" "-L" ".")))
|
(list emacs-dash
|
||||||
(home-page "https://github.com/alphapapa/org-ql/")
|
emacs-f
|
||||||
(synopsis "Query language for Org buffers")
|
emacs-helm
|
||||||
(description "This package provides a Lispy query language for Org
|
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.")
|
files, allowing for actions to be performed based on search criteria.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-bing-dict
|
(define-public emacs-bing-dict
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue