Fix bug #9221 with memory leak in bidi display.
[emacs.git] / lisp / emacs-lisp / package.el
blob19e8375966b6448b7b5d3bcbf2d6b636b7812dab
1 ;;; package.el --- Simple package system for Emacs
3 ;; Copyright (C) 2007-2011 Free Software Foundation, Inc.
5 ;; Author: Tom Tromey <tromey@redhat.com>
6 ;; Created: 10 Mar 2007
7 ;; Version: 0.9
8 ;; Keywords: tools
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
27 ;;; Change Log:
29 ;; 2 Apr 2007 - now using ChangeLog file
30 ;; 15 Mar 2007 - updated documentation
31 ;; 14 Mar 2007 - Changed how obsolete packages are handled
32 ;; 13 Mar 2007 - Wrote package-install-from-buffer
33 ;; 12 Mar 2007 - Wrote package-menu mode
35 ;;; Commentary:
37 ;; The idea behind package.el is to be able to download packages and
38 ;; install them. Packages are versioned and have versioned
39 ;; dependencies. Furthermore, this supports built-in packages which
40 ;; may or may not be newer than user-specified packages. This makes
41 ;; it possible to upgrade Emacs and automatically disable packages
42 ;; which have moved from external to core. (Note though that we don't
43 ;; currently register any of these, so this feature does not actually
44 ;; work.)
46 ;; A package is described by its name and version. The distribution
47 ;; format is either a tar file or a single .el file.
49 ;; A tar file should be named "NAME-VERSION.tar". The tar file must
50 ;; unpack into a directory named after the package and version:
51 ;; "NAME-VERSION". It must contain a file named "PACKAGE-pkg.el"
52 ;; which consists of a call to define-package. It may also contain a
53 ;; "dir" file and the info files it references.
55 ;; A .el file is named "NAME-VERSION.el" in the remote archive, but is
56 ;; installed as simply "NAME.el" in a directory named "NAME-VERSION".
58 ;; The downloader downloads all dependent packages. By default,
59 ;; packages come from the official GNU sources, but others may be
60 ;; added by customizing the `package-archives' alist. Packages get
61 ;; byte-compiled at install time.
63 ;; At activation time we will set up the load-path and the info path,
64 ;; and we will load the package's autoloads. If a package's
65 ;; dependencies are not available, we will not activate that package.
67 ;; Conceptually a package has multiple state transitions:
69 ;; * Download. Fetching the package from ELPA.
70 ;; * Install. Untar the package, or write the .el file, into
71 ;; ~/.emacs.d/elpa/ directory.
72 ;; * Byte compile. Currently this phase is done during install,
73 ;; but we may change this.
74 ;; * Activate. Evaluate the autoloads for the package to make it
75 ;; available to the user.
76 ;; * Load. Actually load the package and run some code from it.
78 ;; Other external functions you may want to use:
80 ;; M-x list-packages
81 ;; Enters a mode similar to buffer-menu which lets you manage
82 ;; packages. You can choose packages for install (mark with "i",
83 ;; then "x" to execute) or deletion (not implemented yet), and you
84 ;; can see what packages are available. This will automatically
85 ;; fetch the latest list of packages from ELPA.
87 ;; M-x package-install-from-buffer
88 ;; Install a package consisting of a single .el file that appears
89 ;; in the current buffer. This only works for packages which
90 ;; define a Version header properly; package.el also supports the
91 ;; extension headers Package-Version (in case Version is an RCS id
92 ;; or similar), and Package-Requires (if the package requires other
93 ;; packages).
95 ;; M-x package-install-file
96 ;; Install a package from the indicated file. The package can be
97 ;; either a tar file or a .el file. A tar file must contain an
98 ;; appropriately-named "-pkg.el" file; a .el file must be properly
99 ;; formatted as with package-install-from-buffer.
101 ;;; Thanks:
102 ;;; (sorted by sort-lines):
104 ;; Jim Blandy <jimb@red-bean.com>
105 ;; Karl Fogel <kfogel@red-bean.com>
106 ;; Kevin Ryde <user42@zip.com.au>
107 ;; Lawrence Mitchell
108 ;; Michael Olson <mwolson@member.fsf.org>
109 ;; Sebastian Tennant <sebyte@smolny.plus.com>
110 ;; Stefan Monnier <monnier@iro.umontreal.ca>
111 ;; Vinicius Jose Latorre <viniciusjl@ig.com.br>
112 ;; Phil Hagelberg <phil@hagelb.org>
114 ;;; ToDo:
116 ;; - putting info dirs at the start of the info path means
117 ;; users see a weird ordering of categories. OTOH we want to
118 ;; override later entries. maybe emacs needs to enforce
119 ;; the standard layout?
120 ;; - put bytecode in a separate directory tree
121 ;; - perhaps give users a way to recompile their bytecode
122 ;; or do it automatically when emacs changes
123 ;; - give users a way to know whether a package is installed ok
124 ;; - give users a way to view a package's documentation when it
125 ;; only appears in the .el
126 ;; - use/extend checkdoc so people can tell if their package will work
127 ;; - "installed" instead of a blank in the status column
128 ;; - tramp needs its files to be compiled in a certain order.
129 ;; how to handle this? fix tramp?
130 ;; - on emacs 21 we don't kill the -autoloads.el buffer. what about 22?
131 ;; - maybe we need separate .elc directories for various emacs versions
132 ;; and also emacs-vs-xemacs. That way conditional compilation can
133 ;; work. But would this break anything?
134 ;; - should store the package's keywords in archive-contents, then
135 ;; let the users filter the package-menu by keyword. See
136 ;; finder-by-keyword. (We could also let people view the
137 ;; Commentary, but it isn't clear how useful this is.)
138 ;; - William Xu suggests being able to open a package file without
139 ;; installing it
140 ;; - Interface with desktop.el so that restarting after an install
141 ;; works properly
142 ;; - Implement M-x package-upgrade, to upgrade any/all existing packages
143 ;; - Use hierarchical layout. PKG/etc PKG/lisp PKG/info
144 ;; ... except maybe lisp?
145 ;; - It may be nice to have a macro that expands to the package's
146 ;; private data dir, aka ".../etc". Or, maybe data-directory
147 ;; needs to be a list (though this would be less nice)
148 ;; a few packages want this, eg sokoban
149 ;; - package menu needs:
150 ;; ability to know which packages are built-in & thus not deletable
151 ;; it can sometimes print odd results, like 0.3 available but 0.4 active
152 ;; why is that?
153 ;; - Allow multiple versions on the server...?
154 ;; [ why bother? ]
155 ;; - Don't install a package which will invalidate dependencies overall
156 ;; - Allow something like (or (>= emacs 21.0) (>= xemacs 21.5))
157 ;; [ currently thinking, why bother.. KISS ]
158 ;; - Allow optional package dependencies
159 ;; then if we require 'bbdb', bbdb-specific lisp in lisp/bbdb
160 ;; and just don't compile to add to load path ...?
161 ;; - Have a list of archive URLs? [ maybe there's no point ]
162 ;; - David Kastrup pointed out on the xemacs list that for GPL it
163 ;; is friendlier to ship the source tree. We could "support" that
164 ;; by just having a "src" subdir in the package. This isn't ideal
165 ;; but it probably is not worth trying to support random source
166 ;; tree layouts, build schemes, etc.
167 ;; - Our treatment of the info path is somewhat bogus
168 ;; - perhaps have an "unstable" tree in ELPA as well as a stable one
170 ;;; Code:
172 (require 'tabulated-list)
174 (defgroup package nil
175 "Manager for Emacs Lisp packages."
176 :group 'applications
177 :version "24.1")
179 ;;;###autoload
180 (defcustom package-enable-at-startup t
181 "Whether to activate installed packages when Emacs starts.
182 If non-nil, packages are activated after reading the init file
183 and before `after-init-hook'. Activation is not done if
184 `user-init-file' is nil (e.g. Emacs was started with \"-q\").
186 Even if the value is nil, you can type \\[package-initialize] to
187 activate the package system at any time."
188 :type 'boolean
189 :group 'package
190 :version "24.1")
192 (defcustom package-load-list '(all)
193 "List of packages for `package-initialize' to load.
194 Each element in this list should be a list (NAME VERSION), or the
195 symbol `all'. The symbol `all' says to load the latest installed
196 versions of all packages not specified by other elements.
198 For an element (NAME VERSION), NAME is a package name (a symbol).
199 VERSION should be t, a string, or nil.
200 If VERSION is t, all versions are loaded, though obsolete ones
201 will be put in `package-obsolete-alist' and not activated.
202 If VERSION is a string, only that version is ever loaded.
203 Any other version, even if newer, is silently ignored.
204 Hence, the package is \"held\" at that version.
205 If VERSION is nil, the package is not loaded (it is \"disabled\")."
206 :type '(repeat symbol)
207 :risky t
208 :group 'package
209 :version "24.1")
211 (defvar Info-directory-list)
212 (declare-function info-initialize "info" ())
213 (declare-function url-http-parse-response "url-http" ())
214 (declare-function lm-header "lisp-mnt" (header))
215 (declare-function lm-commentary "lisp-mnt" (&optional file))
216 (defvar url-http-end-of-headers)
218 (defcustom package-archives '(("gnu" . "http://elpa.gnu.org/packages/"))
219 "An alist of archives from which to fetch.
220 The default value points to the GNU Emacs package repository.
222 Each element has the form (ID . LOCATION).
223 ID is an archive name, as a string.
224 LOCATION specifies the base location for the archive.
225 If it starts with \"http:\", it is treated as a HTTP URL;
226 otherwise it should be an absolute directory name.
227 (Other types of URL are currently not supported.)"
228 :type '(alist :key-type (string :tag "Archive name")
229 :value-type (string :tag "URL or directory name"))
230 :risky t
231 :group 'package
232 :version "24.1")
234 (defconst package-archive-version 1
235 "Version number of the package archive understood by this file.
236 Lower version numbers than this will probably be understood as well.")
238 (defconst package-el-version "1.0"
239 "Version of package.el.")
241 ;; We don't prime the cache since it tends to get out of date.
242 (defvar package-archive-contents nil
243 "Cache of the contents of the Emacs Lisp Package Archive.
244 This is an alist mapping package names (symbols) to package
245 descriptor vectors. These are like the vectors for `package-alist'
246 but have extra entries: one which is 'tar for tar packages and
247 'single for single-file packages, and one which is the name of
248 the archive from which it came.")
249 (put 'package-archive-contents 'risky-local-variable t)
251 (defcustom package-user-dir (locate-user-emacs-file "elpa")
252 "Directory containing the user's Emacs Lisp packages.
253 The directory name should be absolute.
254 Apart from this directory, Emacs also looks for system-wide
255 packages in `package-directory-list'."
256 :type 'directory
257 :risky t
258 :group 'package
259 :version "24.1")
261 (defcustom package-directory-list
262 ;; Defaults are subdirs named "elpa" in the site-lisp dirs.
263 (let (result)
264 (dolist (f load-path)
265 (and (stringp f)
266 (equal (file-name-nondirectory f) "site-lisp")
267 (push (expand-file-name "elpa" f) result)))
268 (nreverse result))
269 "List of additional directories containing Emacs Lisp packages.
270 Each directory name should be absolute.
272 These directories contain packages intended for system-wide; in
273 contrast, `package-user-dir' contains packages for personal use."
274 :type '(repeat directory)
275 :risky t
276 :group 'package
277 :version "24.1")
279 ;; The value is precomputed in finder-inf.el, but don't load that
280 ;; until it's needed (i.e. when `package-intialize' is called).
281 (defvar package--builtins nil
282 "Alist of built-in packages.
283 The actual value is initialized by loading the library
284 `finder-inf'; this is not done until it is needed, e.g. by the
285 function `package-built-in-p'.
287 Each element has the form (PKG . DESC), where PKG is a package
288 name (a symbol) and DESC is a vector that describes the package.
289 The vector DESC has the form [VERSION-LIST REQS DOCSTRING].
290 VERSION-LIST is a version list.
291 REQS is a list of packages required by the package, each
292 requirement having the form (NAME VL), where NAME is a string
293 and VL is a version list.
294 DOCSTRING is a brief description of the package.")
295 (put 'package--builtins 'risky-local-variable t)
297 (defvar package-alist nil
298 "Alist of all packages available for activation.
299 Each element has the form (PKG . DESC), where PKG is a package
300 name (a symbol) and DESC is a vector that describes the package.
302 The vector DESC has the form [VERSION-LIST REQS DOCSTRING].
303 VERSION-LIST is a version list.
304 REQS is a list of packages required by the package, each
305 requirement having the form (NAME VL) where NAME is a string
306 and VL is a version list.
307 DOCSTRING is a brief description of the package.
309 This variable is set automatically by `package-load-descriptor',
310 called via `package-initialize'. To change which packages are
311 loaded and/or activated, customize `package-load-list'.")
312 (put 'package-archive-contents 'risky-local-variable t)
314 (defvar package-activated-list nil
315 "List of the names of currently activated packages.")
316 (put 'package-activated-list 'risky-local-variable t)
318 (defvar package-obsolete-alist nil
319 "Representation of obsolete packages.
320 Like `package-alist', but maps package name to a second alist.
321 The inner alist is keyed by version.")
322 (put 'package-obsolete-alist 'risky-local-variable t)
324 (defun package-version-join (vlist)
325 "Return the version string corresponding to the list VLIST.
326 This is, approximately, the inverse of `version-to-list'.
327 \(Actually, it returns only one of the possible inverses, since
328 `version-to-list' is a many-to-one operation.)"
329 (if (null vlist)
331 (let ((str-list (list "." (int-to-string (car vlist)))))
332 (dolist (num (cdr vlist))
333 (cond
334 ((>= num 0)
335 (push (int-to-string num) str-list)
336 (push "." str-list))
337 ((< num -3)
338 (error "Invalid version list `%s'" vlist))
340 ;; pre, or beta, or alpha
341 (cond ((equal "." (car str-list))
342 (pop str-list))
343 ((not (string-match "[0-9]+" (car str-list)))
344 (error "Invalid version list `%s'" vlist)))
345 (push (cond ((= num -1) "pre")
346 ((= num -2) "beta")
347 ((= num -3) "alpha"))
348 str-list))))
349 (if (equal "." (car str-list))
350 (pop str-list))
351 (apply 'concat (nreverse str-list)))))
353 (defun package-strip-version (dirname)
354 "Strip the version from a combined package name and version.
355 E.g., if given \"quux-23.0\", will return \"quux\""
356 (if (string-match (concat "\\`" package-subdirectory-regexp "\\'") dirname)
357 (match-string 1 dirname)))
359 (defun package-load-descriptor (dir package)
360 "Load the description file in directory DIR for package PACKAGE.
361 Here, PACKAGE is a string of the form NAME-VERSION, where NAME is
362 the package name and VERSION is its version."
363 (let* ((pkg-dir (expand-file-name package dir))
364 (pkg-file (expand-file-name
365 (concat (package-strip-version package) "-pkg")
366 pkg-dir)))
367 (when (and (file-directory-p pkg-dir)
368 (file-exists-p (concat pkg-file ".el")))
369 (load pkg-file nil t))))
371 (defun package-load-all-descriptors ()
372 "Load descriptors for installed Emacs Lisp packages.
373 This looks for package subdirectories in `package-user-dir' and
374 `package-directory-list'. The variable `package-load-list'
375 controls which package subdirectories may be loaded.
377 In each valid package subdirectory, this function loads the
378 description file containing a call to `define-package', which
379 updates `package-alist' and `package-obsolete-alist'."
380 (let ((all (memq 'all package-load-list))
381 (regexp (concat "\\`" package-subdirectory-regexp "\\'"))
382 name version force)
383 (dolist (dir (cons package-user-dir package-directory-list))
384 (when (file-directory-p dir)
385 (dolist (subdir (directory-files dir))
386 (when (and (file-directory-p (expand-file-name subdir dir))
387 (string-match regexp subdir))
388 (setq name (intern (match-string 1 subdir))
389 version (match-string 2 subdir)
390 force (assq name package-load-list))
391 (when (cond
392 ((null force)
393 all) ; not in package-load-list
394 ((null (setq force (cadr force)))
395 nil) ; disabled
396 ((eq force t)
398 ((stringp force) ; held
399 (version-list-= (version-to-list version)
400 (version-to-list force)))
402 (error "Invalid element in `package-load-list'")))
403 (package-load-descriptor dir subdir))))))))
405 (defsubst package-desc-vers (desc)
406 "Extract version from a package description vector."
407 (aref desc 0))
409 (defsubst package-desc-reqs (desc)
410 "Extract requirements from a package description vector."
411 (aref desc 1))
413 (defsubst package-desc-doc (desc)
414 "Extract doc string from a package description vector."
415 (aref desc 2))
417 (defsubst package-desc-kind (desc)
418 "Extract the kind of download from an archive package description vector."
419 (aref desc 3))
421 (defun package--dir (name version)
422 "Return the directory where a package is installed, or nil if none.
423 NAME and VERSION are both strings."
424 (let* ((subdir (concat name "-" version))
425 (dir-list (cons package-user-dir package-directory-list))
426 pkg-dir)
427 (while dir-list
428 (let ((subdir-full (expand-file-name subdir (car dir-list))))
429 (if (file-directory-p subdir-full)
430 (setq pkg-dir subdir-full
431 dir-list nil)
432 (setq dir-list (cdr dir-list)))))
433 pkg-dir))
435 (defun package-activate-1 (package pkg-vec)
436 (let* ((name (symbol-name package))
437 (version-str (package-version-join (package-desc-vers pkg-vec)))
438 (pkg-dir (package--dir name version-str)))
439 (unless pkg-dir
440 (error "Internal error: unable to find directory for `%s-%s'"
441 name version-str))
442 ;; Add info node.
443 (when (file-exists-p (expand-file-name "dir" pkg-dir))
444 ;; FIXME: not the friendliest, but simple.
445 (require 'info)
446 (info-initialize)
447 (push pkg-dir Info-directory-list))
448 ;; Add to load path, add autoloads, and activate the package.
449 (push pkg-dir load-path)
450 (load (expand-file-name (concat name "-autoloads") pkg-dir) nil t)
451 (push package package-activated-list)
452 ;; Don't return nil.
455 (defun package-built-in-p (package &optional min-version)
456 "Return true if PACKAGE is built-in to Emacs.
457 Optional arg MIN-VERSION, if non-nil, should be a version list
458 specifying the minimum acceptable version."
459 (require 'finder-inf nil t) ; For `package--builtins'.
460 (let ((elt (assq package package--builtins)))
461 (and elt (version-list-<= min-version (package-desc-vers (cdr elt))))))
463 ;; This function goes ahead and activates a newer version of a package
464 ;; if an older one was already activated. This is not ideal; we'd at
465 ;; least need to check to see if the package has actually been loaded,
466 ;; and not merely activated.
467 (defun package-activate (package min-version)
468 "Activate package PACKAGE, of version MIN-VERSION or newer.
469 MIN-VERSION should be a version list.
470 If PACKAGE has any dependencies, recursively activate them.
471 Return nil if the package could not be activated."
472 (let ((pkg-vec (cdr (assq package package-alist)))
473 available-version found)
474 ;; Check if PACKAGE is available in `package-alist'.
475 (when pkg-vec
476 (setq available-version (package-desc-vers pkg-vec)
477 found (version-list-<= min-version available-version)))
478 (cond
479 ;; If no such package is found, maybe it's built-in.
480 ((null found)
481 (package-built-in-p package min-version))
482 ;; If the package is already activated, just return t.
483 ((memq package package-activated-list)
485 ;; Otherwise, proceed with activation.
487 (let ((fail (catch 'dep-failure
488 ;; Activate its dependencies recursively.
489 (dolist (req (package-desc-reqs pkg-vec))
490 (unless (package-activate (car req) (cadr req))
491 (throw 'dep-failure req))))))
492 (if fail
493 (warn "Unable to activate package `%s'.
494 Required package `%s-%s' is unavailable"
495 package (car fail) (package-version-join (cadr fail)))
496 ;; If all goes well, activate the package itself.
497 (package-activate-1 package pkg-vec)))))))
499 (defun package-mark-obsolete (package pkg-vec)
500 "Put package on the obsolete list, if not already there."
501 (let ((elt (assq package package-obsolete-alist)))
502 (if elt
503 ;; If this obsolete version does not exist in the list, update
504 ;; it the list.
505 (unless (assoc (package-desc-vers pkg-vec) (cdr elt))
506 (setcdr elt (cons (cons (package-desc-vers pkg-vec) pkg-vec)
507 (cdr elt))))
508 ;; Make a new association.
509 (push (cons package (list (cons (package-desc-vers pkg-vec)
510 pkg-vec)))
511 package-obsolete-alist))))
513 (defun define-package (name-string version-string
514 &optional docstring requirements
515 &rest extra-properties)
516 "Define a new package.
517 NAME-STRING is the name of the package, as a string.
518 VERSION-STRING is the version of the package, as a string.
519 DOCSTRING is a short description of the package, a string.
520 REQUIREMENTS is a list of dependencies on other packages.
521 Each requirement is of the form (OTHER-PACKAGE OTHER-VERSION),
522 where OTHER-VERSION is a string.
524 EXTRA-PROPERTIES is currently unused."
525 (let* ((name (intern name-string))
526 (version (version-to-list version-string))
527 (new-pkg-desc
528 (cons name
529 (vector version
530 (mapcar
531 (lambda (elt)
532 (list (car elt)
533 (version-to-list (car (cdr elt)))))
534 requirements)
535 docstring)))
536 (old-pkg (assq name package-alist)))
537 (cond
538 ;; If there's no old package, just add this to `package-alist'.
539 ((null old-pkg)
540 (push new-pkg-desc package-alist))
541 ((version-list-< (package-desc-vers (cdr old-pkg)) version)
542 ;; Remove the old package and declare it obsolete.
543 (package-mark-obsolete name (cdr old-pkg))
544 (setq package-alist (cons new-pkg-desc
545 (delq old-pkg package-alist))))
546 ;; You can have two packages with the same version, e.g. one in
547 ;; the system package directory and one in your private
548 ;; directory. We just let the first one win.
549 ((not (version-list-= (package-desc-vers (cdr old-pkg)) version))
550 ;; The package is born obsolete.
551 (package-mark-obsolete name (cdr new-pkg-desc))))))
553 ;; From Emacs 22.
554 (defun package-autoload-ensure-default-file (file)
555 "Make sure that the autoload file FILE exists and if not create it."
556 (unless (file-exists-p file)
557 (write-region
558 (concat ";;; " (file-name-nondirectory file)
559 " --- automatically extracted autoloads\n"
560 ";;\n"
561 ";;; Code:\n\n"
562 "\f\n;; Local Variables:\n"
563 ";; version-control: never\n"
564 ";; no-byte-compile: t\n"
565 ";; no-update-autoloads: t\n"
566 ";; End:\n"
567 ";;; " (file-name-nondirectory file)
568 " ends here\n")
569 nil file))
570 file)
572 (defun package-generate-autoloads (name pkg-dir)
573 (require 'autoload) ;Load before we let-bind generated-autoload-file!
574 (let* ((auto-name (concat name "-autoloads.el"))
575 (ignore-name (concat name "-pkg.el"))
576 (generated-autoload-file (expand-file-name auto-name pkg-dir))
577 (version-control 'never))
578 (unless (fboundp 'autoload-ensure-default-file)
579 (package-autoload-ensure-default-file generated-autoload-file))
580 (update-directory-autoloads pkg-dir)))
582 (defvar tar-parse-info)
583 (declare-function tar-untar-buffer "tar-mode" ())
585 (defun package-untar-buffer (dir)
586 "Untar the current buffer.
587 This uses `tar-untar-buffer' from Tar mode. All files should
588 untar into a directory named DIR; otherwise, signal an error."
589 (require 'tar-mode)
590 (tar-mode)
591 ;; Make sure everything extracts into DIR.
592 (let ((regexp (concat "\\`" (regexp-quote dir) "/")))
593 (dolist (tar-data tar-parse-info)
594 (unless (string-match regexp (aref tar-data 2))
595 (error "Package does not untar cleanly into directory %s/" dir))))
596 (tar-untar-buffer))
598 (defun package-unpack (name version)
599 (let* ((dirname (concat (symbol-name name) "-" version))
600 (pkg-dir (expand-file-name dirname package-user-dir)))
601 (make-directory package-user-dir t)
602 ;; FIXME: should we delete PKG-DIR if it exists?
603 (let* ((default-directory (file-name-as-directory package-user-dir)))
604 (package-untar-buffer dirname)
605 (package-generate-autoloads (symbol-name name) pkg-dir)
606 (let ((load-path (cons pkg-dir load-path)))
607 (byte-recompile-directory pkg-dir 0 t)))))
609 (defun package--write-file-no-coding (file-name)
610 (let ((buffer-file-coding-system 'no-conversion))
611 (write-region (point-min) (point-max) file-name)))
613 (defun package-unpack-single (file-name version desc requires)
614 "Install the contents of the current buffer as a package."
615 ;; Special case "package".
616 (if (string= file-name "package")
617 (package--write-file-no-coding
618 (expand-file-name (concat file-name ".el") package-user-dir))
619 (let* ((pkg-dir (expand-file-name (concat file-name "-"
620 (package-version-join
621 (version-to-list version)))
622 package-user-dir))
623 (el-file (expand-file-name (concat file-name ".el") pkg-dir))
624 (pkg-file (expand-file-name (concat file-name "-pkg.el") pkg-dir)))
625 (make-directory pkg-dir t)
626 (package--write-file-no-coding el-file)
627 (let ((print-level nil)
628 (print-length nil))
629 (write-region
630 (concat
631 (prin1-to-string
632 (list 'define-package
633 file-name
634 version
635 desc
636 (list 'quote
637 ;; Turn version lists into string form.
638 (mapcar
639 (lambda (elt)
640 (list (car elt)
641 (package-version-join (cadr elt))))
642 requires))))
643 "\n")
645 pkg-file
646 nil nil nil 'excl))
647 (package-generate-autoloads file-name pkg-dir)
648 (let ((load-path (cons pkg-dir load-path)))
649 (byte-recompile-directory pkg-dir 0 t)))))
651 (defmacro package--with-work-buffer (location file &rest body)
652 "Run BODY in a buffer containing the contents of FILE at LOCATION.
653 LOCATION is the base location of a package archive, and should be
654 one of the URLs (or file names) specified in `package-archives'.
655 FILE is the name of a file relative to that base location.
657 This macro retrieves FILE from LOCATION into a temporary buffer,
658 and evaluates BODY while that buffer is current. This work
659 buffer is killed afterwards. Return the last value in BODY."
660 `(let* ((http (string-match "\\`https?:" ,location))
661 (buffer
662 (if http
663 (url-retrieve-synchronously (concat ,location ,file))
664 (generate-new-buffer "*package work buffer*"))))
665 (prog1
666 (with-current-buffer buffer
667 (if http
668 (progn (package-handle-response)
669 (re-search-forward "^$" nil 'move)
670 (forward-char)
671 (delete-region (point-min) (point)))
672 (unless (file-name-absolute-p ,location)
673 (error "Archive location %s is not an absolute file name"
674 ,location))
675 (insert-file-contents (expand-file-name ,file ,location)))
676 ,@body)
677 (kill-buffer buffer))))
679 (defun package-handle-response ()
680 "Handle the response from a `url-retrieve-synchronously' call.
681 Parse the HTTP response and throw if an error occurred.
682 The url package seems to require extra processing for this.
683 This should be called in a `save-excursion', in the download buffer.
684 It will move point to somewhere in the headers."
685 ;; We assume HTTP here.
686 (require 'url-http)
687 (let ((response (url-http-parse-response)))
688 (when (or (< response 200) (>= response 300))
689 (error "Error during download request:%s"
690 (buffer-substring-no-properties (point) (progn
691 (end-of-line)
692 (point)))))))
694 (defun package-download-single (name version desc requires)
695 "Download and install a single-file package."
696 (let ((location (package-archive-base name))
697 (file (concat (symbol-name name) "-" version ".el")))
698 (package--with-work-buffer location file
699 (package-unpack-single (symbol-name name) version desc requires))))
701 (defun package-download-tar (name version)
702 "Download and install a tar package."
703 (let ((location (package-archive-base name))
704 (file (concat (symbol-name name) "-" version ".tar")))
705 (package--with-work-buffer location file
706 (package-unpack name version))))
708 (defun package-installed-p (package &optional min-version)
709 "Return true if PACKAGE, of MIN-VERSION or newer, is installed.
710 MIN-VERSION should be a version list."
711 (let ((pkg-desc (assq package package-alist)))
712 (if pkg-desc
713 (version-list-<= min-version
714 (package-desc-vers (cdr pkg-desc)))
715 ;; Also check built-in packages.
716 (package-built-in-p package min-version))))
718 (defun package-compute-transaction (package-list requirements)
719 "Return a list of packages to be installed, including PACKAGE-LIST.
720 PACKAGE-LIST should be a list of package names (symbols).
722 REQUIREMENTS should be a list of additional requirements; each
723 element in this list should have the form (PACKAGE VERSION-LIST),
724 where PACKAGE is a package name and VERSION-LIST is the required
725 version of that package.
727 This function recursively computes the requirements of the
728 packages in REQUIREMENTS, and returns a list of all the packages
729 that must be installed. Packages that are already installed are
730 not included in this list."
731 (dolist (elt requirements)
732 (let* ((next-pkg (car elt))
733 (next-version (cadr elt)))
734 (unless (package-installed-p next-pkg next-version)
735 ;; A package is required, but not installed. It might also be
736 ;; blocked via `package-load-list'.
737 (let ((pkg-desc (assq next-pkg package-archive-contents))
738 hold)
739 (when (setq hold (assq next-pkg package-load-list))
740 (setq hold (cadr hold))
741 (cond ((eq hold nil)
742 (error "Required package '%s' is disabled"
743 (symbol-name next-pkg)))
744 ((null (stringp hold))
745 (error "Invalid element in `package-load-list'"))
746 ((version-list-< (version-to-list hold) next-version)
747 (error "Package `%s' held at version %s, \
748 but version %s required"
749 (symbol-name next-pkg) hold
750 (package-version-join next-version)))))
751 (unless pkg-desc
752 (error "Package `%s-%s' is unavailable"
753 (symbol-name next-pkg)
754 (package-version-join next-version)))
755 (unless (version-list-<= next-version
756 (package-desc-vers (cdr pkg-desc)))
757 (error
758 "Need package `%s-%s', but only %s is available"
759 (symbol-name next-pkg) (package-version-join next-version)
760 (package-version-join (package-desc-vers (cdr pkg-desc)))))
761 ;; Only add to the transaction if we don't already have it.
762 (unless (memq next-pkg package-list)
763 (push next-pkg package-list))
764 (setq package-list
765 (package-compute-transaction package-list
766 (package-desc-reqs
767 (cdr pkg-desc))))))))
768 package-list)
770 (defun package-read-from-string (str)
771 "Read a Lisp expression from STR.
772 Signal an error if the entire string was not used."
773 (let* ((read-data (read-from-string str))
774 (more-left
775 (condition-case nil
776 ;; The call to `ignore' suppresses a compiler warning.
777 (progn (ignore (read-from-string
778 (substring str (cdr read-data))))
780 (end-of-file nil))))
781 (if more-left
782 (error "Can't read whole string")
783 (car read-data))))
785 (defun package--read-archive-file (file)
786 "Re-read archive file FILE, if it exists.
787 Will return the data from the file, or nil if the file does not exist.
788 Will throw an error if the archive version is too new."
789 (let ((filename (expand-file-name file package-user-dir)))
790 (when (file-exists-p filename)
791 (with-temp-buffer
792 (insert-file-contents-literally filename)
793 (let ((contents (read (current-buffer))))
794 (if (> (car contents) package-archive-version)
795 (error "Package archive version %d is higher than %d"
796 (car contents) package-archive-version))
797 (cdr contents))))))
799 (defun package-read-all-archive-contents ()
800 "Re-read `archive-contents', if it exists.
801 If successful, set `package-archive-contents'."
802 (setq package-archive-contents nil)
803 (dolist (archive package-archives)
804 (package-read-archive-contents (car archive))))
806 (defun package-read-archive-contents (archive)
807 "Re-read archive contents for ARCHIVE.
808 If successful, set the variable `package-archive-contents'.
809 If the archive version is too new, signal an error."
810 ;; Version 1 of 'archive-contents' is identical to our internal
811 ;; representation.
812 (let* ((dir (concat "archives/" archive))
813 (contents-file (concat dir "/archive-contents"))
814 contents)
815 (when (setq contents (package--read-archive-file contents-file))
816 (dolist (package contents)
817 (package--add-to-archive-contents package archive)))))
819 (defun package--add-to-archive-contents (package archive)
820 "Add the PACKAGE from the given ARCHIVE if necessary.
821 Also, add the originating archive to the end of the package vector."
822 (let* ((name (car package))
823 (version (aref (cdr package) 0))
824 (entry (cons (car package)
825 (vconcat (cdr package) (vector archive))))
826 (existing-package (cdr (assq name package-archive-contents))))
827 (when (or (not existing-package)
828 (version-list-< (aref existing-package 0) version))
829 (add-to-list 'package-archive-contents entry))))
831 (defun package-download-transaction (package-list)
832 "Download and install all the packages in PACKAGE-LIST.
833 PACKAGE-LIST should be a list of package names (symbols).
834 This function assumes that all package requirements in
835 PACKAGE-LIST are satisfied, i.e. that PACKAGE-LIST is computed
836 using `package-compute-transaction'."
837 (dolist (elt package-list)
838 (let* ((desc (cdr (assq elt package-archive-contents)))
839 ;; As an exception, if package is "held" in
840 ;; `package-load-list', download the held version.
841 (hold (cadr (assq elt package-load-list)))
842 (v-string (or (and (stringp hold) hold)
843 (package-version-join (package-desc-vers desc))))
844 (kind (package-desc-kind desc)))
845 (cond
846 ((eq kind 'tar)
847 (package-download-tar elt v-string))
848 ((eq kind 'single)
849 (package-download-single elt v-string
850 (package-desc-doc desc)
851 (package-desc-reqs desc)))
853 (error "Unknown package kind: %s" (symbol-name kind)))))))
855 ;;;###autoload
856 (defun package-install (name)
857 "Install the package named NAME.
858 Interactively, prompt for the package name.
859 The package is found on one of the archives in `package-archives'."
860 (interactive
861 (list (intern (completing-read "Install package: "
862 (mapcar (lambda (elt)
863 (cons (symbol-name (car elt))
864 nil))
865 package-archive-contents)
866 nil t))))
867 (let ((pkg-desc (assq name package-archive-contents)))
868 (unless pkg-desc
869 (error "Package `%s' is not available for installation"
870 (symbol-name name)))
871 (package-download-transaction
872 (package-compute-transaction (list name)
873 (package-desc-reqs (cdr pkg-desc)))))
874 ;; Try to activate it.
875 (package-initialize))
877 (defun package-strip-rcs-id (str)
878 "Strip RCS version ID from the version string STR.
879 If the result looks like a dotted numeric version, return it.
880 Otherwise return nil."
881 (when str
882 (when (string-match "\\`[ \t]*[$]Revision:[ \t]+" str)
883 (setq str (substring str (match-end 0))))
884 (condition-case nil
885 (if (version-to-list str)
886 str)
887 (error nil))))
889 (defun package-buffer-info ()
890 "Return a vector describing the package in the current buffer.
891 The vector has the form
893 [FILENAME REQUIRES DESCRIPTION VERSION COMMENTARY]
895 FILENAME is the file name, a string, sans the \".el\" extension.
896 REQUIRES is a list of requirements, each requirement having the
897 form (NAME VER); NAME is a string and VER is a version list.
898 DESCRIPTION is the package description, a string.
899 VERSION is the version, a string.
900 COMMENTARY is the commentary section, a string, or nil if none.
902 If the buffer does not contain a conforming package, signal an
903 error. If there is a package, narrow the buffer to the file's
904 boundaries."
905 (goto-char (point-min))
906 (unless (re-search-forward "^;;; \\([^ ]*\\)\\.el --- \\(.*\\)$" nil t)
907 (error "Packages lacks a file header"))
908 (let ((file-name (match-string-no-properties 1))
909 (desc (match-string-no-properties 2))
910 (start (line-beginning-position)))
911 (unless (search-forward (concat ";;; " file-name ".el ends here"))
912 (error "Package lacks a terminating comment"))
913 ;; Try to include a trailing newline.
914 (forward-line)
915 (narrow-to-region start (point))
916 (require 'lisp-mnt)
917 ;; Use some headers we've invented to drive the process.
918 (let* ((requires-str (lm-header "package-requires"))
919 (requires (if requires-str
920 (package-read-from-string requires-str)))
921 ;; Prefer Package-Version; if defined, the package author
922 ;; probably wants us to use it. Otherwise try Version.
923 (pkg-version
924 (or (package-strip-rcs-id (lm-header "package-version"))
925 (package-strip-rcs-id (lm-header "version"))))
926 (commentary (lm-commentary)))
927 (unless pkg-version
928 (error
929 "Package lacks a \"Version\" or \"Package-Version\" header"))
930 ;; Turn string version numbers into list form.
931 (setq requires
932 (mapcar
933 (lambda (elt)
934 (list (car elt)
935 (version-to-list (car (cdr elt)))))
936 requires))
937 (vector file-name requires desc pkg-version commentary))))
939 (defun package-tar-file-info (file)
940 "Find package information for a tar file.
941 FILE is the name of the tar file to examine.
942 The return result is a vector like `package-buffer-info'."
943 (let ((default-directory (file-name-directory file))
944 (file (file-name-nondirectory file)))
945 (unless (string-match (concat "\\`" package-subdirectory-regexp "\\.tar\\'")
946 file)
947 (error "Invalid package name `%s'" file))
948 (let* ((pkg-name (match-string-no-properties 1 file))
949 (pkg-version (match-string-no-properties 2 file))
950 ;; Extract the package descriptor.
951 (pkg-def-contents (shell-command-to-string
952 ;; Requires GNU tar.
953 (concat "tar -xOf " file " "
955 pkg-name "-" pkg-version "/"
956 pkg-name "-pkg.el")))
957 (pkg-def-parsed (package-read-from-string pkg-def-contents)))
958 (unless (eq (car pkg-def-parsed) 'define-package)
959 (error "No `define-package' sexp is present in `%s-pkg.el'" pkg-name))
960 (let ((name-str (nth 1 pkg-def-parsed))
961 (version-string (nth 2 pkg-def-parsed))
962 (docstring (nth 3 pkg-def-parsed))
963 (requires (nth 4 pkg-def-parsed))
964 (readme (shell-command-to-string
965 ;; Requires GNU tar.
966 (concat "tar -xOf " file " "
967 pkg-name "-" pkg-version "/README"))))
968 (unless (equal pkg-version version-string)
969 (error "Package has inconsistent versions"))
970 (unless (equal pkg-name name-str)
971 (error "Package has inconsistent names"))
972 ;; Kind of a hack.
973 (if (string-match ": Not found in archive" readme)
974 (setq readme nil))
975 ;; Turn string version numbers into list form.
976 (if (eq (car requires) 'quote)
977 (setq requires (car (cdr requires))))
978 (setq requires
979 (mapcar (lambda (elt)
980 (list (car elt)
981 (version-to-list (cadr elt))))
982 requires))
983 (vector pkg-name requires docstring version-string readme)))))
985 ;;;###autoload
986 (defun package-install-from-buffer (pkg-info type)
987 "Install a package from the current buffer.
988 When called interactively, the current buffer is assumed to be a
989 single .el file that follows the packaging guidelines; see info
990 node `(elisp)Packaging'.
992 When called from Lisp, PKG-INFO is a vector describing the
993 information, of the type returned by `package-buffer-info'; and
994 TYPE is the package type (either `single' or `tar')."
995 (interactive (list (package-buffer-info) 'single))
996 (save-excursion
997 (save-restriction
998 (let* ((file-name (aref pkg-info 0))
999 (requires (aref pkg-info 1))
1000 (desc (if (string= (aref pkg-info 2) "")
1001 "No description available."
1002 (aref pkg-info 2)))
1003 (pkg-version (aref pkg-info 3)))
1004 ;; Download and install the dependencies.
1005 (let ((transaction (package-compute-transaction nil requires)))
1006 (package-download-transaction transaction))
1007 ;; Install the package itself.
1008 (cond
1009 ((eq type 'single)
1010 (package-unpack-single file-name pkg-version desc requires))
1011 ((eq type 'tar)
1012 (package-unpack (intern file-name) pkg-version))
1014 (error "Unknown type: %s" (symbol-name type))))
1015 ;; Try to activate it.
1016 (package-initialize)))))
1018 ;;;###autoload
1019 (defun package-install-file (file)
1020 "Install a package from a file.
1021 The file can either be a tar file or an Emacs Lisp file."
1022 (interactive "fPackage file name: ")
1023 (with-temp-buffer
1024 (insert-file-contents-literally file)
1025 (cond
1026 ((string-match "\\.el$" file)
1027 (package-install-from-buffer (package-buffer-info) 'single))
1028 ((string-match "\\.tar$" file)
1029 (package-install-from-buffer (package-tar-file-info file) 'tar))
1030 (t (error "Unrecognized extension `%s'" (file-name-extension file))))))
1032 (defun package-delete (name version)
1033 (let ((dir (package--dir name version)))
1034 (if (string-equal (file-name-directory dir)
1035 (file-name-as-directory
1036 (expand-file-name package-user-dir)))
1037 (progn
1038 (delete-directory dir t t)
1039 (message "Package `%s-%s' deleted." name version))
1040 ;; Don't delete "system" packages
1041 (error "Package `%s-%s' is a system package, not deleting"
1042 name version))))
1044 (defun package-archive-base (name)
1045 "Return the archive containing the package NAME."
1046 (let ((desc (cdr (assq (intern-soft name) package-archive-contents))))
1047 (cdr (assoc (aref desc (- (length desc) 1)) package-archives))))
1049 (defun package--download-one-archive (archive file)
1050 "Retrieve an archive file FILE from ARCHIVE, and cache it.
1051 ARCHIVE should be a cons cell of the form (NAME . LOCATION),
1052 similar to an entry in `package-alist'. Save the cached copy to
1053 \"archives/NAME/archive-contents\" in `package-user-dir'."
1054 (let* ((dir (expand-file-name "archives" package-user-dir))
1055 (dir (expand-file-name (car archive) dir)))
1056 (package--with-work-buffer (cdr archive) file
1057 ;; Read the retrieved buffer to make sure it is valid (e.g. it
1058 ;; may fetch a URL redirect page).
1059 (when (listp (read buffer))
1060 (make-directory dir t)
1061 (setq buffer-file-name (expand-file-name file dir))
1062 (let ((version-control 'never))
1063 (save-buffer))))))
1065 (defun package-refresh-contents ()
1066 "Download the ELPA archive description if needed.
1067 This informs Emacs about the latest versions of all packages, and
1068 makes them available for download."
1069 (interactive)
1070 (unless (file-exists-p package-user-dir)
1071 (make-directory package-user-dir t))
1072 (dolist (archive package-archives)
1073 (condition-case-no-debug nil
1074 (package--download-one-archive archive "archive-contents")
1075 (error (message "Failed to download `%s' archive."
1076 (car archive)))))
1077 (package-read-all-archive-contents))
1079 (defvar package--initialized nil)
1081 ;;;###autoload
1082 (defun package-initialize (&optional no-activate)
1083 "Load Emacs Lisp packages, and activate them.
1084 The variable `package-load-list' controls which packages to load.
1085 If optional arg NO-ACTIVATE is non-nil, don't activate packages."
1086 (interactive)
1087 (setq package-alist nil
1088 package-obsolete-alist nil)
1089 (package-load-all-descriptors)
1090 (package-read-all-archive-contents)
1091 (unless no-activate
1092 (dolist (elt package-alist)
1093 (package-activate (car elt) (package-desc-vers (cdr elt)))))
1094 (setq package--initialized t))
1097 ;;;; Package description buffer.
1099 ;;;###autoload
1100 (defun describe-package (package)
1101 "Display the full documentation of PACKAGE (a symbol)."
1102 (interactive
1103 (let* ((guess (function-called-at-point))
1104 packages val)
1105 (require 'finder-inf nil t)
1106 ;; Load the package list if necessary (but don't activate them).
1107 (unless package--initialized
1108 (package-initialize t))
1109 (setq packages (append (mapcar 'car package-alist)
1110 (mapcar 'car package-archive-contents)
1111 (mapcar 'car package--builtins)))
1112 (unless (memq guess packages)
1113 (setq guess nil))
1114 (setq packages (mapcar 'symbol-name packages))
1115 (setq val
1116 (completing-read (if guess
1117 (format "Describe package (default %s): "
1118 guess)
1119 "Describe package: ")
1120 packages nil t nil nil guess))
1121 (list (if (equal val "") guess (intern val)))))
1122 (if (or (null package) (not (symbolp package)))
1123 (message "No package specified")
1124 (help-setup-xref (list #'describe-package package)
1125 (called-interactively-p 'interactive))
1126 (with-help-window (help-buffer)
1127 (with-current-buffer standard-output
1128 (describe-package-1 package)))))
1130 (defun describe-package-1 (package)
1131 (require 'lisp-mnt)
1132 (let ((package-name (symbol-name package))
1133 (built-in (assq package package--builtins))
1134 desc pkg-dir reqs version installable)
1135 (prin1 package)
1136 (princ " is ")
1137 (cond
1138 ;; Loaded packages are in `package-alist'.
1139 ((setq desc (cdr (assq package package-alist)))
1140 (setq version (package-version-join (package-desc-vers desc)))
1141 (if (setq pkg-dir (package--dir package-name version))
1142 (insert "an installed package.\n\n")
1143 ;; This normally does not happen.
1144 (insert "a deleted package.\n\n")))
1145 ;; Available packages are in `package-archive-contents'.
1146 ((setq desc (cdr (assq package package-archive-contents)))
1147 (setq version (package-version-join (package-desc-vers desc))
1148 installable t)
1149 (if built-in
1150 (insert "a built-in package.\n\n")
1151 (insert "an uninstalled package.\n\n")))
1152 (built-in
1153 (setq desc (cdr built-in)
1154 version (package-version-join (package-desc-vers desc)))
1155 (insert "a built-in package.\n\n"))
1157 (insert "an orphan package.\n\n")))
1159 (insert " " (propertize "Status" 'font-lock-face 'bold) ": ")
1160 (cond (pkg-dir
1161 (insert (propertize "Installed"
1162 'font-lock-face 'font-lock-comment-face))
1163 (insert " in `")
1164 ;; Todo: Add button for uninstalling.
1165 (help-insert-xref-button (file-name-as-directory pkg-dir)
1166 'help-package-def pkg-dir)
1167 (if built-in
1168 (insert "',\n shadowing a "
1169 (propertize "built-in package"
1170 'font-lock-face 'font-lock-builtin-face)
1171 ".")
1172 (insert "'.")))
1173 (installable
1174 (if built-in
1175 (insert (propertize "Built-in." 'font-lock-face 'font-lock-builtin-face)
1176 " Alternate version available -- ")
1177 (insert "Available -- "))
1178 (let ((button-text (if (display-graphic-p) "Install" "[Install]"))
1179 (button-face (if (display-graphic-p)
1180 '(:box (:line-width 2 :color "dark grey")
1181 :background "light grey"
1182 :foreground "black")
1183 'link)))
1184 (insert-text-button button-text 'face button-face 'follow-link t
1185 'package-symbol package
1186 'action 'package-install-button-action)))
1187 (built-in
1188 (insert (propertize "Built-in." 'font-lock-face 'font-lock-builtin-face)))
1189 (t (insert "Deleted.")))
1190 (insert "\n")
1191 (and version (> (length version) 0)
1192 (insert " "
1193 (propertize "Version" 'font-lock-face 'bold) ": " version "\n"))
1195 (setq reqs (if desc (package-desc-reqs desc)))
1196 (when reqs
1197 (insert " " (propertize "Requires" 'font-lock-face 'bold) ": ")
1198 (let ((first t)
1199 name vers text)
1200 (dolist (req reqs)
1201 (setq name (car req)
1202 vers (cadr req)
1203 text (format "%s-%s" (symbol-name name)
1204 (package-version-join vers)))
1205 (cond (first (setq first nil))
1206 ((>= (+ 2 (current-column) (length text))
1207 (window-width))
1208 (insert ",\n "))
1209 (t (insert ", ")))
1210 (help-insert-xref-button text 'help-package name))
1211 (insert "\n")))
1212 (insert " " (propertize "Summary" 'font-lock-face 'bold)
1213 ": " (if desc (package-desc-doc desc)) "\n\n")
1215 (if built-in
1216 ;; For built-in packages, insert the commentary.
1217 (let ((fn (locate-file (concat package-name ".el") load-path
1218 load-file-rep-suffixes))
1219 (opoint (point)))
1220 (insert (or (lm-commentary fn) ""))
1221 (save-excursion
1222 (goto-char opoint)
1223 (when (re-search-forward "^;;; Commentary:\n" nil t)
1224 (replace-match ""))
1225 (while (re-search-forward "^\\(;+ ?\\)" nil t)
1226 (replace-match ""))))
1227 (let ((readme (expand-file-name (concat package-name "-readme.txt")
1228 package-user-dir))
1229 readme-string)
1230 ;; For elpa packages, try downloading the commentary. If that
1231 ;; fails, try an existing readme file in `package-user-dir'.
1232 (cond ((condition-case nil
1233 (package--with-work-buffer (package-archive-base package)
1234 (concat package-name "-readme.txt")
1235 (setq buffer-file-name
1236 (expand-file-name readme package-user-dir))
1237 (let ((version-control 'never))
1238 (save-buffer))
1239 (setq readme-string (buffer-string))
1241 (error nil))
1242 (insert readme-string))
1243 ((file-readable-p readme)
1244 (insert-file-contents readme)
1245 (goto-char (point-max))))))))
1247 (defun package-install-button-action (button)
1248 (let ((package (button-get button 'package-symbol)))
1249 (when (y-or-n-p (format "Install package `%s'? " package))
1250 (package-install package)
1251 (revert-buffer nil t)
1252 (goto-char (point-min)))))
1255 ;;;; Package menu mode.
1257 (defvar package-menu-mode-map
1258 (let ((map (make-sparse-keymap))
1259 (menu-map (make-sparse-keymap "Package")))
1260 (set-keymap-parent map tabulated-list-mode-map)
1261 (define-key map "\C-m" 'package-menu-describe-package)
1262 (define-key map "u" 'package-menu-mark-unmark)
1263 (define-key map "\177" 'package-menu-backup-unmark)
1264 (define-key map "d" 'package-menu-mark-delete)
1265 (define-key map "i" 'package-menu-mark-install)
1266 (define-key map "r" 'package-menu-refresh)
1267 (define-key map "~" 'package-menu-mark-obsolete-for-deletion)
1268 (define-key map "x" 'package-menu-execute)
1269 (define-key map "h" 'package-menu-quick-help)
1270 (define-key map "?" 'package-menu-describe-package)
1271 (define-key map [menu-bar package-menu] (cons "Package" menu-map))
1272 (define-key menu-map [mq]
1273 '(menu-item "Quit" quit-window
1274 :help "Quit package selection"))
1275 (define-key menu-map [s1] '("--"))
1276 (define-key menu-map [mn]
1277 '(menu-item "Next" next-line
1278 :help "Next Line"))
1279 (define-key menu-map [mp]
1280 '(menu-item "Previous" previous-line
1281 :help "Previous Line"))
1282 (define-key menu-map [s2] '("--"))
1283 (define-key menu-map [mu]
1284 '(menu-item "Unmark" package-menu-mark-unmark
1285 :help "Clear any marks on a package and move to the next line"))
1286 (define-key menu-map [munm]
1287 '(menu-item "Unmark backwards" package-menu-backup-unmark
1288 :help "Back up one line and clear any marks on that package"))
1289 (define-key menu-map [md]
1290 '(menu-item "Mark for deletion" package-menu-mark-delete
1291 :help "Mark a package for deletion and move to the next line"))
1292 (define-key menu-map [mi]
1293 '(menu-item "Mark for install" package-menu-mark-install
1294 :help "Mark a package for installation and move to the next line"))
1295 (define-key menu-map [s3] '("--"))
1296 (define-key menu-map [mg]
1297 '(menu-item "Update package list" revert-buffer
1298 :help "Update the list of packages"))
1299 (define-key menu-map [mr]
1300 '(menu-item "Refresh package list" package-menu-refresh
1301 :help "Download the ELPA archive"))
1302 (define-key menu-map [s4] '("--"))
1303 (define-key menu-map [mt]
1304 '(menu-item "Mark obsolete packages" package-menu-mark-obsolete-for-deletion
1305 :help "Mark all obsolete packages for deletion"))
1306 (define-key menu-map [mx]
1307 '(menu-item "Execute actions" package-menu-execute
1308 :help "Perform all the marked actions"))
1309 (define-key menu-map [s5] '("--"))
1310 (define-key menu-map [mh]
1311 '(menu-item "Help" package-menu-quick-help
1312 :help "Show short key binding help for package-menu-mode"))
1313 (define-key menu-map [mc]
1314 '(menu-item "View Commentary" package-menu-view-commentary
1315 :help "Display information about this package"))
1316 map)
1317 "Local keymap for `package-menu-mode' buffers.")
1319 (define-derived-mode package-menu-mode tabulated-list-mode "Package Menu"
1320 "Major mode for browsing a list of packages.
1321 Letters do not insert themselves; instead, they are commands.
1322 \\<package-menu-mode-map>
1323 \\{package-menu-mode-map}"
1324 (setq tabulated-list-format [("Package" 18 package-menu--name-predicate)
1325 ("Version" 12 nil)
1326 ("Status" 10 package-menu--status-predicate)
1327 ("Description" 0 nil)])
1328 (setq tabulated-list-padding 2)
1329 (setq tabulated-list-sort-key (cons "Status" nil))
1330 (tabulated-list-init-header))
1332 (defmacro package--push (package desc status listname)
1333 "Convenience macro for `package-menu--generate'.
1334 If the alist stored in the symbol LISTNAME lacks an entry for a
1335 package PACKAGE with descriptor DESC, add one. The alist is
1336 keyed with cons cells (PACKAGE . VERSION-LIST), where PACKAGE is
1337 a symbol and VERSION-LIST is a version list."
1338 `(let* ((version (package-desc-vers ,desc))
1339 (key (cons ,package version)))
1340 (unless (assoc key ,listname)
1341 (push (list key ,status (package-desc-doc ,desc)) ,listname))))
1343 (defun package-menu--generate (remember-pos packages)
1344 "Populate the Package Menu.
1345 If REMEMBER-POS is non-nil, keep point on the same entry.
1346 PACKAGES should be t, which means to display all known packages,
1347 or a list of package names (symbols) to display."
1348 ;; Construct list of ((PACKAGE . VERSION) STATUS DESCRIPTION).
1349 (let (info-list name builtin)
1350 ;; Installed packages:
1351 (dolist (elt package-alist)
1352 (setq name (car elt))
1353 (when (or (eq packages t) (memq name packages))
1354 (package--push name (cdr elt)
1355 (if (stringp (cadr (assq name package-load-list)))
1356 "held" "installed")
1357 info-list)))
1359 ;; Built-in packages:
1360 (dolist (elt package--builtins)
1361 (setq name (car elt))
1362 (when (and (not (eq name 'emacs)) ; Hide the `emacs' package.
1363 (or (eq packages t) (memq name packages)))
1364 (package--push name (cdr elt) "built-in" info-list)))
1366 ;; Available and disabled packages:
1367 (dolist (elt package-archive-contents)
1368 (setq name (car elt))
1369 (when (or (eq packages t) (memq name packages))
1370 (let ((hold (assq name package-load-list)))
1371 (package--push name (cdr elt)
1372 (if (and hold (null (cadr hold)))
1373 "disabled"
1374 "available")
1375 info-list))))
1377 ;; Obsolete packages:
1378 (dolist (elt package-obsolete-alist)
1379 (dolist (inner-elt (cdr elt))
1380 (when (or (eq packages t) (memq (car elt) packages))
1381 (package--push (car elt) (cdr inner-elt) "obsolete" info-list))))
1383 ;; Print the result.
1384 (setq tabulated-list-entries (mapcar 'package-menu--print-info info-list))
1385 (tabulated-list-print remember-pos)))
1387 (defun package-menu--print-info (pkg)
1388 "Return a package entry suitable for `tabulated-list-entries'.
1389 PKG has the form ((PACKAGE . VERSION) STATUS DOC).
1390 Return (KEY [NAME VERSION STATUS DOC]), where KEY is the
1391 identifier (NAME . VERSION-LIST)."
1392 (let* ((package (caar pkg))
1393 (version (cdr (car pkg)))
1394 (status (nth 1 pkg))
1395 (doc (or (nth 2 pkg) ""))
1396 (face (cond
1397 ((string= status "built-in") 'font-lock-builtin-face)
1398 ((string= status "available") 'default)
1399 ((string= status "held") 'font-lock-constant-face)
1400 ((string= status "disabled") 'font-lock-warning-face)
1401 ((string= status "installed") 'font-lock-comment-face)
1402 (t 'font-lock-warning-face)))) ; obsolete.
1403 (list (cons package version)
1404 (vector (list (symbol-name package)
1405 'face 'link
1406 'follow-link t
1407 'package-symbol package
1408 'action 'package-menu-describe-package)
1409 (propertize (package-version-join version)
1410 'font-lock-face face)
1411 (propertize status 'font-lock-face face)
1412 (propertize doc 'font-lock-face face)))))
1414 (defun package-menu-refresh ()
1415 "Download the Emacs Lisp package archive.
1416 This fetches the contents of each archive specified in
1417 `package-archives', and then refreshes the package menu."
1418 (interactive)
1419 (unless (eq major-mode 'package-menu-mode)
1420 (error "The current buffer is not a Package Menu"))
1421 (package-refresh-contents)
1422 (package-menu--generate t t))
1424 (defun package-menu-describe-package (&optional button)
1425 "Describe the current package.
1426 If optional arg BUTTON is non-nil, describe its associated package."
1427 (interactive)
1428 (let ((package (if button (button-get button 'package-symbol)
1429 (car (tabulated-list-get-id)))))
1430 (if package
1431 (describe-package package))))
1433 ;; fixme numeric argument
1434 (defun package-menu-mark-delete (num)
1435 "Mark a package for deletion and move to the next line."
1436 (interactive "p")
1437 (if (string-equal (package-menu-get-status) "installed")
1438 (tabulated-list-put-tag "D" t)
1439 (forward-line)))
1441 (defun package-menu-mark-install (num)
1442 "Mark a package for installation and move to the next line."
1443 (interactive "p")
1444 (if (string-equal (package-menu-get-status) "available")
1445 (tabulated-list-put-tag "I" t)
1446 (forward-line)))
1448 (defun package-menu-mark-unmark (num)
1449 "Clear any marks on a package and move to the next line."
1450 (interactive "p")
1451 (tabulated-list-put-tag " " t))
1453 (defun package-menu-backup-unmark ()
1454 "Back up one line and clear any marks on that package."
1455 (interactive)
1456 (forward-line -1)
1457 (tabulated-list-put-tag " "))
1459 (defun package-menu-mark-obsolete-for-deletion ()
1460 "Mark all obsolete packages for deletion."
1461 (interactive)
1462 (save-excursion
1463 (goto-char (point-min))
1464 (forward-line 2)
1465 (while (not (eobp))
1466 (if (looking-at ".*\\s obsolete\\s ")
1467 (tabulated-list-put-tag "D" t)
1468 (forward-line 1)))))
1470 (defun package-menu-quick-help ()
1471 "Show short key binding help for package-menu-mode."
1472 (interactive)
1473 (message "n-ext, i-nstall, d-elete, u-nmark, x-ecute, r-efresh, h-elp"))
1475 (define-obsolete-function-alias
1476 'package-menu-view-commentary 'package-menu-describe-package "24.1")
1478 (defun package-menu-get-status ()
1479 (save-excursion
1480 (if (looking-at ". [^ \t]*[ \t]*[^ \t]*[ \t]*\\([^ \t]*\\)")
1481 (match-string 1)
1482 "")))
1484 (defun package-menu-execute ()
1485 "Perform marked Package Menu actions.
1486 Packages marked for installation are downloaded and installed;
1487 packages marked for deletion are removed."
1488 (interactive)
1489 (unless (eq major-mode 'package-menu-mode)
1490 (error "The current buffer is not in Package Menu mode"))
1491 (let (install-list delete-list cmd id)
1492 (save-excursion
1493 (goto-char (point-min))
1494 (while (not (eobp))
1495 (setq cmd (char-after))
1496 (unless (eq cmd ?\s)
1497 ;; This is the key (PACKAGE . VERSION-LIST).
1498 (setq id (tabulated-list-get-id))
1499 (cond ((eq cmd ?D)
1500 (push (cons (symbol-name (car id))
1501 (package-version-join (cdr id)))
1502 delete-list))
1503 ((eq cmd ?I)
1504 (push (car id) install-list))))
1505 (forward-line)))
1506 ;; Delete packages, prompting if necessary.
1507 (when delete-list
1508 (if (yes-or-no-p
1509 (if (= (length delete-list) 1)
1510 (format "Delete package `%s-%s'? "
1511 (caar delete-list)
1512 (cdr (car delete-list)))
1513 (format "Delete these %d packages (%s)? "
1514 (length delete-list)
1515 (mapconcat (lambda (elt)
1516 (concat (car elt) "-" (cdr elt)))
1517 delete-list
1518 ", "))))
1519 (dolist (elt delete-list)
1520 (condition-case-no-debug err
1521 (package-delete (car elt) (cdr elt))
1522 (error (message (cadr err)))))
1523 (error "Aborted")))
1524 (when install-list
1525 (if (yes-or-no-p
1526 (if (= (length install-list) 1)
1527 (format "Install package `%s'? " (car install-list))
1528 (format "Install these %d packages (%s)? "
1529 (length install-list)
1530 (mapconcat 'symbol-name install-list ", "))))
1531 (mapc 'package-install install-list)))
1532 ;; If we deleted anything, regenerate `package-alist'. This is done
1533 ;; automatically if we installed a package.
1534 (and delete-list (null install-list)
1535 (package-initialize))
1536 (if (or delete-list install-list)
1537 (package-menu--generate t t)
1538 (message "No operations specified."))))
1540 (defun package-menu--version-predicate (A B)
1541 (let ((vA (or (aref (cadr A) 1) '(0)))
1542 (vB (or (aref (cadr B) 1) '(0))))
1543 (if (version-list-= vA vB)
1544 (package-menu--name-predicate A B)
1545 (version-list-< vA vB))))
1547 (defun package-menu--status-predicate (A B)
1548 (let ((sA (aref (cadr A) 2))
1549 (sB (aref (cadr B) 2)))
1550 (cond ((string= sA sB)
1551 (package-menu--name-predicate A B))
1552 ((string= sA "available") t)
1553 ((string= sB "available") nil)
1554 ((string= sA "installed") t)
1555 ((string= sB "installed") nil)
1556 ((string= sA "held") t)
1557 ((string= sB "held") nil)
1558 ((string= sA "built-in") t)
1559 ((string= sB "built-in") nil)
1560 ((string= sA "obsolete") t)
1561 ((string= sB "obsolete") nil)
1562 (t (string< sA sB)))))
1564 (defun package-menu--description-predicate (A B)
1565 (let ((dA (aref (cadr A) 3))
1566 (dB (aref (cadr B) 3)))
1567 (if (string= dA dB)
1568 (package-menu--name-predicate A B)
1569 (string< dA dB))))
1571 (defun package-menu--name-predicate (A B)
1572 (string< (symbol-name (caar A))
1573 (symbol-name (caar B))))
1575 ;;;###autoload
1576 (defun list-packages (&optional no-fetch)
1577 "Display a list of packages.
1578 This first fetches the updated list of packages before
1579 displaying, unless a prefix argument NO-FETCH is specified.
1580 The list is displayed in a buffer named `*Packages*'."
1581 (interactive "P")
1582 (require 'finder-inf nil t)
1583 ;; Initialize the package system if necessary.
1584 (unless package--initialized
1585 (package-initialize t))
1586 (unless no-fetch
1587 (package-refresh-contents))
1588 (let ((buf (get-buffer-create "*Packages*")))
1589 (with-current-buffer buf
1590 (package-menu-mode)
1591 (package-menu--generate nil t))
1592 ;; The package menu buffer has keybindings. If the user types
1593 ;; `M-x list-packages', that suggests it should become current.
1594 (switch-to-buffer buf)))
1596 ;;;###autoload
1597 (defalias 'package-list-packages 'list-packages)
1599 ;; Used in finder.el
1600 (defun package-show-package-list (packages)
1601 "Display PACKAGES in a *Packages* buffer.
1602 This is similar to `list-packages', but it does not fetch the
1603 updated list of packages, and it only displays packages with
1604 names in PACKAGES (which should be a list of symbols)."
1605 (require 'finder-inf nil t)
1606 (let ((buf (get-buffer-create "*Packages*")))
1607 (with-current-buffer buf
1608 (package-menu-mode)
1609 (package-menu--generate nil packages))
1610 (switch-to-buffer buf)))
1612 (defun package-list-packages-no-fetch ()
1613 "Display a list of packages.
1614 Does not fetch the updated list of packages before displaying.
1615 The list is displayed in a buffer named `*Packages*'."
1616 (interactive)
1617 (list-packages t))
1619 (provide 'package)
1621 ;;; package.el ends here