alf/ob-restclient.el@1a127eb016 -> alf/ob-restclient.el@8183f8af08 bastibe/org-journal@a306f76ee2 -> bastibe/org-journal@605a7eb984 emacs-jupyter/jupyter@0a92c0c978 -> emacs-jupyter/jupyter@da306a6dbd emacs-straight/org-mode@57b94f3447 -> emacs-straight/org-mode@7a6bb0904d emacsmirror/org-contrib@79286861ae -> emacsmirror/org-contrib@8fbaceb247 emacsorphanage/ox-pandoc@0f758517f5 -> emacsorphanage/ox-pandoc@399d787b6e hakimel/reveal.js@d5896c968b -> hakimel/reveal.js@16f6633014 magit/orgit-forge@f595a30aa7 -> magit/orgit-forge@f2ff9e5ad6 magit/orgit@b60efabc4a -> magit/orgit@84bcb5c318 oer/org-re-reveal@e7895dae98 -> oer/org-re-reveal@7c39d15b84 org-noter/org-noter@a4296d8338 -> org-noter/org-noter@8be3763847 org-roam/org-roam@5c06471c3a -> org-roam/org-roam@8667e44187 Fix: #7392
167 lines
7.3 KiB
EmacsLisp
167 lines
7.3 KiB
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/org/packages.el
|
|
|
|
(package! org
|
|
:recipe (:host github
|
|
;; REVIEW: I intentionally avoid git.savannah.gnu.org because of SSL
|
|
;; issues (see #5655), uptime issues, download time, and lack of
|
|
;; shallow clone support.
|
|
:repo "emacs-straight/org-mode"
|
|
:files (:defaults "etc")
|
|
:depth 1
|
|
;; HACK: Org has a post-install step that generates org-version.el
|
|
;; and org-loaddefs.el, but Straight doesn't invoke this step, and
|
|
;; the former doesn't work if the Org repo is a shallow clone.
|
|
;; Rather than impose the network burden of a full clone (and other
|
|
;; redundant work in Org's makefile), I'd rather fake these files
|
|
;; instead. Besides, Straight already produces a org-autoloads.el,
|
|
;; so org-loaddefs.el isn't needed.
|
|
:build t
|
|
:pre-build
|
|
(progn
|
|
(with-temp-file "org-loaddefs.el")
|
|
(with-temp-file "org-version.el"
|
|
(let ((version
|
|
(with-temp-buffer
|
|
(insert-file-contents (doom-path "lisp/org.el") nil 0 1024)
|
|
(if (re-search-forward "^;; Version: \\([^\n-]+\\)" nil t)
|
|
(match-string-no-properties 1)
|
|
"Unknown"))))
|
|
(insert (format "(defun org-release () %S)\n" version)
|
|
(format "(defun org-git-version (&rest _) \"%s-??-%s\")\n"
|
|
version (cdr (doom-call-process "git" "rev-parse" "--short" "HEAD")))
|
|
"(provide 'org-version)\n")))))
|
|
:pin "7a6bb0904d01b50680f9028f7c0f3cfc6ae3aa6e")
|
|
(package! org-contrib
|
|
:recipe (:host github
|
|
:repo "emacsmirror/org-contrib")
|
|
:pin "8fbaceb247a775ad1534af97859c740e82cc955a")
|
|
|
|
(package! avy)
|
|
(package! htmlize :pin "dd27bc3f26efd728f2b1f01f9e4ac4f61f2ffbf9")
|
|
(package! org-yt
|
|
:recipe (:host github :repo "TobiasZawada/org-yt")
|
|
:pin "56166f48e04d83668f70ed84706b7a4d8b1e5438")
|
|
(package! ox-clip :pin "ff117cf3c619eef12eccc0ccbfa3f11adb73ea68")
|
|
(package! toc-org :pin "6d3ae0fc47ce79b1ea06cabe21a3c596395409cd")
|
|
(package! org-cliplink :pin "13e0940b65d22bec34e2de4bc8cba1412a7abfbc")
|
|
|
|
;; TODO Adjust when this is added to GNU ELPA
|
|
(when (modulep! +contacts)
|
|
(package! org-contacts
|
|
:pin "7f03eafaad2e5746949c0bebb98353e939c51ade"
|
|
:recipe (:host nil
|
|
:type git
|
|
:repo "https://repo.or.cz/org-contacts.git")))
|
|
|
|
(when (and (featurep :system 'macos)
|
|
(modulep! :os macos))
|
|
(package! org-mac-link :pin "e30171a6e98db90787ab8a23b3a7dc4fd13b10f9"))
|
|
|
|
(when (modulep! +passwords)
|
|
(package! org-passwords
|
|
:pin "61584aa701defcc0c435d3e7552916235cb655a6"
|
|
:recipe (:host github
|
|
:repo "alfaromurillo/org-passwords.el")))
|
|
|
|
(when (modulep! :editor evil +everywhere)
|
|
(package! evil-org
|
|
:recipe (:host github :repo "hlissner/evil-org-mode")
|
|
:pin "a9706da260c45b98601bcd72b1d2c0a24a017700"))
|
|
(when (modulep! :tools pdf)
|
|
(package! org-pdftools :pin "4e420233a153a9c4ab3d1a7e1d7d3211c836f0ac"))
|
|
(when (modulep! :tools magit)
|
|
(package! orgit :pin "84bcb5c318f01b9ffc8d5aa18a7c393fe9c714b2")
|
|
(when (modulep! :tools magit +forge)
|
|
(package! orgit-forge :pin "f2ff9e5ad68b3e860379a1d368ad6d8a9696b719")))
|
|
(when (modulep! +brain)
|
|
(package! org-brain :pin "2bad7732aae1a3051e2a14de2e30f970bbe43c25"))
|
|
(when (modulep! +dragndrop)
|
|
(package! org-download :pin "19e166f0a8c539b4144cfbc614309d47a9b2a9b7"))
|
|
(when (modulep! +gnuplot)
|
|
(package! gnuplot :pin "7138b139d2dca9683f1a81325c643b2744aa1ea3")
|
|
(package! gnuplot-mode :pin "601f6392986f0cba332c87678d31ae0d0a496ce7"))
|
|
(when (modulep! +ipython) ; DEPRECATED
|
|
(package! ob-ipython :pin "7147455230841744fb5b95dcbe03320313a77124"))
|
|
(when (modulep! +jupyter)
|
|
(package! jupyter :pin "da306a6dbda6f1e285281765a311938a1d9db022"))
|
|
(when (modulep! +journal)
|
|
(package! org-journal :pin "605a7eb984a95fc6ec122df800632bf56ff59514"))
|
|
(when (modulep! +noter)
|
|
(package! org-noter :pin "8be376384772c1f053cb2ce907ddf4d484b390dd"))
|
|
(when (modulep! +pomodoro)
|
|
(package! org-pomodoro :pin "3f5bcfb80d61556d35fc29e5ddb09750df962cc6"))
|
|
(when (modulep! +pretty)
|
|
(package! org-appear :pin "81eba5d7a5b74cdb1bad091d85667e836f16b997")
|
|
(package! org-superstar :pin "54c81c27dde2a6dc461bb064e79a8b2089093a2e")
|
|
(package! org-fancy-priorities :pin "7f677c6c14ecf05eab8e0efbfe7f1b00ae68eb1d"))
|
|
(when (modulep! +present)
|
|
(package! centered-window
|
|
:recipe (:host github :repo "anler/centered-window-mode")
|
|
:pin "80965f6c6afe8d918481433984b493de72af5399")
|
|
(package! org-tree-slide :pin "e2599a106a26ce5511095e23df4ea04be6687a8a")
|
|
(package! org-re-reveal :pin "7c39d15b841c7a8d197a24c89e5fef5d54e271aa")
|
|
(package! revealjs
|
|
:recipe (:host github :repo "hakimel/reveal.js"
|
|
:files ("css" "dist" "js" "plugin"))
|
|
:pin "16f6633014672567de85aefd1f4639ffea0dde56"))
|
|
(cond
|
|
((modulep! +roam)
|
|
(package! org-roam
|
|
:recipe (:host github :repo "org-roam/org-roam-v1")
|
|
:pin "946a879a4a18756a0508afba1e0b0fe070c6a8b4"))
|
|
((modulep! +roam2)
|
|
(package! org-roam
|
|
;; FIXME A :recipe isn't strictly necessary, but without it, our package
|
|
;; bumper fails to distinguish between org-roam v1 and v2.
|
|
:recipe (:host github :repo "org-roam/org-roam")
|
|
:pin "8667e441876cd2583fbf7282a65796ea149f0e5f")))
|
|
|
|
;;; Babel
|
|
(package! ob-async :pin "9aac486073f5c356ada20e716571be33a350a982")
|
|
(when (modulep! :lang clojure)
|
|
(package! ob-clojure-literate
|
|
:recipe (:type git
|
|
:host nil
|
|
:repo "https://repo.or.cz/ob-clojure-literate.el.git")
|
|
:pin "18c3ea15b872a43e67c899a9914182c35b00b7ee"))
|
|
(when (modulep! :lang crystal)
|
|
(package! ob-crystal :pin "d84c1adee4b269cdba06a97caedb8071561a09af"))
|
|
(when (modulep! :lang elixir)
|
|
(package! ob-elixir :pin "8990a8178b2f7bd93504a9ab136622aab6e82e32"))
|
|
(when (modulep! :lang fsharp)
|
|
(package! ob-fsharp
|
|
:recipe (:host github :repo "elken/ob-fsharp")
|
|
:pin "a5bb40915a8b78fb3c5fc4b44ad00393e07e46a4"))
|
|
(when (modulep! :lang go)
|
|
(package! ob-go :pin "2067ed55f4c1d33a43cb3f6948609d240a8915f5"))
|
|
(when (modulep! :lang graphql)
|
|
(package! ob-graphql :pin "7c35419f9eec5dc44967cbcfa13c7135b9a96bfc"))
|
|
(when (modulep! :lang hy)
|
|
(package! ob-hy :pin "a42ecaf440adc03e279afe43ee5ef6093ddd542a"))
|
|
(when (modulep! :lang nim)
|
|
(package! ob-nim :pin "6fd060a3ecd38be37e4ec2261cd65760a3c35a91"))
|
|
(when (modulep! :lang php)
|
|
(package! ob-php
|
|
:recipe (:type git
|
|
:host nil
|
|
:repo "https://repo.or.cz/ob-php.git")
|
|
:pin "6ebf7799e9ded1d5114094f46785960a50000614"))
|
|
(when (modulep! :lang racket)
|
|
(package! ob-racket
|
|
:recipe (:host github :repo "DEADB17/ob-racket")
|
|
:pin "d8fd51bddb019b0eb68755255f88fc800cfe03cb"))
|
|
(when (modulep! :lang rest)
|
|
(package! ob-restclient :pin "8183f8af08838854cf145ca4855b373f3e7c44b0"))
|
|
(when (modulep! :lang scala)
|
|
(package! ob-ammonite :pin "39937dff395e70aff76a4224fa49cf2ec6c57cca"))
|
|
|
|
;;; Export
|
|
(when (modulep! +pandoc)
|
|
(package! ox-pandoc :pin "399d787b6e2124bd782615338b845c3724a47718"))
|
|
(when (modulep! +hugo)
|
|
(package! ox-hugo
|
|
:recipe (:host github :repo "kaushalmodi/ox-hugo" :nonrecursive t)
|
|
:pin "cb1b6cfd7b080e889352150416c1725f11ba937a"))
|
|
(when (modulep! :lang rst)
|
|
(package! ox-rst :pin "99fa790da55b57a3f2e9aa187493ba434a64250e"))
|