-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall-elisp.el
366 lines (317 loc) · 13.1 KB
/
install-elisp.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
;;; install-elisp.el --- Simple Emacs Lisp installer
;; $Id: install-elisp.el,v 1.18 2009/01/25 17:47:20 rubikitch Exp $
;; Copyright (C) 2007 rubikitch
;; Author: rubikitch <[email protected]>
;; Keywords: lisp, convenience, maint
;; URL: http://www.emacswiki.org/cgi-bin/wiki/download/install-elisp.el
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;; Automate Emacs Lisp installation.
;; (1) download Emacs Lisp
;; (!) confirm installation
;; (2) save to your repository
;; (3) byte compile
;; (4) load
;; (5) show Emacs Lisp
;;; Commands:
;;
;; Below are complete command list:
;;
;; `install-elisp'
;; Retrieve Emacs Lisp program from URL and save and byte-compile and load.
;; `install-elisp-from-emacswiki'
;; Install Emacs Lisp program from the EmacsWiki.
;; `install-elisp-from-gist'
;; Install Emacs Lisp program from gist.
;; `dired-install-elisp-from-emacswiki'
;; Upgrade the current Emacs Lisp program from the EmacsWiki.
;; `install-elisp-confirmation-minor-mode'
;; Emacs Lisp install confirmation.
;;
;;; Customizable Options:
;;
;; Below are customizable option list:
;;
;; `install-elisp-repository-directory'
;; Directory to save Emacs Lisp programs downloaded by install-elisp.el.
;; default = "~/.emacs.d/"
;; `install-elisp-use-view-mode'
;; If non-nil, turn on `view-mode' for installed Emacs Lisp program.
;; default = t
;; `install-elisp-use-url-retrieve'
;; If nil, use external command-line HTTP client instead.
;; default = (fboundp (quote url-retrieve-synchronously))
;; `install-elisp-confirm-flag'
;; If non-nil, do install confirmation.
;; default = t
;; `install-elisp-retrieval-program'
;; URL retrieving program used when `install-elisp-use-url-retrieve' is nil.
;; default = "wget -q -O- '%s'"
;;; Installation:
;; If you use Emacs21 and under, you must have wget or other
;; command-line HTTP client.
;; You need to add to .emacs:
;; (require 'install-elisp)
;; (setq install-elisp-repository-directory "~/.emacs.d/")
;;; Usage:
;; M-x install-elisp
;; M-x install-elisp-from-emacswiki
;; M-x install-elisp-from-gist
;; M-x dired-install-elisp-from-emacswiki
;;
;; It is convenient to add to your Emacs Lisp programs:
;; (install-elisp "http://your.site/hogehoge.el")
;; because users have only to evaluate this sexp by C-x C-e.
;; If you want to complete EmacsWiki pagename, eval:
;; (install-elisp "http://www.emacswiki.org/cgi-bin/wiki/download/oddmuse.el")
;; It is very convenient to access EmacsWiki with oddmuse.el.
;;; Upgrade this program:
;; Simply eval:
;; (install-elisp-from-emacswiki "install-elisp.el")
;;; Related project:
;; Emacs Lisp Package Archive: http://tromey.com/elpa/
;; auto-install.el is successor of this:
;; http://www.emacswiki.org/cgi-bin/wiki/download/auto-install.el
;;; Bug Report:
;;
;; If you have problem, send a bug report via M-x install-elisp-send-bug-report.
;; The step is:
;; 0) Setup mail in Emacs, the easiest way is:
;; (setq user-mail-address "[email protected]")
;; (setq user-full-name "Your Full Name")
;; (setq smtpmail-smtp-server "your.smtp.server.jp")
;; (setq mail-user-agent 'message-user-agent)
;; (setq message-send-mail-function 'message-smtpmail-send-it)
;; 1) Be sure to use the LATEST version of install-elisp.el.
;; 2) Enable debugger. M-x toggle-debug-on-error or (setq debug-on-error t)
;; 3) Use Lisp version instead of compiled one: (load "install-elisp.el")
;; 4) Do it!
;; 5) If you got an error, please do not close *Backtrace* buffer.
;; 6) M-x install-elisp-send-bug-report and M-x insert-buffer *Backtrace*
;; 7) Describe the bug using a precise recipe.
;; 8) Type C-c C-c to send.
;; # If you are a Japanese, please write in Japanese:-)
;;; History:
;; $Log: install-elisp.el,v $
;; Revision 1.18 2009/01/25 17:47:20 rubikitch
;; New command: `install-elisp-from-gist'
;;
;; Revision 1.17 2009/01/24 18:54:54 rubikitch
;; Fixed unbound `find-function-source-path'.
;;
;; Revision 1.16 2009/01/21 10:19:57 rubikitch
;; Restore `mode-line-format' when installation is done.
;;
;; Revision 1.15 2008/12/27 10:56:25 rubikitch
;; Use font-lock.
;;
;; Revision 1.14 2008/12/27 10:45:11 rubikitch
;; Make install-elisp find the package's directory,
;; if found use package's directory, otherwise use `install-elisp-repository-directory'.
;; patched by Andy Stewart (with slightly modified), thanks.
;;
;; Revision 1.13 2008/12/27 09:14:42 rubikitch
;; "Get elisp from..." message
;;
;; Revision 1.12 2007/07/25 20:38:08 rubikitch
;; use defgroup.
;; install-elisp-retrieval-program: "wget -q -O- '%s'" by default.
;;
;; Revision 1.11 2007/07/25 19:43:22 rubikitch
;; New variable: install-elisp-retrieval-program
;;
;; use `defcustom'.
;;
;; Revision 1.10 2007/07/25 19:27:43 rubikitch
;; update Commentary and Usage
;;
;; Revision 1.9 2007/07/25 19:20:08 rubikitch
;; install-elisp-confirmation-minor-mode: pretty mode-line-format
;;
;; Revision 1.8 2007/07/25 19:11:50 rubikitch
;; EmacsWiki HTTP workaround
;;
;; Revision 1.7 2007/07/25 19:02:57 rubikitch
;; Install confirmation for security.
;;
;; Revision 1.6 2007/07/25 17:58:39 rubikitch
;; New command: dired-install-elisp-from-emacswiki
;;
;; Revision 1.5 2007/07/25 17:50:30 rubikitch
;; `install-elisp-repository-directory': "~/.emacs.d/" by default.
;;
;; Revision 1.4 2007/07/25 17:47:21 rubikitch
;; rename function: %install-elisp-from -> install-elisp-from
;;
;; Revision 1.3 2007/07/25 17:46:13 rubikitch
;; use `url-retrieve-synchronously' if available
;;
;; Revision 1.2 2007/07/24 10:44:31 rubikitch
;; Fixed a serious bug.
;; New variable: install-elisp-use-view-mode
;;
;; Revision 1.1 2007/07/24 10:39:40 rubikitch
;; Initial revision
;;
;;; Code:
(require 'find-func)
(defgroup install-elisp nil
"Simple Emacs Lisp installer."
:group 'hypermedia)
(defcustom install-elisp-repository-directory "~/.emacs.d/"
"Directory to save Emacs Lisp programs downloaded by install-elisp.el. "
:group 'install-elisp)
(defcustom install-elisp-use-view-mode t
"If non-nil, turn on `view-mode' for installed Emacs Lisp program."
:group 'install-elisp)
(defcustom install-elisp-use-url-retrieve (fboundp 'url-retrieve-synchronously)
"If nil, use external command-line HTTP client instead.
See also `install-elisp-retrieval-program'."
:group 'install-elisp)
(defcustom install-elisp-confirm-flag t
"If non-nil, do install confirmation.
You should set it non-nil for security reason."
:group 'install-elisp)
(defcustom install-elisp-retrieval-program "wget -q -O- '%s'"
"URL retrieving program used when `install-elisp-use-url-retrieve' is nil.
If you use curl, set it to \"curl --silent '%s'\"."
:group 'install-elisp)
(defvar install-elisp-filename nil)
(make-variable-buffer-local 'install-elisp-filename)
(defvar install-elisp-confirmation-minor-mode-map (make-sparse-keymap))
(defun %install-elisp-create-buffer (url)
(message "Get elisp from %s" url)
(cond (install-elisp-use-url-retrieve
(switch-to-buffer (url-retrieve-synchronously url))
(goto-char (point-min))
(re-search-forward "^$" nil 'move)
(delete-region (point-min) (1+ (point)))
(%install-elisp-emacswiki-http-workaround))
(t
(let ((buffer (generate-new-buffer " *install-elisp-tmp*")))
(shell-command (format install-elisp-retrieval-program url) buffer)
(switch-to-buffer buffer))))
(emacs-lisp-mode)
(setq font-lock-mode t)
(font-lock-fontify-buffer))
;; I do not know why!!
(defun %install-elisp-emacswiki-http-workaround ()
(save-excursion
(let (buffer-read-only)
(goto-char (1- (point-max)))
(when (eq (char-before) ?\C-m)
(delete-backward-char 2)))))
(defun install-elisp-proceed ()
(interactive)
(write-file install-elisp-filename)
(byte-compile-file buffer-file-name t)
(install-elisp-confirmation-minor-mode -1))
;;;###autoload
(defun install-elisp (url &optional filename)
"Retrieve Emacs Lisp program from URL and save and byte-compile and load.
If optional FILENAME is supplied, save URL as FILENAME, otherwise URL's basename."
(interactive "sInstall Emacs Lisp from URL: ")
(if (null install-elisp-repository-directory)
(with-output-to-temp-buffer "*Help*"
(princ "You must prepare to use install-elisp program!
Set `install-elisp-repository-directory' to your local Emacs Lisp repository directory in your ~/.emacs.
For example: (setq install-elisp-repository-directory \"~/emacs/lisp/\")"))
(%install-elisp-create-buffer url)
(and install-elisp-use-view-mode (view-mode 1))
(setq install-elisp-filename
(%install-elisp-get-filename (or filename (file-name-nondirectory url))))
(if (not install-elisp-confirm-flag)
(install-elisp-proceed)
(install-elisp-confirmation-minor-mode 1)
(message "Type C-c C-c to do installation!"))))
;; (%install-elisp-find-library-name "vc.el")
;; (%install-elisp-find-library-name "vc.elc")
(defun %install-elisp-find-library-name (library)
"Return the absolute file name of the Lisp source of LIBRARY."
;; If the library is byte-compiled, try to find a source library by
;; the same name.
(if (string-match "\\.el\\(c\\(\\..*\\)?\\)\\'" library)
(setq library (replace-match "" t t library)))
(locate-file library
(or find-function-source-path load-path)
(append (find-library-suffixes) load-file-rep-suffixes)))
;; (%install-elisp-get-filename "vc.el")
;; (%install-elisp-get-filename "vc.elc")
;; (%install-elisp-get-filename "icicles.el")
;; (%install-elisp-get-filename "hoge.el")
(defun %install-elisp-get-filename (filename)
(let ((lib-file (%install-elisp-find-library-name filename)))
(if (and lib-file (file-writable-p lib-file))
;; use current directory,
;; if file is not in `install-elisp-repository-directory'.
lib-file
;; otherwise use `install-elisp-repository-directory'.
(expand-file-name filename install-elisp-repository-directory))))
(defun install-elisp-from (baseurl)
"Return higher-order function installing from BASEURL, which accepts an argument FILENAME."
`(lambda (filename)
(install-elisp (concat ,baseurl filename) filename)))
;;;###autoload
(defun install-elisp-from-emacswiki (filename)
"Install Emacs Lisp program from the EmacsWiki."
(interactive (list (if (fboundp 'oddmuse-read-pagename)
(oddmuse-read-pagename "EmacsWiki")
(read-string "PageName: "))))
(funcall (install-elisp-from "http://www.emacswiki.org/cgi-bin/wiki/download/") filename))
;;;###autoload
(defun install-elisp-from-gist (gistid &optional filename)
"Install Emacs Lisp program from gist."
(interactive "sInstall Emacs Lisp from gist ID: ")
(install-elisp (concat "http://gist.github.com/" (format "%s" gistid) ".txt")
(or filename
(format "gist-%s.el" gistid))))
;;;###autoload
(defun dired-install-elisp-from-emacswiki (&optional filename)
"Upgrade the current Emacs Lisp program from the EmacsWiki."
(interactive (list (dired-get-filename t)))
(install-elisp-from-emacswiki filename))
(define-key install-elisp-confirmation-minor-mode-map "\C-c\C-c" 'install-elisp-proceed)
(define-minor-mode install-elisp-confirmation-minor-mode
"Emacs Lisp install confirmation."
nil "" install-elisp-confirmation-minor-mode-map
(if install-elisp-confirmation-minor-mode
(setq mode-line-format
(format "%s: Type C-c C-c to install!"
(file-name-nondirectory install-elisp-filename)))
(setq mode-line-format default-mode-line-format)))
;;;; Bug report
(defvar install-elisp-maintainer-mail-address
(concat "rubiki" "tch@ru" "by-lang.org"))
(defvar install-elisp-bug-report-salutation
"Describe bug below, using a precise recipe.
When I executed M-x ...
How to send a bug report:
1) Be sure to use the LATEST version of install-elisp.el.
2) Enable debugger. M-x toggle-debug-on-error or (setq debug-on-error t)
3) Use Lisp version instead of compiled one: (load \"install-elisp.el\")
4) If you got an error, please paste *Backtrace* buffer.
5) Type C-c C-c to send.
# If you are a Japanese, please write in Japanese:-)")
(defun install-elisp-send-bug-report ()
(interactive)
(reporter-submit-bug-report
install-elisp-maintainer-mail-address
"install-elisp.el"
(apropos-internal "^install-elisp-" 'boundp)
nil nil
install-elisp-bug-report-salutation))
(provide 'install-elisp)
;; How to save (DO NOT REMOVE!!)
;; (emacswiki-post "install-elisp.el")
;;; install-elisp.el ends here