gnu: emacs-org-ql: Update to 0.3.2.

* gnu/packages/emacs-xyz.scm (emacs-org-ql): Update to 0.3.2.
This commit is contained in:
Brian Leung 2019-10-20 18:49:03 -07:00
parent b977d900d8
commit 6f91eabb79
No known key found for this signature in database
GPG key ID: 3ADC75F013D678F9

View file

@ -12194,50 +12194,48 @@ (define-public emacs-peg
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-org-ql (define-public emacs-org-ql
(let ((commit "949a06c3ab50482b749fd2d4350837a197660d96") (package
(revision "3")) (name "emacs-org-ql")
(package (version "0.3.2")
(name "emacs-org-ql") (source (origin
(version (git-version "0.3.1" revision commit)) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://github.com/alphapapa/org-ql")
(uri (git-reference (commit version)))
(url "https://github.com/alphapapa/org-ql") (sha256
(commit commit))) (base32
(sha256 "11bhpi2l28vp8mm9nx18jljbqdnh9vxpv9kp1dn9lpsgivcdbc34"))
(base32 (file-name (git-file-name name version))))
"0apcg63xm0242mjgsgw0jrcda4p4iqj7fy3sgh0p7khi4hrs5ch0")) (build-system emacs-build-system)
(file-name (git-file-name name version)))) (propagated-inputs
(build-system emacs-build-system) `(("emacs-s" ,emacs-s)
(propagated-inputs ("emacs-f" ,emacs-f)
`(("emacs-s" ,emacs-s) ("emacs-ov" ,emacs-ov)
("emacs-f" ,emacs-f) ("emacs-peg" ,emacs-peg)
("emacs-ov" ,emacs-ov) ("emacs-org-super-agenda" ,emacs-org-super-agenda)
("emacs-peg" ,emacs-peg) ("emacs-ts" ,emacs-ts)
("emacs-org-super-agenda" ,emacs-org-super-agenda) ("emacs-org" ,emacs-org)
("emacs-ts" ,emacs-ts) ("emacs-helm" ,emacs-helm)
("emacs-org" ,emacs-org) ("emacs-helm-org" ,emacs-helm-org)
("emacs-helm" ,emacs-helm) ("emacs-dash" ,emacs-dash)))
("emacs-helm-org" ,emacs-helm-org) (native-inputs
("emacs-dash" ,emacs-dash))) `(("emacs-buttercup" ,emacs-buttercup)))
(native-inputs (arguments
`(("emacs-buttercup" ,emacs-buttercup))) `(#:phases
(arguments (modify-phases %standard-phases
`(#:phases (add-after 'unpack 'require-helm
(modify-phases %standard-phases (lambda _
(add-after 'unpack 'require-helm (substitute* "helm-org-ql.el"
(lambda _ (("^;;;; Requirements")
(substitute* "helm-org-ql.el" ";;;; Requirements\n(require 'helm)\n(require 'helm-org)"))
(("^;;;; Requirements") #t)))
";;;; Requirements\n(require 'helm)\n(require 'helm-org)")) #:tests? #t
#t))) #:test-command '("buttercup" "-L" ".")))
#:tests? #t (home-page "https://github.com/alphapapa/org-ql/")
#:test-command '("buttercup" "-L" "."))) (synopsis "Query language for Org buffers")
(home-page "https://github.com/alphapapa/org-ql/") (description "This package provides a Lispy query language for Org
(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-org-auto-expand (define-public emacs-org-auto-expand
(let ((commit "4938d5f6460e2f8f051ba9ac000b291bfa43ef62") (let ((commit "4938d5f6460e2f8f051ba9ac000b291bfa43ef62")