235
|
1 ;;; package-get.el --- Retrieve XEmacs package
|
|
2
|
|
3 ;; Copyright (C) 1998 by Pete Ware
|
|
4
|
|
5 ;; Author: Pete Ware <ware@cis.ohio-state.edu>
|
|
6 ;; Keywords: internal
|
|
7
|
|
8 ;; This file is part of XEmacs.
|
|
9
|
|
10 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
11 ;; under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
|
15 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
18 ;; General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
|
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
23 ;; 02111-1307, USA.
|
|
24
|
|
25 ;;; Synched up with: Not in FSF
|
|
26
|
|
27 ;;; Commentary:
|
|
28
|
|
29 ;; package-get -
|
|
30 ;; Retrieve a package and any other required packages from an archive
|
|
31 ;;
|
|
32 ;; The idea:
|
|
33 ;; A new XEmacs lisp-only release is generated with the following steps:
|
|
34 ;; 1. The maintainer runs some yet to be written program that
|
|
35 ;; generates all the dependency information. This should
|
|
36 ;; determine all the require and provide statements and associate
|
|
37 ;; them with a package.
|
|
38 ;; 2. All the packages are then bundled into their own tar balls
|
|
39 ;; (or whatever format)
|
|
40 ;; 3. Maintainer automatically generates a new `package-get-base'
|
|
41 ;; data structure which contains information such as the
|
|
42 ;; package name, the file to be retrieved, an md5 checksum,
|
|
43 ;; etc (see `package-get-base').
|
|
44 ;; 4. The maintainer posts an announcement with the new version
|
|
45 ;; of `package-get-base'.
|
|
46 ;; 5. A user/system manager saves this posting and runs
|
|
47 ;; `package-get-update' which uses the previously saved list
|
|
48 ;; of packages, `package-get-here' that the user/site
|
|
49 ;; wants to determine what new versions to download and
|
|
50 ;; install.
|
|
51 ;;
|
|
52 ;; A user/site manager can generate a new `package-get-here' structure
|
|
53 ;; by using `package-get-setup' which generates a customize like
|
|
54 ;; interface to the list of packages. The buffer looks something
|
|
55 ;; like:
|
|
56 ;;
|
|
57 ;; gnus - a mail and news reader
|
|
58 ;; [] Always install
|
|
59 ;; [] Needs updating
|
|
60 ;; [] Required by other [packages]
|
|
61 ;; version: 2.0
|
|
62 ;;
|
|
63 ;; vm - a mail reader
|
|
64 ;; [] Always install
|
|
65 ;; [] Needs updating
|
|
66 ;; [] Required by other [packages]
|
|
67 ;;
|
|
68 ;; Where `[]' indicates a toggle box
|
|
69 ;;
|
|
70 ;; - Clicking on "Always install" puts this into
|
|
71 ;; `package-get-here' list. "Needs updating" indicates a new
|
|
72 ;; version is available. Anything already in
|
|
73 ;; `package-get-here' has this enabled.
|
|
74 ;; - "Required by other" means some other packages are going to force
|
|
75 ;; this to be installed. Clicking on [packages] gives a list
|
|
76 ;; of packages that require this.
|
|
77 ;;
|
|
78 ;; The `package-get-base' should be installed in a file in
|
|
79 ;; `data-directory'. The `package-get-here' should be installed in
|
|
80 ;; site-lisp. Both are then read at run time.
|
|
81 ;;
|
|
82 ;; TODO:
|
|
83 ;; - Implement `package-get-setup'
|
|
84 ;; - Actually put `package-get-base' and `package-get-here' into
|
|
85 ;; files that are read.
|
|
86 ;; - Allow users to have their own packages that they want installed
|
|
87 ;; in ~/.xemacs/.
|
|
88 ;; - SOMEONE needs to write the programs that generate the
|
|
89 ;; provides/requires database and makes it into a lisp data
|
|
90 ;; structure suitable for `package-get-base'
|
|
91 ;; - Handle errors such as no package providing a required symbol.
|
|
92 ;; - Tie this into the `require' function to download packages
|
|
93 ;; transparently.
|
|
94
|
|
95 ;;; Change Log
|
|
96
|
|
97 ;;; Code:
|
|
98
|
|
99 (require 'package-admin)
|
298
|
100 (require 'package-get-base)
|
235
|
101
|
|
102 (defvar package-get-base nil
|
|
103 "List of packages that are installed at this site.
|
|
104 For each element in the alist, car is the package name and the cdr is
|
|
105 a plist containing information about the package. Typical fields
|
|
106 kept in the plist are:
|
|
107
|
|
108 version - version of this package
|
|
109 provides - list of symbols provided
|
|
110 requires - list of symbols that are required.
|
|
111 These in turn are provided by other packages.
|
|
112 filename - name of the file.
|
|
113 size - size of the file (aka the bundled package)
|
|
114 md5sum - computed md5 checksum
|
|
115 description - What this package is for.
|
|
116 type - Whether this is a 'binary (default) or 'single file package
|
|
117
|
|
118 More fields may be added as needed. An example:
|
|
119
|
|
120 '(
|
|
121 (name
|
|
122 (version \"<version 2>\"
|
|
123 file \"filename\"
|
|
124 description \"what this package is about.\"
|
|
125 provides (<list>)
|
|
126 requires (<list>)
|
|
127 size <integer-bytes>
|
|
128 md5sum \"<checksum\"
|
|
129 type single
|
|
130 )
|
|
131 (version \"<version 1>\"
|
|
132 file \"filename\"
|
|
133 description \"what this package is about.\"
|
|
134 provides (<list>)
|
|
135 requires (<list>)
|
|
136 size <integer-bytes>
|
|
137 md5sum \"<checksum\"
|
|
138 type single
|
|
139 )
|
|
140 ...
|
|
141 ))
|
|
142
|
|
143 For version information, it is assumed things are listed in most
|
|
144 recent to least recent -- in other words, the version names don't have to
|
|
145 be lexically ordered. It is debatable if it makes sense to have more than
|
|
146 one version of a package available.")
|
|
147
|
263
|
148 (defvar package-get-dir (temp-directory)
|
235
|
149 "*Where to store temporary files for staging.")
|
|
150
|
|
151 (defvar package-get-remote
|
|
152 '(
|
276
|
153 ("ftp.xemacs.org" "/pub/xemacs/beta/xemacs-21.0/packages/binary-packages")
|
|
154 ("ftp.xemacs.org" "/pub/xemacs/beta/xemacs-21.0/packages/single-file-packages")
|
235
|
155 ("ftp.xemacs.org" "/pub/xemacs/package"))
|
|
156 "*List of remote sites to contact for downloading packages.
|
|
157 List format is '(site-name directory-on-site). Each site is tried in
|
314
|
158 order until the package is found. As a special case, `site-name' can be
|
|
159 `nil', in which case `directory-on-site' is treated as a local directory.")
|
235
|
160
|
|
161 (defvar package-get-remove-copy nil
|
|
162 "*After copying and installing a package, if this is T, then remove the
|
|
163 copy. Otherwise, keep it around.")
|
|
164
|
314
|
165 (defun package-get-rmtree (directory)
|
|
166 "Delete a directory and all of its contents, recursively.
|
|
167 This is a feeble attempt at making a portable rmdir."
|
|
168 (let ( (orig-default-directory default-directory) files dirs dir)
|
|
169 (unwind-protect
|
|
170 (progn
|
|
171 (setq directory (file-name-as-directory directory))
|
|
172 (setq files (directory-files directory nil nil nil t))
|
|
173 (setq dirs (directory-files directory nil nil nil 'dirs))
|
|
174 (while dirs
|
|
175 (setq dir (car dirs))
|
|
176 (if (file-symlink-p dir) ;; just in case, handle symlinks
|
|
177 (delete-file dir)
|
|
178 (if (not (or (string-equal dir ".") (string-equal dir "..")))
|
|
179 (package-get-rmtree (expand-file-name dir directory))))
|
|
180 (setq dirs (cdr dirs))
|
|
181 )
|
|
182 (setq default-directory directory)
|
|
183 (condition-case err
|
|
184 (progn
|
|
185 (while files
|
|
186 (delete-file (car files))
|
|
187 (setq files (cdr files))
|
|
188 )
|
|
189 (delete-directory directory)
|
|
190 )
|
|
191 (file-error
|
|
192 (message "%s: %s: \"%s\"" (nth 1 err) (nth 2 err) (nth 3 err)))
|
|
193 )
|
|
194 )
|
|
195 (progn
|
|
196 (setq default-directory orig-default-directory)
|
|
197 ))
|
|
198 ))
|
|
199
|
292
|
200 ;;;###autoload
|
263
|
201 (defun package-get-update-all ()
|
|
202 "Fetch and install the latest versions of all currently installed packages."
|
|
203 (interactive)
|
|
204 ;; Load a fresh copy
|
314
|
205 (catch 'exit
|
|
206 (mapcar (lambda (pkg)
|
|
207 (if (not (package-get (car pkg) nil 'never))
|
|
208 (throw 'exit nil) ;; Bail out if error detected
|
|
209 ))
|
|
210 packages-package-list)))
|
|
211
|
|
212 (defun package-get-interactive-package-query (get-version package-symbol)
|
|
213 "Perform interactive querying for package and optional version.
|
|
214 Query for a version if GET-VERSION is non-nil. Return package name as
|
|
215 a symbol instead of a string if PACKAGE-SYMBOL is non-nil.
|
|
216 The return value is suitable for direct passing to `interactive'."
|
|
217 (let ( (table (mapcar '(lambda (item)
|
|
218 (let ( (name (symbol-name (car item))) )
|
|
219 (cons name name)
|
|
220 ))
|
|
221 package-get-base))
|
|
222 package package-symbol default-version version)
|
|
223 (save-window-excursion
|
|
224 (setq package (completing-read "Package: " table nil t))
|
|
225 (setq package-symbol (intern package))
|
|
226 (if get-version
|
|
227 (progn
|
|
228 (setq default-version
|
|
229 (package-get-info-prop
|
|
230 (package-get-info-version
|
|
231 (package-get-info-find-package package-get-base
|
|
232 package-symbol) nil)
|
|
233 'version))
|
|
234 (while (string=
|
|
235 (setq version (read-string "Version: " default-version))
|
|
236 "")
|
|
237 )
|
|
238 (if package-symbol
|
|
239 (list package-symbol version)
|
|
240 (list package version))
|
|
241 )
|
|
242 (if package-symbol
|
|
243 (list package-symbol)
|
|
244 (list package)))
|
|
245 )))
|
263
|
246
|
292
|
247 ;;;###autoload
|
235
|
248 (defun package-get-all (package version &optional fetched-packages)
|
|
249 "Fetch PACKAGE with VERSION and all other required packages.
|
|
250 Uses `package-get-base' to determine just what is required and what
|
|
251 package provides that functionality. If VERSION is nil, retrieves
|
|
252 latest version. Optional argument FETCHED-PACKAGES is used to keep
|
314
|
253 track of packages already fetched.
|
|
254
|
|
255 Returns nil upon error."
|
|
256 (interactive (package-get-interactive-package-query t nil))
|
237
|
257 (let* ((the-package (package-get-info-find-package package-get-base
|
|
258 package))
|
|
259 (this-package (package-get-info-version
|
|
260 the-package version))
|
235
|
261 (this-requires (package-get-info-prop this-package 'requires))
|
|
262 )
|
314
|
263 (catch 'exit
|
|
264 (setq version (package-get-info-prop this-package 'version))
|
|
265 (unless (package-get-installedp package version)
|
|
266 (if (not (package-get package version))
|
|
267 (progn
|
|
268 (setq fetched-packages nil)
|
|
269 (throw 'exit nil))))
|
|
270 (setq fetched-packages
|
|
271 (append (list package)
|
|
272 (package-get-info-prop this-package 'provides)
|
|
273 fetched-packages))
|
|
274 ;; grab everything that this package requires plus recursively
|
|
275 ;; grab everything that the requires require. Keep track
|
|
276 ;; in `fetched-packages' the list of things provided -- this
|
|
277 ;; keeps us from going into a loop
|
|
278 (while this-requires
|
|
279 (if (not (member (car this-requires) fetched-packages))
|
|
280 (let* ((reqd-package (package-get-package-provider
|
|
281 (car this-requires)))
|
|
282 (reqd-version (cadr reqd-package))
|
|
283 (reqd-name (car reqd-package)))
|
|
284 (if (null reqd-name)
|
|
285 (error "Unable to find a provider for %s"
|
|
286 (car this-requires)))
|
|
287 (if (not (setq fetched-packages
|
|
288 (package-get-all reqd-name reqd-version
|
|
289 fetched-packages)))
|
|
290 (throw 'exit nil)))
|
|
291 )
|
|
292 (setq this-requires (cdr this-requires)))
|
|
293 )
|
294
|
294 fetched-packages
|
|
295 ))
|
235
|
296
|
314
|
297 (defun package-get-load-package-file (lispdir file)
|
|
298 (let (pathname)
|
|
299 (setq pathname (expand-file-name file lispdir))
|
|
300 (condition-case err
|
|
301 (progn
|
|
302 (load pathname t)
|
|
303 t)
|
|
304 (t
|
|
305 (message "Error loading package file \"%s\" %s!" pathname err)
|
|
306 nil))
|
|
307 ))
|
|
308
|
|
309 (defun package-get-init-package (lispdir)
|
|
310 "Initialize the package.
|
|
311 This really assumes that the package has never been loaded. Updating
|
|
312 a newer package can cause problems, due to old, obsolete functions in
|
|
313 the old package.
|
|
314
|
|
315 Return `t' upon complete success, `nil' if any errors occurred."
|
|
316 (progn
|
|
317 (if (and lispdir
|
|
318 (file-accessible-directory-p lispdir))
|
|
319 (progn
|
|
320 ;; Add lispdir to load-path if it doesn't already exist.
|
|
321 ;; NOTE: this does not take symlinks, etc., into account.
|
|
322 (if (let ( (dirs load-path) )
|
|
323 (catch 'done
|
|
324 (while dirs
|
|
325 (if (string-equal (car dirs) lispdir)
|
|
326 (throw 'done nil))
|
|
327 (setq dirs (cdr dirs))
|
|
328 )
|
|
329 t))
|
|
330 (setq load-path (cons lispdir load-path)))
|
|
331 (package-get-load-package-file lispdir "auto-autoloads")
|
|
332 t)
|
|
333 nil)
|
|
334 ))
|
|
335
|
292
|
336 ;;;###autoload
|
306
|
337 (defun package-get (package &optional version conflict install-dir)
|
235
|
338 "Fetch PACKAGE from remote site.
|
|
339 Optional arguments VERSION indicates which version to retrieve, nil
|
|
340 means most recent version. CONFLICT indicates what happens if the
|
|
341 package is already installed. Valid values for CONFLICT are:
|
|
342 'always always retrieve the package even if it is already installed
|
|
343 'never do not retrieve the package if it is installed.
|
306
|
344 INSTALL-DIR, if non-nil, specifies the package directory where
|
|
345 fetched packages should be installed.
|
235
|
346
|
|
347 The value of `package-get-base' is used to determine what files should
|
|
348 be retrieved. The value of `package-get-remote' is used to determine
|
|
349 where a package should be retrieved from. The sites are tried in
|
|
350 order so one is better off listing easily reached sites first.
|
|
351
|
|
352 Once the package is retrieved, its md5 checksum is computed. If that
|
|
353 sum does not match that stored in `package-get-base' for this version
|
314
|
354 of the package, an error is signalled.
|
|
355
|
|
356 Returns `t' upon success, the symbol `error' if the package was
|
|
357 successfully installed but errors occurred during initialization, or
|
|
358 `nil' upon error."
|
|
359 (interactive (package-get-interactive-package-query nil t))
|
235
|
360 (let* ((this-package
|
|
361 (package-get-info-version
|
|
362 (package-get-info-find-package package-get-base
|
|
363 package) version))
|
|
364 (found nil)
|
|
365 (search-dirs package-get-remote)
|
314
|
366 (base-filename (package-get-info-prop this-package 'filename))
|
|
367 (package-status t)
|
|
368 filenames full-package-filename package-lispdir)
|
235
|
369 (if (null this-package)
|
|
370 (error "Couldn't find package %s with version %s"
|
|
371 package version))
|
314
|
372 (if (null base-filename)
|
235
|
373 (error "No filename associated with package %s, version %s"
|
|
374 package version))
|
314
|
375 (if (null install-dir)
|
|
376 (setq install-dir (package-admin-get-install-dir nil)))
|
|
377
|
|
378 ;; Contrive a list of possible package filenames.
|
|
379 ;; Ugly. Is there a better way to do this?
|
|
380 (setq filenames (cons base-filename nil))
|
|
381 (if (string-match "^\\(..*\\)\.tar\.gz$" base-filename)
|
|
382 (setq filenames (cons (concat (match-string 1 base-filename) ".tgz")
|
|
383 filenames)))
|
|
384
|
237
|
385 (setq version (package-get-info-prop this-package 'version))
|
235
|
386 (unless (and (eq conflict 'never)
|
|
387 (package-get-installedp package version))
|
314
|
388 ;; Find the package from the search list in package-get-remote
|
235
|
389 ;; and copy it into the staging directory. Then validate
|
|
390 ;; the checksum. Finally, install the package.
|
314
|
391 (catch 'done
|
|
392 (let (search-filenames current-dir-entry host dir current-filename)
|
|
393 ;; In each search directory ...
|
|
394 (while search-dirs
|
|
395 (setq current-dir-entry (car search-dirs)
|
|
396 host (car current-dir-entry)
|
|
397 dir (car (cdr current-dir-entry))
|
|
398 search-filenames filenames)
|
|
399
|
|
400 ;; Look for one of the possible package filenames ...
|
|
401 (while search-filenames
|
|
402 (setq current-filename (car search-filenames))
|
|
403 (if (null host)
|
|
404 (progn
|
|
405 ;; No host means look on the current system.
|
|
406 (setq full-package-filename
|
|
407 (substitute-in-file-name
|
|
408 (expand-file-name current-filename
|
|
409 (file-name-as-directory dir))))
|
|
410 )
|
|
411 ;; If the file exists on the remote system ...
|
|
412 (if (file-exists-p (package-get-remote-filename
|
|
413 current-dir-entry current-filename))
|
|
414 (progn
|
|
415 ;; Get it
|
|
416 (setq full-package-filename
|
|
417 (package-get-staging-dir current-filename))
|
|
418 (message "Retrieving package `%s' ..."
|
|
419 current-filename)
|
|
420 (sit-for 0)
|
|
421 (copy-file (package-get-remote-filename current-dir-entry
|
|
422 current-filename)
|
|
423 ))))
|
|
424 ;; If we found it, we're done.
|
|
425 (if (file-exists-p full-package-filename)
|
|
426 (throw 'done nil))
|
|
427 ;; Didn't find it. Try the next possible filename.
|
|
428 (setq search-filenames (cdr search-filenames))
|
|
429 )
|
|
430 ;; Try looking in the next possible directory ...
|
|
431 (setq search-dirs (cdr search-dirs))
|
|
432 )
|
235
|
433 ))
|
314
|
434
|
|
435 (if (or (not full-package-filename)
|
|
436 (not (file-exists-p full-package-filename)))
|
|
437 (error "Unable to find file %s" base-filename))
|
235
|
438 ;; Validate the md5 checksum
|
284
|
439 ;; Doing it with XEmacs removes the need for an external md5 program
|
314
|
440 (message "Validating checksum for `%s'..." package) (sit-for 0)
|
235
|
441 (with-temp-buffer
|
294
|
442 ;; What ever happened to i-f-c-literally
|
284
|
443 (let (file-name-handler-alist)
|
314
|
444 (insert-file-contents-internal full-package-filename))
|
284
|
445 (if (not (string= (md5 (current-buffer))
|
|
446 (package-get-info-prop this-package
|
|
447 'md5sum)))
|
314
|
448 (error "Package %s does not match md5 checksum" base-filename)))
|
|
449
|
|
450 ;; Now delete old lisp directory, if any
|
|
451 ;;
|
|
452 ;; Gads, this is ugly. However, we're not supposed to use `concat'
|
|
453 ;; in the name of portability.
|
|
454 (if (and (setq package-lispdir (expand-file-name "lisp" install-dir))
|
|
455 (setq package-lispdir (expand-file-name (symbol-name package)
|
|
456 package-lispdir))
|
|
457 (file-accessible-directory-p package-lispdir))
|
|
458 (progn
|
|
459 (message "Removing old lisp directory \"%s\" ..." package-lispdir)
|
|
460 (sit-for 0)
|
|
461 (package-get-rmtree package-lispdir)
|
|
462 ))
|
|
463
|
|
464 (message "Installing package `%s' ..." package) (sit-for 0)
|
235
|
465 (let ((status
|
314
|
466 (package-admin-add-binary-package full-package-filename
|
|
467 install-dir)))
|
|
468 (if (= status 0)
|
|
469 (progn
|
|
470 ;; clear messages so that only messages from
|
|
471 ;; package-get-init-package are seen, below.
|
|
472 (clear-message)
|
|
473 (if (package-get-init-package package-lispdir)
|
|
474 (progn
|
|
475 (message "Added package `%s'" package)
|
|
476 (sit-for 0)
|
|
477 )
|
|
478 (progn
|
|
479 ;; display message only if there isn't already one.
|
|
480 (if (not (current-message))
|
|
481 (progn
|
|
482 (message "Added package `%s' (errors occurred)"
|
|
483 package)
|
|
484 (sit-for 0)
|
|
485 ))
|
|
486 (if package-status
|
|
487 (setq package-status 'errors))
|
|
488 ))
|
|
489 )
|
|
490 (message "Installation of package %s failed." base-filename)
|
|
491 (sit-for 0)
|
|
492 (switch-to-buffer package-admin-temp-buffer)
|
|
493 (setq package-status nil)
|
|
494 ))
|
235
|
495 (setq found t))
|
|
496 (if (and found package-get-remove-copy)
|
314
|
497 (delete-file full-package-filename))
|
|
498 package-status
|
235
|
499 ))
|
|
500
|
|
501 (defun package-get-info-find-package (which name)
|
294
|
502 "Look in WHICH for the package called NAME and return all the info
|
|
503 associated with it. See `package-get-base' for info on the format
|
|
504 returned.
|
235
|
505
|
|
506 To access fields returned from this, use
|
|
507 `package-get-info-version' to return information about particular a
|
|
508 version. Use `package-get-info-find-prop' to find particular property
|
|
509 from a version returned by `package-get-info-version'."
|
294
|
510 (interactive "xPackage list: \nsPackage Name: ")
|
235
|
511 (if which
|
|
512 (if (eq (caar which) name)
|
|
513 (cdar which)
|
|
514 (if (cdr which)
|
|
515 (package-get-info-find-package (cdr which) name)))))
|
|
516
|
|
517 (defun package-get-info-version (package version)
|
|
518 "In PACKAGE, return the plist associated with a particular VERSION of the
|
|
519 package. PACKAGE is typically as returned by
|
|
520 `package-get-info-find-package'. If VERSION is nil, then return the
|
|
521 first (aka most recent) version. Use `package-get-info-find-prop'
|
|
522 to retrieve a particular property from the value returned by this."
|
314
|
523 (interactive (package-get-interactive-package-query t t))
|
235
|
524 (while (and version package (not (string= (plist-get (car package) 'version) version)))
|
|
525 (setq package (cdr package)))
|
|
526 (if package (car package)))
|
|
527
|
|
528 (defun package-get-info-prop (package-version property)
|
|
529 "In PACKAGE-VERSION, return the value associated with PROPERTY.
|
|
530 PACKAGE-VERSION is typically returned by `package-get-info-version'
|
|
531 and PROPERTY is typically (although not limited to) one of the
|
|
532 following:
|
|
533
|
|
534 version - version of this package
|
|
535 provides - list of symbols provided
|
|
536 requires - list of symbols that are required.
|
|
537 These in turn are provided by other packages.
|
|
538 size - size of the bundled package
|
|
539 md5sum - computed md5 checksum"
|
|
540 (interactive "xPackage Version: \nSProperty")
|
|
541 (plist-get package-version property))
|
|
542
|
|
543 (defun package-get-info-version-prop (package-list package version property)
|
|
544 "In PACKAGE-LIST, search for PACKAGE with this VERSION and return
|
|
545 PROPERTY value."
|
|
546 (package-get-info-prop
|
|
547 (package-get-info-version
|
|
548 (package-get-info-find-package package-list package) version) property))
|
|
549
|
|
550 (defun package-get-set-version-prop (package-list package version
|
|
551 property value)
|
|
552 "A utility to make it easier to add a VALUE for a specific PROPERTY
|
|
553 in this VERSION of a specific PACKAGE kept in the PACKAGE-LIST.
|
|
554 Returns the modified PACKAGE-LIST. Any missing fields are created."
|
|
555 )
|
|
556
|
|
557 (defun package-get-staging-dir (filename)
|
|
558 "Return a good place to stash FILENAME when it is retrieved.
|
|
559 Use `package-get-dir' for directory to store stuff.
|
|
560 Creates `package-get-dir' it it doesn't exist."
|
|
561 (interactive "FPackage filename: ")
|
|
562 (if (not (file-exists-p package-get-dir))
|
|
563 (make-directory package-get-dir))
|
314
|
564 (expand-file-name
|
|
565 (file-name-nondirectory (or (nth 2 (efs-ftp-path filename)) filename))
|
|
566 (file-name-as-directory package-get-dir)))
|
235
|
567
|
|
568
|
|
569 (defun package-get-remote-filename (search filename)
|
|
570 "Return FILENAME as a remote filename.
|
|
571 It first checks if FILENAME already is a remote filename. If it is
|
|
572 not, then it uses the (car search) as the remote site-name and the (cadr
|
|
573 search) as the remote-directory and concatenates filename. In other
|
|
574 words
|
|
575 site-name:remote-directory/filename
|
|
576 "
|
|
577 (if (efs-ftp-path filename)
|
|
578 filename
|
298
|
579 (let ((dir (cadr search)))
|
|
580 (concat "/"
|
|
581 (car search) ":"
|
|
582 (if (string-match "/$" dir)
|
|
583 dir
|
|
584 (concat dir "/"))
|
|
585 filename))))
|
235
|
586
|
|
587
|
|
588 (defun package-get-installedp (package version)
|
|
589 "Determine if PACKAGE with VERSION has already been installed.
|
|
590 I'm not sure if I want to do this by searching directories or checking
|
263
|
591 some built in variables. For now, use packages-package-list."
|
|
592 ;; Use packages-package-list which contains name and version
|
294
|
593 (equal (plist-get
|
|
594 (package-get-info-find-package packages-package-list
|
|
595 package) ':version)
|
|
596 (if (floatp version) version (string-to-number version))))
|
235
|
597
|
294
|
598 ;;;###autoload
|
235
|
599 (defun package-get-package-provider (sym)
|
|
600 "Search for a package that provides SYM and return the name and
|
|
601 version. Searches in `package-get-base' for SYM. If SYM is a
|
|
602 consp, then it must match a corresponding (provide (SYM VERSION)) from
|
|
603 the package."
|
|
604 (interactive "SSymbol: ")
|
|
605 (let ((packages package-get-base)
|
|
606 (done nil)
|
|
607 (found nil))
|
|
608 (while (and (not done) packages)
|
237
|
609 (let* ((this-name (caar packages))
|
|
610 (this-package (cdr (car packages)))) ;strip off package name
|
235
|
611 (while (and (not done) this-package)
|
237
|
612 (if (or (eq this-name sym)
|
|
613 (eq (cons this-name
|
|
614 (package-get-info-prop (car this-package) 'version))
|
|
615 sym)
|
|
616 (member sym (package-get-info-prop (car this-package) 'provides)))
|
235
|
617 (progn (setq done t)
|
|
618 (setq found (list (caar packages)
|
|
619 (package-get-info-prop (car this-package) 'version))))
|
|
620 (setq this-package (cdr this-package)))))
|
|
621 (setq packages (cdr packages)))
|
|
622 found))
|
|
623
|
286
|
624 ;;
|
|
625 ;; customize interfaces.
|
|
626 ;; The group is in this file so that custom loads includes this file.
|
|
627 ;;
|
|
628 (defgroup packages nil
|
|
629 "Configure XEmacs packages."
|
|
630 :group 'emacs)
|
|
631
|
292
|
632 ;;;###autoload
|
286
|
633 (defun package-get-custom ()
|
|
634 "Fetch and install the latest versions of all customized packages."
|
|
635 (interactive)
|
|
636 ;; Load a fresh copy
|
|
637 (load "package-get-custom.el")
|
|
638 (mapcar (lambda (pkg)
|
|
639 (if (eval (intern (concat (symbol-name (car pkg)) "-package")))
|
|
640 (package-get-all (car pkg) nil))
|
|
641 t)
|
|
642 package-get-base))
|
|
643
|
288
|
644 (defun package-get-ever-installed-p (pkg &optional notused)
|
286
|
645 (string-match "-package$" (symbol-name pkg))
|
|
646 (custom-initialize-set
|
|
647 pkg
|
|
648 (if (package-get-info-find-package
|
|
649 packages-package-list
|
|
650 (intern (substring (symbol-name pkg) 0 (match-beginning 0))))
|
|
651 t)))
|
|
652
|
288
|
653 (defun package-get-file-installed-p (file &optional paths)
|
|
654 "Return absolute-path of FILE if FILE exists in PATHS.
|
|
655 If PATHS is omitted, `load-path' is used."
|
|
656 (if (null paths)
|
|
657 (setq paths load-path)
|
|
658 )
|
|
659 (catch 'tag
|
|
660 (let (path)
|
|
661 (while paths
|
|
662 (setq path (expand-file-name file (car paths)))
|
|
663 (if (file-exists-p path)
|
|
664 (throw 'tag path)
|
|
665 )
|
|
666 (setq paths (cdr paths))
|
|
667 ))))
|
|
668
|
286
|
669 (defun package-get-create-custom ()
|
|
670 "Creates a package customization file package-get-custom.el.
|
|
671 Entries in the customization file are retrieved from package-get-base.el."
|
|
672 (interactive)
|
|
673 ;; Load a fresh copy
|
|
674 (let ((custom-buffer (find-file-noselect
|
288
|
675 (or (package-get-file-installed-p
|
|
676 "package-get-custom.el")
|
314
|
677 (expand-file-name
|
|
678 "package-get-custom.el"
|
|
679 (file-name-directory
|
|
680 (package-get-file-installed-p
|
|
681 "package-get-base.el"))
|
|
682 ))))
|
286
|
683 (pkg-groups nil))
|
|
684
|
|
685 ;; clear existing stuff
|
|
686 (delete-region (point-min custom-buffer)
|
|
687 (point-max custom-buffer) custom-buffer)
|
|
688 (insert-string "(require 'package-get)\n" custom-buffer)
|
|
689
|
|
690 (mapcar (lambda (pkg)
|
|
691 (let ((category (plist-get (car (cdr pkg)) 'category)))
|
|
692 (or (memq (intern category) pkg-groups)
|
|
693 (progn
|
|
694 (setq pkg-groups (cons (intern category) pkg-groups))
|
|
695 (insert-string
|
|
696 (concat "(defgroup " category "-packages nil\n"
|
|
697 " \"" category " package group\"\n"
|
|
698 " :group 'packages)\n\n") custom-buffer)))
|
|
699
|
|
700 (insert-string
|
|
701 (concat "(defcustom " (symbol-name (car pkg))
|
|
702 "-package nil \n"
|
|
703 " \"" (plist-get (car (cdr pkg)) 'description) "\"\n"
|
|
704 " :group '" category "-packages\n"
|
288
|
705 " :initialize 'package-get-ever-installed-p\n"
|
286
|
706 " :type 'boolean)\n\n") custom-buffer)))
|
294
|
707 package-get-base) custom-buffer)
|
286
|
708 )
|
|
709
|
|
710 ;; need this first to avoid infinite dependency loops
|
|
711 (provide 'package-get)
|
|
712
|
|
713 ;; potentially update the custom dependencies every time we load this
|
288
|
714 (let ((custom-file (package-get-file-installed-p "package-get-custom.el"))
|
|
715 (package-file (package-get-file-installed-p "package-get-base.el")))
|
286
|
716 ;; update custom file if it doesn't exist
|
|
717 (if (or (not custom-file)
|
|
718 (and (< (car (nth 5 (file-attributes custom-file)))
|
|
719 (car (nth 5 (file-attributes package-file))))
|
|
720 (< (car (nth 5 (file-attributes custom-file)))
|
|
721 (car (nth 5 (file-attributes package-file))))))
|
|
722 (save-excursion
|
|
723 (message "generating package customizations...")
|
|
724 (set-buffer (package-get-create-custom))
|
|
725 (save-buffer)
|
|
726 (message "generating package customizations...done")))
|
|
727 (load "package-get-custom.el"))
|
|
728
|
235
|
729 ;;; package-get.el ends here
|