2012-12-31 04:54:23 +00:00
# MELPA
[![Build Status ](https://travis-ci.org/milkypostman/melpa.png?branch=master )](https://travis-ci.org/milkypostman/melpa)
2011-10-05 05:49:38 +00:00
2012-04-11 14:24:31 +00:00
MELPA is a growing collection of `package.el` -compatible Emacs Lisp
2012-04-08 14:11:55 +00:00
packages built automatically on our server from the upstream source
code using simple recipes. (Think of it as a server-side version of
[el-get ](https://github.com/dimitri/el-get ), or even
[homebrew ](https://github.com/mxcl/homebrew ).)
2011-10-05 05:49:38 +00:00
2013-08-20 18:23:50 +00:00
Packages are updated at intervals throughout the day.
2012-03-24 17:47:05 +00:00
2013-08-20 18:23:50 +00:00
To browse available packages, check out the
2014-10-23 05:14:45 +00:00
[archive index page ](http://melpa.org/ ).
2012-04-08 14:11:55 +00:00
Adding packages is as simple as submitting a pull request; read on for
details.
2012-04-30 22:13:46 +00:00
## Table of Contents
2012-04-08 14:11:55 +00:00
2012-04-30 22:13:46 +00:00
* [Usage ](#usage )
2013-07-21 04:57:02 +00:00
* [Contributing ](#contributing-new-recipes )
2013-07-22 09:35:05 +00:00
* [Recipe Format ](#recipe-format )
2013-01-09 15:03:08 +00:00
* [Build Scripts ](#build-scripts )
2012-04-30 22:13:46 +00:00
* [API ](#api )
* [About ](#about )
2014-03-23 22:10:13 +00:00
* [Stable Packages ](#stable-packages )
2012-04-06 18:54:31 +00:00
2011-12-14 03:04:08 +00:00
2012-04-30 22:13:46 +00:00
## Usage
2011-12-14 03:04:08 +00:00
2014-04-06 10:20:05 +00:00
To use the MELPA repository, you'll need an Emacs with
`package.el` . Emacs 24 has `package.el` bundled with it, and there's
also a
[version you can use with Emacs 23 ](http://repo.or.cz/w/emacs.git/blob_plain/1a0a666f941c99882093d7bd08ced15033bc3f0c:/lisp/emacs-lisp/package.el ).
2011-12-14 03:04:08 +00:00
2014-04-06 10:20:05 +00:00
Enable installation of packages from MELPA by adding an entry to
`package-archives` after `(require 'package)` and before the call to
2014-04-06 10:22:43 +00:00
`package-initialize` in your `init.el` or `.emacs` file:
2013-03-26 03:55:44 +00:00
2013-08-20 18:23:50 +00:00
```lisp
(require 'package)
(add-to-list 'package-archives
2014-10-23 05:14:45 +00:00
'("melpa" . "http://melpa.org/packages/") t)
2013-08-20 18:23:50 +00:00
(when (< emacs-major-version 24 )
2014-04-06 10:20:05 +00:00
;; For important compatibility libraries like cl-lib
2013-08-20 18:23:50 +00:00
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
(package-initialize)
```
2014-04-06 10:20:05 +00:00
Then just use `M-x package-list-packages` to browse and install
packages from MELPA and elsewhere.
Note that MELPA packages will always have higher versions than those
from other archives like Marmalade, so if you decide you need
non-MELPA versions of specific packages for some reason, extra
configuration will be required:
2014-04-06 10:15:19 +00:00
If your Emacs has the variable `package-pinned-packages` , you can
customize or modify that variable as needed. Otherwise, use the
separate
[package-filter.el ](https://github.com/milkypostman/package-filter )
package which we provide.
2012-03-24 17:47:05 +00:00
2012-01-22 20:28:20 +00:00
2013-07-21 04:57:02 +00:00
## Contributing New Recipes
New recipe submissions should adhere to the following guidelines,
* One pull request per recipe. You can create multiple branches and
create a pull request for each branch.
2012-04-30 22:13:46 +00:00
* Upstream source must be stored in an authoritative
[SCM ](http://en.wikipedia.org/wiki/Software_configuration_management )
2013-07-21 04:57:02 +00:00
repository. Emacswiki recipes are discouraged but can be accepted.
2012-11-03 14:56:07 +00:00
2013-07-21 04:57:02 +00:00
* Packages should be built from the *official* package repository.
Forks of the official repository will not be accepted except in
*extreme* circumstances.
2012-11-03 14:56:07 +00:00
2012-04-30 22:13:46 +00:00
* The package name should match the name of the feature provided. See
the `package` function for more information.
2012-11-03 14:56:07 +00:00
2012-04-30 22:13:46 +00:00
* Packages should adhere to the `package.el` format as specified by
`(info "(elisp) Packaging")` . More information on this format is
provided by the
2014-06-29 11:02:06 +00:00
[marmalade package manual ](https://web.archive.org/web/20111120220609/http://marmalade-repo.org/doc-files/package.5.html ).
2012-11-03 14:56:07 +00:00
2013-07-21 04:57:02 +00:00
* Recipes should try to minimize the size of the resulting package by
specifying only files relevant to the package. See the
2013-07-22 09:35:05 +00:00
[Recipe Format ](#recipe-format ) section for more information on
2013-07-21 04:57:02 +00:00
specifying package files.
### Expediting Recipe Reviews
Because we care about the quality of packages that are part of MELPA
we review all submissions. The following steps can help us with this
process and expedite the recipe review process,
2014-12-19 21:46:57 +00:00
* Use [flycheck-package ](https://github.com/purcell/flycheck-package )
to help you identify common errors in your package metadata.
2013-07-21 04:57:02 +00:00
* Include the following information in the pull request:
* A brief summary of what the package does.
2014-04-20 12:32:26 +00:00
* A direct link to the package repository.
2013-07-21 04:57:02 +00:00
* Your association with the package (e.g., are you the maintainer?
have you contributed? do you just like the package a lot?).
2014-04-20 12:32:26 +00:00
* Relevant communications with the upstream package maintainer (e.g.,
2013-07-21 04:57:02 +00:00
`package.el` compatibility changes that you have submitted).
2014-04-20 12:32:26 +00:00
* Test that the package builds properly via `make recipes/<recipe>` ,
or pressing `C-c C-c` in the recipe buffer.
2013-07-21 04:57:02 +00:00
2014-04-20 12:32:26 +00:00
* Test that the package installs properly via `package-install-file` ,
or entering "yes" when prompted after pressing `C-c C-c` in the
recipe buffer.
2012-11-03 14:56:07 +00:00
2014-11-07 01:08:59 +00:00
* If you are *not* the original author or maintainer of the package you
are submitting, please consider notifying the author *prior* to submitting
and make reasonable effort to include them in the pull request process.
2012-04-30 22:13:46 +00:00
### Testing
Let `<NAME>` denote the name of the recipe to submit.
1. Fork the MELPA repository.
2. Add your new file under the directory specified by
`package-build-recipes-dir` (default: `recipes/` directory where
2014-04-20 12:32:26 +00:00
`package-build` was loaded). If you prefer, the interactive command
`package-build-create-recipe` in `package-build.el` will guide you
through this process.
3. Confirm your package builds properly by running
2012-04-30 22:13:46 +00:00
2012-07-21 20:46:21 +00:00
make recipes/< NAME >
2012-11-03 14:56:07 +00:00
2013-10-04 12:40:49 +00:00
(Be sure that the `emacs` on your path is at least version 23, or
2014-07-11 19:06:49 +00:00
set `$EMACS_COMMAND` to the location of a suitable binary.)
2013-10-04 12:40:49 +00:00
2014-04-20 12:32:26 +00:00
Alternatively, open the recipe in Emacs and press `C-c C-c` in the
recipe buffer: this will also prompt you to install the
freshly-built package.
2012-04-30 22:13:46 +00:00
4. Install the file you built by running `package-install-file` from
within Emacs and specifying the newly built package in the directory
specified by `package-build-archive-dir` (default: `packages/`
directory where `package-build` was loaded).
2014-04-20 12:39:00 +00:00
You can optionally run a sandboxed Emacs in which locally-built
packages will be available for installation along with those already
in MELPA:
```
EMACS=/path/to/emacs make sandbox
```
2014-04-20 12:41:01 +00:00
then `M-x package-list-packages` , install and test as
appropriate. This is a useful way to discover missing dependencies!
2014-04-20 12:39:00 +00:00
2012-04-30 22:13:46 +00:00
### Submitting
After verifying the entry works properly please open a pull request on
Github. Consider the [hub ](https://github.com/defunkt/hub )
command-line utility by [defunkt ](http://chriswanstrath.com/ ) which
helps simplify this process.
2013-07-22 09:35:05 +00:00
## Recipe Format
2012-04-30 22:13:46 +00:00
2012-04-11 14:24:31 +00:00
Packages are specified by files in the `recipes` directory. You can
contribute a new package by adding a new file under `recipes` using
2012-12-17 19:39:47 +00:00
the following form (`[...]` denotes optional or conditional values),
2012-01-22 20:28:20 +00:00
2013-08-20 19:00:11 +00:00
```lisp
2012-04-21 09:10:48 +00:00
(< package-name >
2014-07-07 09:56:33 +00:00
:fetcher [git|github|bzr|hg|darcs|fossil|svn|cvs|wiki]
2012-04-11 14:26:10 +00:00
[:url "< repo url > "]
[:repo "github-user/repo-name"]
2012-09-15 11:55:15 +00:00
[:module "cvs-module"]
2012-12-17 19:39:47 +00:00
[:files ("< file1 > " ...)])
2012-04-21 09:10:48 +00:00
```
2012-04-09 19:41:58 +00:00
2012-04-30 22:13:46 +00:00
- `package-name`
a lisp symbol that has the same name as the package being specified.
2012-03-24 17:47:05 +00:00
2014-07-07 09:56:33 +00:00
- `:fetcher` (one of `git, github, bzr, hg, darcs, fossil, svn, cvs, wiki` )
2013-07-21 04:57:02 +00:00
specifies the type of repository that `:url` points to. Right now
2012-04-11 14:24:31 +00:00
package-build supports [git][git], [github][github],
2013-07-21 04:57:02 +00:00
[bazaar (bzr)][bzr], [mercurial (hg)][hg], [subversion (svn)][svn],
2014-07-07 09:56:33 +00:00
[cvs][cvs], [darcs][darcs], [fossil][fossil], and [Emacs Wiki (wiki)][emacswiki] as
2013-07-21 04:57:02 +00:00
possible mechanisms for checking out the repository.
*package-build* uses
the corresponding application to update files before building the
package. In the case of the `github`
2012-04-11 14:24:31 +00:00
fetcher, use `:repo` instead of `:url` ; the git URL will then be
deduced.
2012-03-24 17:47:05 +00:00
2013-07-21 04:57:02 +00:00
The Emacs Wiki fetcher gets the latest version of the package
from `http://www.emacswiki.org/emacs/download/<NAME>.el` where `NAME`
is the package name. Note that the `:url` property is not needed for
the `wiki` engine unless the name of the package file on the EmacsWiki
differs from the package name being built.
2012-12-17 19:39:47 +00:00
- `:url`
specifies the URL of the version control repository. *required for
2014-07-07 09:56:33 +00:00
the `git` , `bzr` , `hg` , `darcs` , `fossil` , `svn` and `cvs` fetchers.*
2012-12-17 19:39:47 +00:00
2013-07-21 04:57:02 +00:00
- `:repo` specifies the github repository and is of the form
`github-user/repo-name` . *required for the `github` fetcher* .
2012-12-17 19:39:47 +00:00
2013-05-01 13:54:42 +00:00
- `:commit`
2014-02-06 20:31:45 +00:00
specifies the commit of the git repo to checkout. The value
2013-05-01 14:01:50 +00:00
will be passed to `git reset` in a repo where `upstream` is the
original repository. Can therefore be either a sha, if pointing at a
2014-02-06 20:31:45 +00:00
specific commit, or a full ref prefixed with "origin/". Only used by
2013-05-01 14:01:50 +00:00
the `git` and `github` fetchers.
2013-05-01 13:54:42 +00:00
2014-02-06 20:31:45 +00:00
- `:branch`
specifies the branch of the git repo to use. This is like `:commit` , but
it adds the "origin/" prefix automatically.
2012-12-17 19:39:47 +00:00
- `:module`
specifies the module of a CVS repository to check out. Defaults to to
`package-name` . Only used with `:fetcher cvs` , and otherwise ignored.
2014-03-04 19:40:17 +00:00
- `:files` optional property specifying the elisp and info files used to build the
2013-03-13 21:00:24 +00:00
package. Automatically populated by matching all `.el` , `.info` and `dir` files in the
2014-03-04 19:40:17 +00:00
root of the repository and the `doc` directory. Excludes all files in the root directory
ending in `test.el` or `tests.el` . See the default value below,
("*.el" "*.el.in" "dir"
"*.info" "*.texi" "*.texinfo"
"doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo"
2015-01-01 12:24:26 +00:00
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el"))
2013-07-21 04:57:02 +00:00
This option is necessary when there are multiple packages in the
repository and thus the package should only be built from a subset of
`.el` files. For example, elisp test files should not normally be
packaged. *Any file specified at any path in the repository is copied
to the root of the package.* More complex options are available,
submit an [Issue ](https://github.com/milkypostman/melpa/issues ) if the
specified package requires more complex file specification.
2012-03-24 17:47:05 +00:00
2014-12-16 13:20:55 +00:00
If the the package merely requires some additional files, for example for
bundling external dependencies, but is otherwise fine with the defaults, it's
recommended to use `:defaults` as the very first element of this list, which
causes the default value shown above to be prepended to the specified file list.
2012-03-24 17:47:05 +00:00
[git]: http://git-scm.com/
2012-04-09 19:37:45 +00:00
[github]: https://github.com/
2012-04-11 14:24:31 +00:00
[bzr]: http://bazaar.canonical.com/en/
[hg]: http://mercurial.selenic.com/
2012-03-24 17:47:05 +00:00
[svn]: http://subversion.apache.org/
2012-09-14 16:35:16 +00:00
[cvs]: http://www.nongnu.org/cvs/
2012-03-24 17:47:05 +00:00
[darcs]: http://darcs.net/
2014-07-07 09:56:33 +00:00
[fossil]: http://www.fossil-scm.org/
2012-03-24 17:47:05 +00:00
[emacswiki]: http://www.emacswiki.org/
2013-08-20 18:23:50 +00:00
### Example: Single File Repository
2012-03-24 17:47:05 +00:00
2015-04-09 02:10:02 +00:00
[smex ](https://github.com/nonsequitur/smex ) is a repository that
contains two files:
2012-04-07 18:00:59 +00:00
2015-04-09 02:10:02 +00:00
* `README.markdown`
* `smex.el`
2012-04-09 19:41:58 +00:00
2015-04-09 02:10:02 +00:00
Since there is only one `.el` file, this package only needs the `:url`
and `:fetcher` specified,
2012-03-24 17:47:05 +00:00
2013-08-20 19:00:11 +00:00
```lisp
2015-04-09 02:10:02 +00:00
(smex :repo "nonsequitur/smex" :fetcher github)
2012-11-03 14:56:07 +00:00
```
2012-03-24 17:47:05 +00:00
2013-08-20 18:23:50 +00:00
### Example: Multiple Packages in one Repository
2012-04-09 19:41:58 +00:00
2012-03-24 17:47:05 +00:00
The
2012-01-22 20:28:20 +00:00
[emacs-starter-kit ](https://github.com/technomancy/emacs-starter-kit )
contains the *starter-kit* package along with extra packages in the
`modules` directory; *starter-kit-bindings* , *starter-kit-lisp* , etc.
2013-08-20 19:00:11 +00:00
```lisp
2012-04-11 14:24:31 +00:00
(starter-kit
:url "https://github.com/technomancy/emacs-starter-kit.git"
:fetcher git)
(starter-kit-bindings
:url "https://github.com/technomancy/emacs-starter-kit.git"
:fetcher git
:files ("modules/starter-kit-bindings.el"))
2012-11-03 14:56:07 +00:00
```
2012-04-11 14:24:31 +00:00
Notice that `:files` is not specified for `starter-kit` since
package-build will automatically add all `.el` files in the root
directory of the repository. The `starter-kit-bindings` repository is
contained in the `modules/` subdirectory and thus needs the packages
files specified explicitly.
2011-12-14 03:04:08 +00:00
2013-08-20 18:23:50 +00:00
### Example: Multiple Files in Multiple Directories
2012-05-04 01:41:47 +00:00
There are special cases where creation of the package comes from many
different sub-directories in the repository and the destination
2012-11-03 14:56:07 +00:00
sub-directories need to be explicitly set.
2012-05-04 01:41:47 +00:00
Consider the `flymake-perlcritic` recipe,
2013-08-20 19:00:11 +00:00
```lisp
2012-05-04 01:41:47 +00:00
(flymake-perlcritic :repo "illusori/emacs-flymake-perlcritic"
:fetcher github
:files ("*.el" ("bin" "bin/flymake_perlcritic")))
```
which will result in a package structure of,
```
flymake-perlcritic-YYYMMDD
|-- bin
| `-- flymake_perlcritic
|-- flymake-perlcritic-pkg.el
`-- flymake-perlcritic.el
```
Notice that specifying an entry in `:files` that is a list takes the
first element to be the destination directory. These can be embedded
further, such as the following---hypothetical---entry for `:files` ,
2013-08-20 19:00:11 +00:00
```lisp
2012-11-03 14:56:07 +00:00
("*.el" ("snippets"
2012-05-04 01:41:47 +00:00
("html-mode" "snippets/html-mode/*")
("python-mode" "snippets/python-mode/*")))
```
which would result in a package with `*.el` in something like,
```
package-YYYYMMDD
|-- snippets
| |-- html-mode
| | |-- div
| | `-- html
| `-- python-mode
| |-- for
| `-- main
`-- package.el
```
But a better solution, given that we probably want to copy the
*entire* `snippets` directory to the root of the package, we could
just specify that directory. Consider the `pony-mode` recipe,
2013-08-20 19:00:11 +00:00
```lisp
2012-05-04 01:41:47 +00:00
(pony-mode
:repo "davidmiller/pony-mode"
:fetcher github
:files ("src/*.el" "snippets"))
```
which generates the package,
```
pony-mode-YYYYMMDD
|-- pony-mode-pkg.el
|-- pony-mode.el
|-- pony-tpl.el
`-- snippets
|-- html-mode
| |-- bl
| |-- ex
| |-- for
| |-- if
| |-- loa
| |-- sup
| |-- testc
| `-- {{
`-- python-mode
|-- auth-view
|-- bn
|-- model
|-- modelform
|-- render-to
|-- testc
`-- view
```
2012-01-22 20:28:20 +00:00
2012-04-30 22:13:46 +00:00
## Build Scripts
2012-07-21 20:46:21 +00:00
Building MELPA is all based around using the `Makefile` included in
the root repository directory. Described below are the actions that
accepted by the `Makefile` .
2012-04-30 22:13:46 +00:00
2012-07-21 20:46:21 +00:00
* `all` -- Builds all packages under the `recipes/` directory and compiles the `index.html` file for the [melpa] website.
2012-04-30 22:13:46 +00:00
2012-07-21 20:46:21 +00:00
* `recipes/<NAME>` -- Build individual recipe `<NAME>` . Built packages
are put in the `packages/` folder with version corresponding to the
newest HEAD revision available; given according to the `%Y%m%d`
format.
2012-04-30 22:13:46 +00:00
2012-07-21 20:46:21 +00:00
* `json` -- build all JSON files.
* `archive.json` -- construct the `archive.json` file that will contain a JSON object of all compiled packages.
* `recipes.json` -- construct the `recipes.json` file containing a JSON object of all packages available for building.
* `clean` -- clean everything.
* `html` -- build `index.html` .
* `clean-working` -- remove all repositories that have been checked out to the `working/` directory.
* `clean-packages` -- remove all compiled packages from the `packages` directory.
* `clean-json` -- remove all JSON files.
2012-11-03 14:56:07 +00:00
2012-07-21 20:46:21 +00:00
Note that these scripts require an Emacs with `package.el` installed,
such as Emacs 24. If you have an older version of Emacs, you can get a
suitable `package.el` [here ](http://bit.ly/pkg-el23 ).
2012-11-03 14:56:07 +00:00
2014-10-23 05:14:45 +00:00
[melpa]: http://melpa.org
2012-04-30 22:13:46 +00:00
2012-07-21 20:46:21 +00:00
2012-04-30 22:13:46 +00:00
## API
2012-11-03 14:56:07 +00:00
All repository code is contained in the `package-build.el` .
2012-04-30 22:13:46 +00:00
### Functions
- `(package-build-all)` : build packages for all recipes in the
directory specified by `package-build-recipes-dir` .
2012-05-01 13:16:02 +00:00
- `(package-build-archive NAME)` : interactive elisp function to build
a single archive. NAME is a symbol for the package to be built.
Packages are staged in the directory specified by
2012-04-30 22:13:46 +00:00
`package-build-working-dir` and built packages are placed in the
directory specified by `package-build-archive-dir` . Packages are
versioned based on the most recent commit date to package files based
on commits to upstream package repository. For multi-file packages,
the file `<NAME>-pkg.el` is automatically generated and contains
*description*, *version* , and *requires* information determined by
2012-05-01 13:16:02 +00:00
searching `<NAME>-pkg.el` , `<NAME>.el` , and `<NAME>-pkg.el.in` , if
they exist in the repository.
2012-04-30 22:13:46 +00:00
### Variables
- `package-build-working-dir` : Staging area containing package
repositories and package directories being built.
- `package-build-archive-dir` : Location to store `archive-contents` and
any built packages.
- `package-build-recipes-dir` : Directory containing MELPA compatible
2013-07-22 09:35:05 +00:00
recipes. See [Recipe Format ](#recipe-format ) section for more details.
2012-04-30 22:13:46 +00:00
2011-12-14 03:04:08 +00:00
2012-03-24 17:47:05 +00:00
## Configuration
2012-03-17 15:06:39 +00:00
2011-12-14 03:04:08 +00:00
Packages end up in the `packages/` directory by default.
This can be configured using the `package-build-archive-dir` variable.
Repositories are checked out to the `working/` directory by default.
This can be configured using the `package-build-working-dir` variable.
2012-04-30 22:13:46 +00:00
## About
*MELPA* is *Milkypostman's ELPA* or *Milkypostman's Experimental Lisp
Package Archive* if you're not into the whole brevity thing.
2014-03-23 22:10:13 +00:00
## Stable Packages
MELPA now includes a mechanism to build *stable* versions of packages
given that the repositories meet the following criteria,
2014-07-11 18:42:32 +00:00
1. Hosted using *git* or *hg* .
2. Tag names are version strings compatible parseable by the `version-to-list`
function, optionally prefixed with `v` , `v.` or `v-` .
2014-03-23 22:10:13 +00:00
2014-04-28 13:43:25 +00:00
To use the stable versions of packages you should use the stable server
2014-03-23 22:10:13 +00:00
in your `package-archives` list.
```lisp
(add-to-list 'package-archives
2014-10-23 05:14:45 +00:00
'("melpa-stable" . "http://stable.melpa.org/packages/") t)
2014-03-23 22:10:13 +00:00
```
2014-03-23 22:28:04 +00:00
An online list of available packages can be found at
2014-10-23 05:14:45 +00:00
[http://stable.melpa.org ](http://stable.melpa.org ).
2014-03-23 22:28:04 +00:00
2014-03-23 22:10:13 +00:00
### Stable Version Generation
2014-07-11 18:42:32 +00:00
To have a stable version generated for your package simply tag the repository
using a naming compatible with `version-to-list` , optionally prefixed with `v` ,
`v.` or `v-` . The repo state of this tag will be used to generate the stable
package.
2014-03-23 22:10:13 +00:00
### Notes
*Versions for packages on the original MELPA server are based on the date of the last commit and will likely be higher than any version on the stable server.* Keep the following things in mind,
* If you leave the original MELPA server in your `package-archives`
then by default you will get the *development* versions of packages
and not the stable ones.
* You will probably want to remove all packages and then reinstall
them. Any packages you already have installed from MELPA will never
get "updated" to the stable version because of the way version
numbering is handled.