diff options
author | William Carroll <wpcarro@gmail.com> | 2018-10-02T13·54-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2018-10-02T13·54-0400 |
commit | 9da3ffee41fa481a404a5fb19b7128d557df6114 (patch) | |
tree | abac717a4d44360910233bd6a7dc7ad956f2440a /configs/shared/emacs/.emacs.d/elpa/quelpa-20180903.1313/bootstrap.el | |
parent | de97c7bcd0ed4b4877c1ae70e86cb37386755a37 (diff) |
Update Emacs packages
This is a massive diff that I had to do in a hurry - when leaving Urbint. I'm pretty sure that most of these are updating Emacs packages, but I'm not positive.
Diffstat (limited to 'configs/shared/emacs/.emacs.d/elpa/quelpa-20180903.1313/bootstrap.el')
-rw-r--r-- | configs/shared/emacs/.emacs.d/elpa/quelpa-20180903.1313/bootstrap.el | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/configs/shared/emacs/.emacs.d/elpa/quelpa-20180903.1313/bootstrap.el b/configs/shared/emacs/.emacs.d/elpa/quelpa-20180903.1313/bootstrap.el deleted file mode 100644 index 1e41c6577d12..000000000000 --- a/configs/shared/emacs/.emacs.d/elpa/quelpa-20180903.1313/bootstrap.el +++ /dev/null @@ -1,32 +0,0 @@ -;;; bootstrap.el --- Bootstrap quelpa.el - -;; Copyright 2014-2018, Steckerhalter - -;; Author: steckerhalter -;; URL: https://framagit.org/steckerhalter/quelpa -;; Version: 0.0.1 -;; License: https://framagit.org/steckerhalter/quelpa/LICENSE - -;; This file is not part of GNU Emacs. - -;;; Code: - -(require 'package) - -(defvar quelpa-ci-dir nil - "If non-nil, quelpa will not be loaded from the url but from the given dir.") - -;; `package' has to be initialized to install pkgs -(package-initialize) - -(let ((temp-dir (make-temp-file "quelpa" t))) - (unless (require 'quelpa nil t) - (let ((file (or (when quelpa-ci-dir (concat quelpa-ci-dir "/quelpa.el")) - (expand-file-name "quelpa.el" temp-dir)))) - (unless quelpa-ci-dir - (url-copy-file "https://framagit.org/steckerhalter/quelpa/raw/master/quelpa.el" file t)) - (package-install-file file))) - - (delete-directory temp-dir t)) - -;;; bootstrap.el ends here |