summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2021-05-20 13:58:29 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2021-05-20 13:58:29 +0200
commit71045f4e6425a686667cf30252a2a71cff36308b (patch)
treea50385199a251a20345a7761e1e81e297f717cae /gnu
parent562727d444c110a379124f3d4bfc76a90a677245 (diff)
downloadguix-patches-71045f4e6425a686667cf30252a2a71cff36308b.tar
guix-patches-71045f4e6425a686667cf30252a2a71cff36308b.tar.gz
gnu: emacs-org: Update to 9.4.6.
* gnu/packages/emacs-xyz.scm (emacs-org): Update to 9.4.6. [arguments]<phases>: Remove unnecessary phase. (emacs-org-contrib): Update to 20210519.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm22
1 files changed, 6 insertions, 16 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 67cb2c1103..2af42f8842 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -11343,26 +11343,17 @@ passive voice.")
(name "emacs-org")
;; emacs-org-contrib inherits from this package. Please update it as
;; well.
- (version "9.4.5")
+ (version "9.4.6")
(source
(origin
(method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/org-" version ".tar"))
(sha256
- (base32 "0h5qhrd984vf17qc227wz68191xfgbpq32dyhw0lcz2d9i0pl3xk"))))
+ (base32 "1k49ymsi77366as2wi4kzv2f1xnbwpb47iw7iw07yxwlhmm7vskq"))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
- ;; FIXME: The elpa tarball upstream does not include the version
- ;; number, remove this phase when this is fixed.
- ;; https://lists.gnu.org/archive/html/emacs-orgmode/2020-12/msg00729.html
- (add-after 'unpack 'fix-org-version
- (lambda _
- (substitute* "org-version.el"
- (("org-release \"\"")
- (string-append "org-release \"" ,version "\"")))
- #t))
(add-after 'install 'install-documentation
(lambda* (#:key outputs #:allow-other-keys)
(let* ((share (string-append (assoc-ref outputs "out") "/share"))
@@ -11370,10 +11361,9 @@ passive voice.")
(doc-dir (string-append share "/doc/" ,name "-" ,version)))
(install-file "org.info" info-dir)
(install-file "orgguide.info" info-dir)
- ;; XXX: "orgcard.pdf" is not built in Org 9.4.5.
+ ;; XXX: "orgcard.pdf" is not built in Org 9.4.6.
;; (install-file "orgcard.pdf" doc-dir)
- )
- #t)))))
+ ))))))
(home-page "https://orgmode.org/")
(synopsis "Outline-based notes management and organizer")
(description "Org is an Emacs mode for keeping notes, maintaining TODO
@@ -11386,14 +11376,14 @@ programming and reproducible research.")
(package
(inherit emacs-org)
(name "emacs-org-contrib")
- (version "20210329")
+ (version "20210519")
(source
(origin
(method url-fetch)
(uri (string-append "https://orgmode.org/elpa/"
"org-plus-contrib-" version ".tar"))
(sha256
- (base32 "1l0ycz77hwmjb4sffhabb0d0hg1c9ypxbpbyv8xj5ib4nbi87f2h"))
+ (base32 "0g765fsc7ssn779xnhjzrxy1sz5b019h7dk1q26yk2w6i540ybfl"))
;; ob-sclang.el is packaged separately to avoid the dependency on
;; SuperCollider and qtwebengine.
(modules '((guix build utils)))