Difference between revisions of "Package.el"

From WikEmacs
Jump to navigation Jump to search
(Undo spam)
(Undo revision 2610 by Bozhidar (talk))
Line 1: Line 1:
{{Package
+
when first i use ace-jump-mode i find it very similar to vim's keys(f and t),then i didn't want to use the mode,i think it is not emacs's poiohslphy but vi's.But ace-jump-mode is really fast,but a emacs starter shouldn't use it until he knows the basic movement command.
|name=package.el
 
|description=Package Manager
 
|author=Tom Tromey
 
|maintainer=[[FSF]]
 
|source=http://repo.or.cz/w/emacs.git/blob_plain/HEAD:/lisp/emacs-lisp/package.el
 
|in_emacs=24
 
|Development status=active
 
}}
 
 
 
package.el is the built-in package manager in Emacs 24.
 
 
 
== Install package.el on Emacs 23 ==
 
<tt>package.el</tt> is bundled with Emacs 24, but it’s not bound to Emacs 24. Before it became part of Emacs it was an external package, known as ELPA (I guess that stood for Emacs Lisp Package Manager or something similar). So even if you’re an Emacs 23 user you can copy the latest version of <tt>package.el</tt> from [http://repo.or.cz/w/emacs.git/blob_plain/1a0a666f941c99882093d7bd08ced15033bc3f0c:/lisp/emacs-lisp/package.el here] and enjoy it.
 
 
 
== Configuration ==
 
Put the following snippet of code near the beginning of your Emacs config, since you’ll definitely want packages installed via <tt>package.el</tt> to be initalized ''before'' you start tweaking them.
 
<source lang="lisp">
 
(require 'package)
 
(package-initialize)
 
</source>
 
 
 
== How it works ==
 
What <tt>package.el</tt> basically does is that it connects to a list of package repositories, retrieves the list of the packages there, presents it to you in a interactive fashion and lets you install the packages you like (of course you can also remove the ones you don’t like). <tt>package.el</tt> understands the dependencies between packages and if one package requires others to run they will be installed automatically (which is really neat).
 
 
 
The magic starts with the command {{Command|package-list-packages}}. At this point you should see something in the lines of this.
 
 
 
You can navigate the list of packages, mark the ones you want to install with the “i” key or the ones you want removed with the “d” key and when you’re done you can press the “x” key to execute the scheduled actions.
 
 
 
Initially <tt>package.el</tt> didn’t provide the option to update a package, but that should be fixed in recent Emacs builds. According to this [http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00371.html thread] you can even update all of the installed packages by using the “U” key in the packages list view (I guess that a small “u” would update only one package). Unfortunately my build is lacking those capabilities so I cannot comment of their usability.
 
 
 
== How to add additional repository ==
 
You’d probably notice that your list of available packages is not particularly long. That’s because the official Emacs 24 package repository has a strict licensing (and source code) requirements to include a package there. Luckily there are a number of community-maintained <tt>package.el</tt> repos around with much more relaxed requirements. Probably the most popular of them is [http://marmalade-repo.org/ Marmalade], created by [http://nex-3.com/ Nathan Weizenbaum] of Sass and Haml fame. You can include it in your <tt>package-archives</tt> list like this:
 
 
 
<source lang="lisp">
 
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
 
</source>
 
 
 
Marmalade provides a web based UI for package upload and search (both quite buggy unfortunately) and the ability to share the maintenance of a package between several people, who’ll be able to upload new version of the package. There’s also a Emacs Lisp Marmalade tool, that allows you to submit packages directly from Emacs.
 
 
 
== How to use it with a custom build ==
 
Using the <tt>package.el</tt> UI is ok if you’re a casual Emacs user, but what if you have a custom Emacs configuration, stored under version control, that you’d like to instantly deploy on any OS/machine (like Emacs Prelude). Here in play comes <tt>package.el</tt>’s programmer interface. In [https://github.com/bbatsov/emacs-prelude Emacs Prelude] I use the following code to install a list of required packages automatically on Emacs startup (if necessary):
 
 
 
<source lang="lisp">
 
;; Comment out if you've already loaded this package...
 
(require 'cl)
 
 
 
(defvar my-packages
 
  '(ack-and-a-half auctex clojure-mode coffee-mode deft expand-region
 
                  gist groovy-mode haml-mode haskell-mode inf-ruby
 
                  magit magithub markdown-mode paredit projectile python
 
                  sass-mode rainbow-mode scss-mode solarized-theme
 
                  volatile-highlights yaml-mode yari zenburn-theme)
 
  "A list of packages to ensure are installed at launch.")
 
 
 
(defun my-packages-installed-p ()
 
  (loop for p in prelude-packages
 
        when (not (package-installed-p p)) do (return nil)
 
        finally (return t)))
 
 
 
(unless (my-packages-installed-p)
 
  ;; check for new packages (package versions)
 
  (package-refresh-contents)
 
  ;; install the missing packages
 
  (dolist (p prelude-packages)
 
    (when (not (package-installed-p p))
 
      (package-install p))))
 
</source>
 
 
 
This code check if all of the packages in the list are installed and if any of them are not installed if refreshes the local package database (in the case a required package for recently added to the remote repo) and installs them.
 
 
 
== How to publish it to Marmalade ==
 
To be able to publish a package to Marmalade (or another repo) it should comform a standardized structure. A single-file package might look like this:
 
 
 
<source lang="lisp">
 
;;; sass-mode.el --- Sass major mode
 
 
 
;; Copyright 2007-2010 Nathan Weizenbaum
 
 
 
;; Author: Nathan Weizenbaum <nex342@gmail.com>
 
;; URL: http://github.com/nex3/sass-mode
 
;; Version: 3.0.20
 
;; Package-Requires: ((haml-mode "3.0.20"))
 
 
 
;; Code goes here
 
 
 
;;; sass-mode.el ends here
 
</source>
 
 
 
A multi-file package should have an additional file named
 
`<name>-pkg.el` that should look like this:
 
 
 
<source lang="lisp">
 
(define-package "sass-mode" "3.0.20"
 
                "Sass major mode"
 
                '((haml-mode "3.0.20")))
 
 
 
</source>
 
 
 
== package.el Repositories ==
 
 
 
* [[ELPA]]
 
* [[MELPA]]
 
* [[Marmalade]]
 
 
 
== External links ==
 
 
 
* [http://batsov.com/articles/2012/02/19/package-management-in-emacs-the-good-the-bad-and-the-ugly/ Package Management in Emacs]
 
 
 
[[Category:Package Manager]][[Category:Built-in Package]]
 

Revision as of 16:21, 22 June 2012

when first i use ace-jump-mode i find it very similar to vim's keys(f and t),then i didn't want to use the mode,i think it is not emacs's poiohslphy but vi's.But ace-jump-mode is really fast,but a emacs starter shouldn't use it until he knows the basic movement command.