-
Notifications
You must be signed in to change notification settings - Fork 11
/
install.el
220 lines (181 loc) · 6.58 KB
/
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
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
;;; install.el --- Emacs Lisp package install utility -*- lexical-binding: t -*-
;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006
;; Free Software Foundation, Inc.
;; Author: MORIOKA Tomohiko <[email protected]>
;; Created: 1996/08/18
;; Keywords: install, byte-compile, directory detection
;; This file is part of APEL (A Portable Emacs Library).
;; This program 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 program 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.
;;; Code:
(require 'path-util) ; default-load-path
;;; @ compile Emacs Lisp files
;;;
(defun compile-elisp-module (module &optional path every-time)
(setq module (expand-file-name (symbol-name module) path))
(let ((el-file (concat module ".el"))
(elc-file (concat module ".elc")))
(if (or every-time
(file-newer-than-file-p el-file elc-file))
(byte-compile-file el-file))))
(defun compile-elisp-modules (modules &optional path every-time)
(mapcar
(lambda (module)
(compile-elisp-module module path every-time))
modules))
;;; @ install files
;;;
(defvar install-overwritten-file-modes (+ (* 64 6)(* 8 4) 4)) ; 0644
(defun install-file (file src dest &optional move overwrite just-print)
(if just-print
(princ (format "%s -> %s\n" file dest))
(let ((src-file (expand-file-name file src)))
(if (file-exists-p src-file)
(let ((full-path (expand-file-name file dest)))
(if (and (file-exists-p full-path) overwrite)
(delete-file full-path))
(copy-file src-file full-path t t)
(set-file-modes full-path install-overwritten-file-modes)
(if move
(catch 'tag
(while (and (file-exists-p src-file)
(file-writable-p src-file))
(condition-case err
(progn
(delete-file src-file)
(throw 'tag nil))
(error (princ (format "%s\n" (nth 1 err))))))))
(princ (format "%s -> %s\n" file dest)))))))
(defun install-files (files src dest &optional move overwrite just-print)
(or just-print
(file-exists-p dest)
(make-directory dest t))
(mapcar
(lambda (file)
(install-file file src dest move overwrite just-print))
files))
;;; @@ install Emacs Lisp files
;;;
(defun install-elisp-module (module src dest &optional just-print del-elc)
(let (el-file elc-file)
(let ((name (symbol-name module)))
(setq el-file (concat name ".el"))
(setq elc-file (concat name ".elc")))
(let ((src-file (expand-file-name el-file src)))
(if (not (file-exists-p src-file))
nil
(if just-print
(princ (format "%s -> %s\n" el-file dest))
(let ((full-path (expand-file-name el-file dest)))
(if (file-exists-p full-path)
(delete-file full-path))
(copy-file src-file full-path t t)
(set-file-modes full-path install-overwritten-file-modes)
(princ (format "%s -> %s\n" el-file dest)))))
(setq src-file (expand-file-name elc-file src))
(if (not (file-exists-p src-file))
(let ((full-path (expand-file-name elc-file dest)))
(if (and del-elc (file-exists-p full-path))
(if just-print
(princ (format "%s -> to be deleted\n" full-path))
(delete-file full-path)
(princ (format "%s -> deleted\n" full-path)))))
(if just-print
(princ (format "%s -> %s\n" elc-file dest))
(let ((full-path (expand-file-name elc-file dest)))
(if (file-exists-p full-path)
(delete-file full-path))
(copy-file src-file full-path t t)
(set-file-modes full-path install-overwritten-file-modes)
(catch 'tag
(while (file-exists-p src-file)
(condition-case err
(progn
(delete-file src-file)
(throw 'tag nil))
(error (princ (format "%s\n" (nth 1 err)))))))
(princ (format "%s -> %s\n" elc-file dest))))))))
(defun install-elisp-modules (modules src dest &optional just-print del-elc)
(or just-print
(file-exists-p dest)
(make-directory dest t))
(mapcar
(lambda (module)
(install-elisp-module module src dest just-print del-elc))
modules))
;;; @ detect install path
;;;
;; install to shared directory (maybe "/usr/local")
(defvar install-prefix
(if (and (eq system-type 'windows-nt) ; for NTEmacs
;; Exclude the case that built by running the same
;; configure script as on all other platforms.
(equal (file-name-nondirectory
(expand-file-name "." exec-directory))
"bin"))
(expand-file-name "../../.." exec-directory)
(expand-file-name "../../../.." data-directory)))
(defvar install-elisp-prefix "site-lisp")
;; Avoid compile warning.
(eval-when-compile (autoload 'replace-in-string "subr"))
(defun install-detect-elisp-directory (&optional prefix elisp-prefix
allow-version-specific)
(or prefix
(setq prefix install-prefix))
(or elisp-prefix
(setq elisp-prefix install-elisp-prefix))
(or (catch 'tag
(let ((rest (delq nil (copy-sequence default-load-path)))
(regexp
(concat "^"
(regexp-quote (file-name-as-directory
(expand-file-name prefix)))
".*/"
(regexp-quote elisp-prefix)
"/?$"))
dir)
(while rest
(setq dir (car rest))
(if (string-match regexp dir)
(if (or allow-version-specific
(not (string-match (format "/%d\\.%d"
emacs-major-version
emacs-minor-version)
dir)))
(throw 'tag (car rest))))
(setq rest (cdr rest)))))
(expand-file-name (concat "share/emacs/" elisp-prefix)
prefix)))
(defvar install-default-elisp-directory
(install-detect-elisp-directory))
;;; @ for XEmacs package system
;;;
(defun install-get-default-package-directory ()
;; Dummy function. Do nothing.
nil)
(defun install-update-package-files (_package _dir &optional _just-print)
;; Dummy function. Do nothing.
nil)
;;; @ Other Utilities
;;;
(defun install-just-print-p ()
(let ((flag (getenv "MAKEFLAGS"))
(case-fold-search nil))
(princ (format "%s\n" flag))
(if flag
(string-match "^\\(\\(--[^ ]+ \\)+-\\|[^ =-]\\)*n" flag))))
;;; @ end
;;;
(require 'product)
(product-provide (provide 'install) (require 'apel-ver))
;;; install.el ends here