forked from dimitri/el-get
-
Notifications
You must be signed in to change notification settings - Fork 0
/
el-get-install.el
74 lines (64 loc) · 2.55 KB
/
el-get-install.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
;;; el-get-install.el --- installer for the lazy
;;
;; Copyright (C) 2010 Dimitri Fontaine
;;
;; Author: Dimitri Fontaine <[email protected]>
;; URL: http://www.emacswiki.org/emacs/el-get.el
;; Version: 0.9
;; Created: 2010-06-17
;; Keywords: emacs package elisp install elpa git git-svn bzr cvs apt-get fink http http-tar
;; Licence: WTFPL, grab your copy here: http://sam.zoy.org/wtfpl/
;;
;; This file is NOT part of GNU Emacs.
;;
;; bootstrap your el-get installation, the goal is then to use el-get to
;; update el-get.
;;
;; So the idea is that you copy/paste this code into your *scratch* buffer,
;; hit C-j, and you have a working el-get.
(let ((el-get-root
(file-name-as-directory
(concat (file-name-as-directory user-emacs-directory) "el-get"))))
(when (file-directory-p el-get-root)
(add-to-list 'load-path el-get-root))
;; try to require el-get, failure means we have to install it
(unless (require 'el-get nil t)
(unless (file-directory-p el-get-root)
(make-directory el-get-root t))
(let* ((package "el-get")
(buf (switch-to-buffer "*el-get bootstrap*"))
(pdir (file-name-as-directory (concat el-get-root package)))
(git (or (executable-find "git")
(error "Unable to find `git'")))
(url (if (bound-and-true-p el-get-git-install-url)
el-get-git-install-url
"http://github.com/dimitri/el-get.git"))
(default-directory el-get-root)
(process-connection-type nil) ; pipe, no pty (--no-progress)
(el-get-default-process-sync t) ; force sync operations for installer
(el-get-verbose t) ; let's see it all
;; First clone el-get
(status
(call-process
git nil `(,buf t) t "--no-pager" "clone" "-v" url package)))
(unless (zerop status)
(error "Couldn't clone el-get from the Git repository: %s" url))
;; switch branch if we have to
(unless (boundp 'el-get-master-branch)
(let* ((branch (plist-get (with-temp-buffer
(insert-file-contents-literally
(expand-file-name "recipes/el-get.rcp" pdir))
(read (current-buffer)))
:branch))
(branch (when branch (concat "origin/" branch)))
(default-directory pdir)
(bstatus
(when branch
(call-process git nil `(,buf t) t "checkout" "-t" branch))))
(when (and branch (not (zerop bstatus)))
(error "Couldn't `git checkout -t %s`" branch))))
(load (concat pdir package ".el"))
(el-get-post-install "el-get")
(with-current-buffer buf
(goto-char (point-max))
(insert "\nCongrats, el-get is installed and ready to serve!")))))