mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 11:09:31 +00:00
Keep recipes in individual files inside the "recipes" subdirectory.
This commit is contained in:
parent
b2e7de10c7
commit
2b1afde6f3
109 changed files with 255 additions and 377 deletions
|
@ -59,7 +59,7 @@ the repository.
|
|||
|
||||
## Contributing New Packages
|
||||
|
||||
Packages are specified in the `pkglist` file alphabetically for convenience and because we need some rules. You can contribute a new package by adding a new entry to `pkglist` using the following form,
|
||||
Packages are specified by files in the `recipes` directory. You can contribute a new package by adding a new file under `recipes` using the following form,
|
||||
|
||||
(name :url "<repo url>"
|
||||
:fetcher [git|svn|darcs|wiki]
|
||||
|
@ -116,7 +116,7 @@ Notice that `:files` is not specified for `starter-kit` since package-build will
|
|||
|
||||
### Submitting the Package
|
||||
|
||||
You should first fork the MELPA repository, add your new entry to `pkglist`, and confirm your new package builds properly by running `buildpkg <NAME>`. You can install the package that you built by running the interactive command `package-install-file` in Emacs, and specifying the newly built package which should be in the `packages/` subdirectory under the melpa directory.
|
||||
You should first fork the MELPA repository, add your new file under `recipes`, and confirm your new package builds properly by running `buildpkg <NAME>`. You can install the package that you built by running the interactive command `package-install-file` in Emacs, and specifying the newly built package which should be in the `packages/` subdirectory under the melpa directory.
|
||||
|
||||
After verifying the entry works properly please open a pull request on Github.
|
||||
|
||||
|
|
|
@ -58,8 +58,8 @@
|
|||
:group 'package-build
|
||||
:type 'string)
|
||||
|
||||
(defcustom package-build-alist-file (expand-file-name "pkglist")
|
||||
"File containing pkg alist."
|
||||
(defcustom package-build-recipes-dir (expand-file-name "recipes/")
|
||||
"Directory containing recipe files."
|
||||
:group 'package-build
|
||||
:type 'string)
|
||||
|
||||
|
@ -342,6 +342,11 @@ If PKG-INFO is nil, an empty one is created."
|
|||
desc
|
||||
type)))))
|
||||
|
||||
(defun pb/read-recipes ()
|
||||
"Return a list of data structures for all recipes in `package-build-recipes-dir'."
|
||||
(mapcar 'pb/read-from-file
|
||||
(directory-files package-build-recipes-dir t "^[^.]")))
|
||||
|
||||
;;; Public interface
|
||||
|
||||
(defun package-build-archive (file-name)
|
||||
|
@ -431,10 +436,10 @@ If PKG-INFO is nil, an empty one is created."
|
|||
(mapcar 'symbol-name (mapcar 'car package-build-alist))))
|
||||
|
||||
(defun package-build-initialize ()
|
||||
"Load the pkglist and archive-contents files."
|
||||
"Load the recipe and archive-contents files."
|
||||
(interactive)
|
||||
(setq
|
||||
package-build-alist (pb/read-from-file package-build-alist-file)
|
||||
package-build-alist (pb/read-recipes)
|
||||
package-build-archive-alist (cdr (pb/read-from-file
|
||||
(expand-file-name "archive-contents"
|
||||
package-build-archive-dir)))))
|
||||
|
|
371
pkglist
371
pkglist
|
@ -1,371 +0,0 @@
|
|||
;; -*- mode: emacs-lisp -*-
|
||||
((ac-dabbrev
|
||||
:fetcher wiki)
|
||||
(ack-and-a-half
|
||||
:url "https://github.com/jhelwig/ack-and-a-half.git"
|
||||
:fetcher git)
|
||||
(ansi
|
||||
:url "https://github.com/rejeep/ansi.git"
|
||||
:fetcher git)
|
||||
(auto-complete
|
||||
:url "https://github.com/m2ym/auto-complete.git"
|
||||
:fetcher git
|
||||
:files ("*.el" "dict/*"))
|
||||
(bm
|
||||
:url "https://github.com/joodland/bm.git"
|
||||
:fetcher git)
|
||||
(bookmark+
|
||||
:fetcher wiki
|
||||
:files (
|
||||
"bookmark+.el" ;; main (driver) library
|
||||
"bookmark+-mac.el" ;; Lisp macros
|
||||
"bookmark+-bmu.el" ;; code for the `*Bookmark List*' (‘bookmark-bmenu-mode’)
|
||||
"bookmark+-1.el" ;; other required code (non-bmenu)
|
||||
"bookmark+-key.el" ;; key and menu bindings (non-bmenu)
|
||||
"bookmark+-lit.el" ;; optional code for highlighting bookmark locations
|
||||
"bookmark+-doc.el" ;; documentation (essentially the same as this wiki page)
|
||||
"bookmark+-chg.el" ;; change log entries
|
||||
))
|
||||
(browse-kill-ring
|
||||
:url "https://github.com/todesschaf/browse-kill-ring.git"
|
||||
:fetcher git)
|
||||
(c-eldoc
|
||||
:url "https://github.com/nflath/c-eldoc.git"
|
||||
:fetcher git)
|
||||
(citrus-mode
|
||||
:url "https://github.com/rejeep/citrus-mode.git"
|
||||
:fetcher git)
|
||||
(clojure-mode
|
||||
:url "https://github.com/technomancy/clojure-mode.git"
|
||||
:fetcher git
|
||||
:files ("clojure-mode.el"))
|
||||
(clojure-test-mode
|
||||
:url "https://github.com/technomancy/clojure-mode.git"
|
||||
:fetcher git
|
||||
:files ("clojure-test-mode.el"))
|
||||
(clojurescript-mode
|
||||
:url "https://github.com/technomancy/clojure-mode.git"
|
||||
:fetcher git
|
||||
:files ("clojurescript-mode.el"))
|
||||
(coffee-mode
|
||||
:url "https://github.com/defunkt/coffee-mode.git"
|
||||
:fetcher git)
|
||||
(color-theme-sanityinc-solarized
|
||||
:url "https://github.com/purcell/color-theme-sanityinc-solarized.git"
|
||||
:fetcher git)
|
||||
(color-theme-sanityinc-tomorrow
|
||||
:url "https://github.com/purcell/color-theme-sanityinc-tomorrow.git"
|
||||
:fetcher git)
|
||||
(cperl-mode
|
||||
:url "https://github.com/jrockway/cperl-mode.git"
|
||||
:fetcher git)
|
||||
(csv-mode
|
||||
:url "https://github.com/emacsmirror/csv-mode.git"
|
||||
:fetcher git)
|
||||
(csv-nav
|
||||
:fetcher wiki)
|
||||
(darcsum
|
||||
:url "http://joyful.com/repos/darcsum"
|
||||
:fetcher darcs)
|
||||
(deft
|
||||
:url "git://jblevins.org/git/deft.git"
|
||||
:fetcher git)
|
||||
(delim-kill
|
||||
:url "https://github.com/thomas11/delim-kill.git"
|
||||
:fetcher git)
|
||||
(dired+
|
||||
:fetcher wiki)
|
||||
(drag-stuff
|
||||
:url "https://github.com/rejeep/drag-stuff.git"
|
||||
:fetcher git)
|
||||
(elisp-slime-nav
|
||||
:url "https://github.com/purcell/elisp-slime-nav.git"
|
||||
:fetcher git)
|
||||
(enclose
|
||||
:url "https://github.com/rejeep/enclose.git"
|
||||
:fetcher git)
|
||||
(ess
|
||||
:url "https://github.com/milkypostman/ESS.git"
|
||||
:fetcher git
|
||||
:files ("*.el" "lisp/*.el" "etc/*"))
|
||||
(expand-region
|
||||
:url "https://github.com/magnars/expand-region.el.git"
|
||||
:fetcher git)
|
||||
(evil
|
||||
:url "git://gitorious.org/evil/evil.git"
|
||||
:fetcher git)
|
||||
(evil-leader
|
||||
:url "https://github.com/cofi/evil-leader.git"
|
||||
:fetcher git)
|
||||
(evil-numbers
|
||||
:url "https://github.com/cofi/evil-numbers.git"
|
||||
:fetcher git)
|
||||
(evil-surround
|
||||
:url "https://github.com/timcharper/evil-surround.git"
|
||||
:fetcher git)
|
||||
(find-file-in-project
|
||||
:url "https://github.com/technomancy/find-file-in-project.git"
|
||||
:fetcher git)
|
||||
(findr
|
||||
:url "https://github.com/milkypostman/jump.el.git"
|
||||
:fetcher git
|
||||
:files ("findr.el"))
|
||||
(flymake-cursor
|
||||
:fetcher wiki)
|
||||
(flymake-perlcritic
|
||||
:url "https://github.com/illusori/emacs-flymake-perlcritic.git"
|
||||
:fetcher git
|
||||
:files ("*.el" "bin/flymake_perlcritic"))
|
||||
(full-ack
|
||||
:url "https://github.com/nschum/full-ack.git"
|
||||
:fetcher git)
|
||||
(gist
|
||||
:url "https://github.com/defunkt/gist.el.git"
|
||||
:fetcher git)
|
||||
(git-blame
|
||||
:url "https://github.com/tsgates/git-emacs.git"
|
||||
:fetcher git
|
||||
:files ("git-blame.el"))
|
||||
(google-maps
|
||||
:url "git://git.naquadah.org/google-maps.git"
|
||||
:fetcher git)
|
||||
(haml-mode
|
||||
:url "https://github.com/nex3/haml-mode.git"
|
||||
:fetcher git)
|
||||
(haskell-mode
|
||||
:url "https://github.com/haskell/haskell-mode.git"
|
||||
:fetcher git)
|
||||
(helm
|
||||
:url "https://github.com/emacs-helm/helm.git"
|
||||
:fetcher git)
|
||||
(helm-projectile
|
||||
:url "https://github.com/bbatsov/projectile.git"
|
||||
:fetcher git
|
||||
:files ("helm-projectile.el"))
|
||||
(hl-sentence
|
||||
:url "https://github.com/milkypostman/hl-sentence.git"
|
||||
:fetcher git)
|
||||
(html-script-src
|
||||
:url "https://github.com/rejeep/html-script-src.git"
|
||||
:fetcher git)
|
||||
(icicles
|
||||
:fetcher wiki
|
||||
:files ("icicles.el" ;; main library
|
||||
"icicles-chg.el" ;; change logs (no code)
|
||||
"icicles-cmd1.el" ;; top-level commands, part 1
|
||||
"icicles-cmd2.el" ;; top-level commands, part 2
|
||||
"icicles-doc1.el" ;; first part of the doc (Commentary, no code)
|
||||
"icicles-doc2.el" ;; second part of the doc (Commentary, no code)
|
||||
"icicles-face.el" ;; faces (customizable)
|
||||
"icicles-fn.el" ;; non-interactive functions
|
||||
"icicles-mac.el" ;; macros
|
||||
"icicles-mcmd.el" ;; minibuffer commands
|
||||
"icicles-mode.el" ;; Icicle mode definition
|
||||
"icicles-opt.el" ;; user options (customizable variables)
|
||||
"icicles-var.el" ;; internal variables
|
||||
))
|
||||
(idle-highlight-mode
|
||||
:url "https://github.com/nonsequitur/idle-highlight-mode.git"
|
||||
:fetcher git)
|
||||
(ido-ubiquitous
|
||||
:url "https://github.com/DarwinAwardWinner/ido-ubiquitous.git"
|
||||
:fetcher git)
|
||||
(inf-ruby
|
||||
:url "https://github.com/nonsequitur/inf-ruby.git"
|
||||
:fetcher git)
|
||||
(inflections
|
||||
:url "https://github.com/milkypostman/jump.el.git"
|
||||
:fetcher git
|
||||
:files ("inflections.el"))
|
||||
(ir_black-theme
|
||||
:url "git://gist.github.com/2029034.git"
|
||||
:fetcher git)
|
||||
(jaunte
|
||||
:url "https://github.com/kawaguchi/jaunte.el.git"
|
||||
:fetcher git)
|
||||
(js2-mode
|
||||
:url "https://github.com/mooz/js2-mode.git"
|
||||
:fetcher git)
|
||||
(js3
|
||||
:url "https://github.com/thomblake/js3-mode.git"
|
||||
:fetcher git)
|
||||
(jump
|
||||
:url "https://github.com/milkypostman/jump.el.git"
|
||||
:fetcher git)
|
||||
(magit
|
||||
:url "https://github.com/magit/magit.git"
|
||||
:fetcher git)
|
||||
(magithub
|
||||
:url "https://github.com/nex3/magithub.git"
|
||||
:fetcher git)
|
||||
(markdown-mode
|
||||
:url "https://github.com/milkypostman/markdown-mode.git"
|
||||
:fetcher git)
|
||||
(markdown-mode+
|
||||
:url "https://github.com/milkypostman/markdown-mode-plus.git"
|
||||
:fetcher git
|
||||
:files ("markdown-mode+.el" "HTML as Markdown in Emacs.applescript"))
|
||||
(melpa
|
||||
:url "https://github.com/milkypostman/melpa.git"
|
||||
:fetcher git
|
||||
:files ("melpa.el"))
|
||||
(mmm-mode
|
||||
:url "https://github.com/purcell/mmm-mode.git"
|
||||
:fetcher git)
|
||||
(molokai-theme
|
||||
:url "git://gist.github.com/2029061.git"
|
||||
:fetcher git)
|
||||
(multi-term
|
||||
:fetcher wiki)
|
||||
(multi-web-mode
|
||||
:url "https://github.com/fgallina/multi-web-mode.git"
|
||||
:fetcher git)
|
||||
(org-fstree
|
||||
:url "http://repo.or.cz/r/org-fstree.git"
|
||||
:fetcher git)
|
||||
(org-toodledo
|
||||
:url "https://github.com/christopherjwhite/org-toodledo.git"
|
||||
:fetcher git
|
||||
:files ("http-post-simple.el"
|
||||
"org-toodledo.el"
|
||||
"w3mexcerpt.el"))
|
||||
(package-spec
|
||||
:url "https://github.com/rejeep/package-spec.git"
|
||||
:fetcher git)
|
||||
(paredit
|
||||
:url "http://mumble.net/~campbell/emacs/paredit"
|
||||
:fetcher darcs
|
||||
:files ("paredit.el"))
|
||||
(pastels-on-dark-theme
|
||||
:url "git://gist.github.com/1974259.git"
|
||||
:fetcher git)
|
||||
(pkgbuild-mode
|
||||
:url "https://github.com/juergenhoetzel/pkgbuild-mode.git"
|
||||
:fetcher git
|
||||
:files ("pkgbuild-mode.el"))
|
||||
(popup
|
||||
:url "https://github.com/m2ym/popup-el.git"
|
||||
:fetcher git
|
||||
:files ("popup.el"))
|
||||
(pretty-mode
|
||||
:url "https://github.com/emacsmirror/pretty-mode.git"
|
||||
:fetcher git)
|
||||
(projectile
|
||||
:url "https://github.com/bbatsov/projectile.git"
|
||||
:fetcher git
|
||||
:files ("projectile.el"))
|
||||
(python
|
||||
:url "https://github.com/fgallina/python.el.git"
|
||||
:fetcher git)
|
||||
(rainbow-delimiters
|
||||
:fetcher wiki)
|
||||
(rinari
|
||||
:url "https://github.com/eschulte/rinari.git"
|
||||
:fetcher git)
|
||||
(ruby-compilation
|
||||
:url "https://github.com/eschulte/rinari.git"
|
||||
:fetcher git
|
||||
:files ("util/ruby-compilation.el"))
|
||||
(ruby-end
|
||||
:url "https://github.com/rejeep/ruby-end.git"
|
||||
:fetcher git)
|
||||
(ruby-mode
|
||||
:url "http://svn.ruby-lang.org/repos/ruby/trunk/misc"
|
||||
:fetcher svn
|
||||
:files ("ruby-mode.el"))
|
||||
(rvm
|
||||
:url "https://github.com/senny/rvm.el.git"
|
||||
:fetcher git)
|
||||
(sass-mode
|
||||
:url "https://github.com/nex3/sass-mode.git"
|
||||
:fetcher git)
|
||||
(scss-mode
|
||||
:url "https://github.com/antonj/scss-mode.git"
|
||||
:fetcher git)
|
||||
(slime
|
||||
:url "https://github.com/nablaone/slime.git"
|
||||
:fetcher git
|
||||
:files ("slime.el"))
|
||||
(slime-ritz
|
||||
:url "https://github.com/pallet/ritz.git"
|
||||
:fetcher git
|
||||
:files ("src/main/elisp/slime-ritz.el"))
|
||||
(smart-tab
|
||||
:url "https://github.com/genehack/smart-tab.git"
|
||||
:fetcher git)
|
||||
(smex
|
||||
:url "https://github.com/nonsequitur/smex.git"
|
||||
:fetcher git)
|
||||
(solarized-theme
|
||||
:url "https://github.com/bbatsov/solarized-emacs.git"
|
||||
:fetcher git)
|
||||
(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"))
|
||||
(starter-kit-eshell
|
||||
:url "https://github.com/technomancy/emacs-starter-kit.git"
|
||||
:fetcher git
|
||||
:files ("modules/starter-kit-eshell.el"))
|
||||
(starter-kit-js
|
||||
:url "https://github.com/technomancy/emacs-starter-kit.git"
|
||||
:fetcher git
|
||||
:files ("modules/starter-kit-js.el"))
|
||||
(starter-kit-lisp
|
||||
:url "https://github.com/technomancy/emacs-starter-kit.git"
|
||||
:fetcher git
|
||||
:files ("modules/starter-kit-lisp.el"))
|
||||
(starter-kit-perl
|
||||
:url "https://github.com/technomancy/emacs-starter-kit.git"
|
||||
:fetcher git
|
||||
:files ("modules/starter-kit-perl.el"))
|
||||
(starter-kit-ruby
|
||||
:url "https://github.com/technomancy/emacs-starter-kit.git"
|
||||
:fetcher git
|
||||
:files ("modules/starter-kit-ruby.el"))
|
||||
(textile-mode
|
||||
:url "https://github.com/emacsmirror/textile-mode.git"
|
||||
:fetcher git)
|
||||
(todochiku
|
||||
:fetcher wiki)
|
||||
(twittering-mode
|
||||
:url "https://github.com/hayamiz/twittering-mode.git"
|
||||
:fetcher git)
|
||||
(undo-tree
|
||||
:url "http://www.dr-qubit.org/git/undo-tree.git"
|
||||
:fetcher git)
|
||||
(vimgolf
|
||||
:url "https://github.com/timvisher/vimgolf.git"
|
||||
:fetcher git)
|
||||
(volatile-highlights
|
||||
:url "https://github.com/k-talo/volatile-highlights.el.git"
|
||||
:fetcher git)
|
||||
(wrap-region
|
||||
:url "https://github.com/rejeep/wrap-region.git"
|
||||
:fetcher git)
|
||||
(yaml-mode
|
||||
:url "https://github.com/yoshiki/yaml-mode.git"
|
||||
:fetcher git)
|
||||
(yari
|
||||
:url "https://github.com/hron/yari.el.git"
|
||||
:fetcher git
|
||||
:files ("yari.el"))
|
||||
(yasnippet
|
||||
:url "https://github.com/capitaomorte/yasnippet.git"
|
||||
:fetcher git
|
||||
:files ("*.el" "snippets"))
|
||||
(zenburn-theme
|
||||
:url "https://github.com/bbatsov/zenburn-emacs.git"
|
||||
:fetcher git
|
||||
:files ("zenburn-theme.el"))
|
||||
(zlc
|
||||
:url "https://github.com/mooz/emacs-zlc.git"
|
||||
:fetcher git)
|
||||
)
|
||||
|
||||
;; Local Variables:
|
||||
;; no-byte-compile: t
|
||||
;; End:
|
2
recipes/ac-dabbrev
Normal file
2
recipes/ac-dabbrev
Normal file
|
@ -0,0 +1,2 @@
|
|||
(ac-dabbrev :fetcher wiki)
|
||||
|
2
recipes/ack-and-a-half
Normal file
2
recipes/ack-and-a-half
Normal file
|
@ -0,0 +1,2 @@
|
|||
(ack-and-a-half :url "https://github.com/jhelwig/ack-and-a-half.git" :fetcher git)
|
||||
|
2
recipes/ansi
Normal file
2
recipes/ansi
Normal file
|
@ -0,0 +1,2 @@
|
|||
(ansi :url "https://github.com/rejeep/ansi.git" :fetcher git)
|
||||
|
3
recipes/auto-complete
Normal file
3
recipes/auto-complete
Normal file
|
@ -0,0 +1,3 @@
|
|||
(auto-complete :url "https://github.com/m2ym/auto-complete.git" :fetcher git :files
|
||||
("*.el" "dict/*"))
|
||||
|
2
recipes/bm
Normal file
2
recipes/bm
Normal file
|
@ -0,0 +1,2 @@
|
|||
(bm :url "https://github.com/joodland/bm.git" :fetcher git)
|
||||
|
3
recipes/bookmark+
Normal file
3
recipes/bookmark+
Normal file
|
@ -0,0 +1,3 @@
|
|||
(bookmark+ :fetcher wiki :files
|
||||
("bookmark+.el" "bookmark+-mac.el" "bookmark+-bmu.el" "bookmark+-1.el" "bookmark+-key.el" "bookmark+-lit.el" "bookmark+-doc.el" "bookmark+-chg.el"))
|
||||
|
2
recipes/browse-kill-ring
Normal file
2
recipes/browse-kill-ring
Normal file
|
@ -0,0 +1,2 @@
|
|||
(browse-kill-ring :url "https://github.com/todesschaf/browse-kill-ring.git" :fetcher git)
|
||||
|
2
recipes/c-eldoc
Normal file
2
recipes/c-eldoc
Normal file
|
@ -0,0 +1,2 @@
|
|||
(c-eldoc :url "https://github.com/nflath/c-eldoc.git" :fetcher git)
|
||||
|
2
recipes/citrus-mode
Normal file
2
recipes/citrus-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(citrus-mode :url "https://github.com/rejeep/citrus-mode.git" :fetcher git)
|
||||
|
3
recipes/clojure-mode
Normal file
3
recipes/clojure-mode
Normal file
|
@ -0,0 +1,3 @@
|
|||
(clojure-mode :url "https://github.com/technomancy/clojure-mode.git" :fetcher git :files
|
||||
("clojure-mode.el"))
|
||||
|
3
recipes/clojure-test-mode
Normal file
3
recipes/clojure-test-mode
Normal file
|
@ -0,0 +1,3 @@
|
|||
(clojure-test-mode :url "https://github.com/technomancy/clojure-mode.git" :fetcher git :files
|
||||
("clojure-test-mode.el"))
|
||||
|
3
recipes/clojurescript-mode
Normal file
3
recipes/clojurescript-mode
Normal file
|
@ -0,0 +1,3 @@
|
|||
(clojurescript-mode :url "https://github.com/technomancy/clojure-mode.git" :fetcher git :files
|
||||
("clojurescript-mode.el"))
|
||||
|
2
recipes/coffee-mode
Normal file
2
recipes/coffee-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(coffee-mode :url "https://github.com/defunkt/coffee-mode.git" :fetcher git)
|
||||
|
2
recipes/color-theme-sanityinc-solarized
Normal file
2
recipes/color-theme-sanityinc-solarized
Normal file
|
@ -0,0 +1,2 @@
|
|||
(color-theme-sanityinc-solarized :url "https://github.com/purcell/color-theme-sanityinc-solarized.git" :fetcher git)
|
||||
|
2
recipes/color-theme-sanityinc-tomorrow
Normal file
2
recipes/color-theme-sanityinc-tomorrow
Normal file
|
@ -0,0 +1,2 @@
|
|||
(color-theme-sanityinc-tomorrow :url "https://github.com/purcell/color-theme-sanityinc-tomorrow.git" :fetcher git)
|
||||
|
2
recipes/cperl-mode
Normal file
2
recipes/cperl-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(cperl-mode :url "https://github.com/jrockway/cperl-mode.git" :fetcher git)
|
||||
|
2
recipes/csv-mode
Normal file
2
recipes/csv-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(csv-mode :url "https://github.com/emacsmirror/csv-mode.git" :fetcher git)
|
||||
|
2
recipes/csv-nav
Normal file
2
recipes/csv-nav
Normal file
|
@ -0,0 +1,2 @@
|
|||
(csv-nav :fetcher wiki)
|
||||
|
2
recipes/darcsum
Normal file
2
recipes/darcsum
Normal file
|
@ -0,0 +1,2 @@
|
|||
(darcsum :url "http://joyful.com/repos/darcsum" :fetcher darcs)
|
||||
|
2
recipes/deft
Normal file
2
recipes/deft
Normal file
|
@ -0,0 +1,2 @@
|
|||
(deft :url "git://jblevins.org/git/deft.git" :fetcher git)
|
||||
|
2
recipes/delim-kill
Normal file
2
recipes/delim-kill
Normal file
|
@ -0,0 +1,2 @@
|
|||
(delim-kill :url "https://github.com/thomas11/delim-kill.git" :fetcher git)
|
||||
|
2
recipes/dired+
Normal file
2
recipes/dired+
Normal file
|
@ -0,0 +1,2 @@
|
|||
(dired+ :fetcher wiki)
|
||||
|
2
recipes/drag-stuff
Normal file
2
recipes/drag-stuff
Normal file
|
@ -0,0 +1,2 @@
|
|||
(drag-stuff :url "https://github.com/rejeep/drag-stuff.git" :fetcher git)
|
||||
|
2
recipes/elisp-slime-nav
Normal file
2
recipes/elisp-slime-nav
Normal file
|
@ -0,0 +1,2 @@
|
|||
(elisp-slime-nav :url "https://github.com/purcell/elisp-slime-nav.git" :fetcher git)
|
||||
|
2
recipes/enclose
Normal file
2
recipes/enclose
Normal file
|
@ -0,0 +1,2 @@
|
|||
(enclose :url "https://github.com/rejeep/enclose.git" :fetcher git)
|
||||
|
3
recipes/ess
Normal file
3
recipes/ess
Normal file
|
@ -0,0 +1,3 @@
|
|||
(ess :url "https://github.com/milkypostman/ESS.git" :fetcher git :files
|
||||
("*.el" "lisp/*.el" "etc/*"))
|
||||
|
2
recipes/evil
Normal file
2
recipes/evil
Normal file
|
@ -0,0 +1,2 @@
|
|||
(evil :url "git://gitorious.org/evil/evil.git" :fetcher git)
|
||||
|
2
recipes/evil-leader
Normal file
2
recipes/evil-leader
Normal file
|
@ -0,0 +1,2 @@
|
|||
(evil-leader :url "https://github.com/cofi/evil-leader.git" :fetcher git)
|
||||
|
2
recipes/evil-numbers
Normal file
2
recipes/evil-numbers
Normal file
|
@ -0,0 +1,2 @@
|
|||
(evil-numbers :url "https://github.com/cofi/evil-numbers.git" :fetcher git)
|
||||
|
2
recipes/evil-surround
Normal file
2
recipes/evil-surround
Normal file
|
@ -0,0 +1,2 @@
|
|||
(evil-surround :url "https://github.com/timcharper/evil-surround.git" :fetcher git)
|
||||
|
2
recipes/expand-region
Normal file
2
recipes/expand-region
Normal file
|
@ -0,0 +1,2 @@
|
|||
(expand-region :url "https://github.com/magnars/expand-region.el.git" :fetcher git)
|
||||
|
2
recipes/find-file-in-project
Normal file
2
recipes/find-file-in-project
Normal file
|
@ -0,0 +1,2 @@
|
|||
(find-file-in-project :url "https://github.com/technomancy/find-file-in-project.git" :fetcher git)
|
||||
|
3
recipes/findr
Normal file
3
recipes/findr
Normal file
|
@ -0,0 +1,3 @@
|
|||
(findr :url "https://github.com/milkypostman/jump.el.git" :fetcher git :files
|
||||
("findr.el"))
|
||||
|
2
recipes/flymake-cursor
Normal file
2
recipes/flymake-cursor
Normal file
|
@ -0,0 +1,2 @@
|
|||
(flymake-cursor :fetcher wiki)
|
||||
|
3
recipes/flymake-perlcritic
Normal file
3
recipes/flymake-perlcritic
Normal file
|
@ -0,0 +1,3 @@
|
|||
(flymake-perlcritic :url "https://github.com/illusori/emacs-flymake-perlcritic.git" :fetcher git :files
|
||||
("*.el" "bin/flymake_perlcritic"))
|
||||
|
2
recipes/full-ack
Normal file
2
recipes/full-ack
Normal file
|
@ -0,0 +1,2 @@
|
|||
(full-ack :url "https://github.com/nschum/full-ack.git" :fetcher git)
|
||||
|
2
recipes/gist
Normal file
2
recipes/gist
Normal file
|
@ -0,0 +1,2 @@
|
|||
(gist :url "https://github.com/defunkt/gist.el.git" :fetcher git)
|
||||
|
3
recipes/git-blame
Normal file
3
recipes/git-blame
Normal file
|
@ -0,0 +1,3 @@
|
|||
(git-blame :url "https://github.com/tsgates/git-emacs.git" :fetcher git :files
|
||||
("git-blame.el"))
|
||||
|
2
recipes/google-maps
Normal file
2
recipes/google-maps
Normal file
|
@ -0,0 +1,2 @@
|
|||
(google-maps :url "git://git.naquadah.org/google-maps.git" :fetcher git)
|
||||
|
2
recipes/haml-mode
Normal file
2
recipes/haml-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(haml-mode :url "https://github.com/nex3/haml-mode.git" :fetcher git)
|
||||
|
2
recipes/haskell-mode
Normal file
2
recipes/haskell-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(haskell-mode :url "https://github.com/haskell/haskell-mode.git" :fetcher git)
|
||||
|
2
recipes/helm
Normal file
2
recipes/helm
Normal file
|
@ -0,0 +1,2 @@
|
|||
(helm :url "https://github.com/emacs-helm/helm.git" :fetcher git)
|
||||
|
3
recipes/helm-projectile
Normal file
3
recipes/helm-projectile
Normal file
|
@ -0,0 +1,3 @@
|
|||
(helm-projectile :url "https://github.com/bbatsov/projectile.git" :fetcher git :files
|
||||
("helm-projectile.el"))
|
||||
|
2
recipes/hl-sentence
Normal file
2
recipes/hl-sentence
Normal file
|
@ -0,0 +1,2 @@
|
|||
(hl-sentence :url "https://github.com/milkypostman/hl-sentence.git" :fetcher git)
|
||||
|
2
recipes/html-script-src
Normal file
2
recipes/html-script-src
Normal file
|
@ -0,0 +1,2 @@
|
|||
(html-script-src :url "https://github.com/rejeep/html-script-src.git" :fetcher git)
|
||||
|
3
recipes/icicles
Normal file
3
recipes/icicles
Normal file
|
@ -0,0 +1,3 @@
|
|||
(icicles :fetcher wiki :files
|
||||
("icicles.el" "icicles-chg.el" "icicles-cmd1.el" "icicles-cmd2.el" "icicles-doc1.el" "icicles-doc2.el" "icicles-face.el" "icicles-fn.el" "icicles-mac.el" "icicles-mcmd.el" "icicles-mode.el" "icicles-opt.el" "icicles-var.el"))
|
||||
|
2
recipes/idle-highlight-mode
Normal file
2
recipes/idle-highlight-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(idle-highlight-mode :url "https://github.com/nonsequitur/idle-highlight-mode.git" :fetcher git)
|
||||
|
2
recipes/ido-ubiquitous
Normal file
2
recipes/ido-ubiquitous
Normal file
|
@ -0,0 +1,2 @@
|
|||
(ido-ubiquitous :url "https://github.com/DarwinAwardWinner/ido-ubiquitous.git" :fetcher git)
|
||||
|
2
recipes/inf-ruby
Normal file
2
recipes/inf-ruby
Normal file
|
@ -0,0 +1,2 @@
|
|||
(inf-ruby :url "https://github.com/nonsequitur/inf-ruby.git" :fetcher git)
|
||||
|
3
recipes/inflections
Normal file
3
recipes/inflections
Normal file
|
@ -0,0 +1,3 @@
|
|||
(inflections :url "https://github.com/milkypostman/jump.el.git" :fetcher git :files
|
||||
("inflections.el"))
|
||||
|
2
recipes/ir_black-theme
Normal file
2
recipes/ir_black-theme
Normal file
|
@ -0,0 +1,2 @@
|
|||
(ir_black-theme :url "git://gist.github.com/2029034.git" :fetcher git)
|
||||
|
2
recipes/jaunte
Normal file
2
recipes/jaunte
Normal file
|
@ -0,0 +1,2 @@
|
|||
(jaunte :url "https://github.com/kawaguchi/jaunte.el.git" :fetcher git)
|
||||
|
2
recipes/js2-mode
Normal file
2
recipes/js2-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(js2-mode :url "https://github.com/mooz/js2-mode.git" :fetcher git)
|
||||
|
2
recipes/js3
Normal file
2
recipes/js3
Normal file
|
@ -0,0 +1,2 @@
|
|||
(js3 :url "https://github.com/thomblake/js3-mode.git" :fetcher git)
|
||||
|
2
recipes/jump
Normal file
2
recipes/jump
Normal file
|
@ -0,0 +1,2 @@
|
|||
(jump :url "https://github.com/milkypostman/jump.el.git" :fetcher git)
|
||||
|
2
recipes/magit
Normal file
2
recipes/magit
Normal file
|
@ -0,0 +1,2 @@
|
|||
(magit :url "https://github.com/magit/magit.git" :fetcher git)
|
||||
|
2
recipes/magithub
Normal file
2
recipes/magithub
Normal file
|
@ -0,0 +1,2 @@
|
|||
(magithub :url "https://github.com/nex3/magithub.git" :fetcher git)
|
||||
|
2
recipes/markdown-mode
Normal file
2
recipes/markdown-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(markdown-mode :url "https://github.com/milkypostman/markdown-mode.git" :fetcher git)
|
||||
|
3
recipes/markdown-mode+
Normal file
3
recipes/markdown-mode+
Normal file
|
@ -0,0 +1,3 @@
|
|||
(markdown-mode+ :url "https://github.com/milkypostman/markdown-mode-plus.git" :fetcher git :files
|
||||
("markdown-mode+.el" "HTML as Markdown in Emacs.applescript"))
|
||||
|
3
recipes/melpa
Normal file
3
recipes/melpa
Normal file
|
@ -0,0 +1,3 @@
|
|||
(melpa :url "https://github.com/milkypostman/melpa.git" :fetcher git :files
|
||||
("melpa.el"))
|
||||
|
2
recipes/mmm-mode
Normal file
2
recipes/mmm-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(mmm-mode :url "https://github.com/purcell/mmm-mode.git" :fetcher git)
|
||||
|
2
recipes/molokai-theme
Normal file
2
recipes/molokai-theme
Normal file
|
@ -0,0 +1,2 @@
|
|||
(molokai-theme :url "git://gist.github.com/2029061.git" :fetcher git)
|
||||
|
2
recipes/multi-term
Normal file
2
recipes/multi-term
Normal file
|
@ -0,0 +1,2 @@
|
|||
(multi-term :fetcher wiki)
|
||||
|
2
recipes/multi-web-mode
Normal file
2
recipes/multi-web-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(multi-web-mode :url "https://github.com/fgallina/multi-web-mode.git" :fetcher git)
|
||||
|
2
recipes/org-fstree
Normal file
2
recipes/org-fstree
Normal file
|
@ -0,0 +1,2 @@
|
|||
(org-fstree :url "http://repo.or.cz/r/org-fstree.git" :fetcher git)
|
||||
|
3
recipes/org-toodledo
Normal file
3
recipes/org-toodledo
Normal file
|
@ -0,0 +1,3 @@
|
|||
(org-toodledo :url "https://github.com/christopherjwhite/org-toodledo.git" :fetcher git :files
|
||||
("http-post-simple.el" "org-toodledo.el" "w3mexcerpt.el"))
|
||||
|
2
recipes/package-spec
Normal file
2
recipes/package-spec
Normal file
|
@ -0,0 +1,2 @@
|
|||
(package-spec :url "https://github.com/rejeep/package-spec.git" :fetcher git)
|
||||
|
3
recipes/paredit
Normal file
3
recipes/paredit
Normal file
|
@ -0,0 +1,3 @@
|
|||
(paredit :url "http://mumble.net/~campbell/emacs/paredit" :fetcher darcs :files
|
||||
("paredit.el"))
|
||||
|
2
recipes/pastels-on-dark-theme
Normal file
2
recipes/pastels-on-dark-theme
Normal file
|
@ -0,0 +1,2 @@
|
|||
(pastels-on-dark-theme :url "git://gist.github.com/1974259.git" :fetcher git)
|
||||
|
3
recipes/pkgbuild-mode
Normal file
3
recipes/pkgbuild-mode
Normal file
|
@ -0,0 +1,3 @@
|
|||
(pkgbuild-mode :url "https://github.com/juergenhoetzel/pkgbuild-mode.git" :fetcher git :files
|
||||
("pkgbuild-mode.el"))
|
||||
|
3
recipes/popup
Normal file
3
recipes/popup
Normal file
|
@ -0,0 +1,3 @@
|
|||
(popup :url "https://github.com/m2ym/popup-el.git" :fetcher git :files
|
||||
("popup.el"))
|
||||
|
2
recipes/pretty-mode
Normal file
2
recipes/pretty-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(pretty-mode :url "https://github.com/emacsmirror/pretty-mode.git" :fetcher git)
|
||||
|
3
recipes/projectile
Normal file
3
recipes/projectile
Normal file
|
@ -0,0 +1,3 @@
|
|||
(projectile :url "https://github.com/bbatsov/projectile.git" :fetcher git :files
|
||||
("projectile.el"))
|
||||
|
2
recipes/python
Normal file
2
recipes/python
Normal file
|
@ -0,0 +1,2 @@
|
|||
(python :url "https://github.com/fgallina/python.el.git" :fetcher git)
|
||||
|
2
recipes/rainbow-delimiters
Normal file
2
recipes/rainbow-delimiters
Normal file
|
@ -0,0 +1,2 @@
|
|||
(rainbow-delimiters :fetcher wiki)
|
||||
|
2
recipes/rinari
Normal file
2
recipes/rinari
Normal file
|
@ -0,0 +1,2 @@
|
|||
(rinari :url "https://github.com/eschulte/rinari.git" :fetcher git)
|
||||
|
3
recipes/ruby-compilation
Normal file
3
recipes/ruby-compilation
Normal file
|
@ -0,0 +1,3 @@
|
|||
(ruby-compilation :url "https://github.com/eschulte/rinari.git" :fetcher git :files
|
||||
("util/ruby-compilation.el"))
|
||||
|
2
recipes/ruby-end
Normal file
2
recipes/ruby-end
Normal file
|
@ -0,0 +1,2 @@
|
|||
(ruby-end :url "https://github.com/rejeep/ruby-end.git" :fetcher git)
|
||||
|
3
recipes/ruby-mode
Normal file
3
recipes/ruby-mode
Normal file
|
@ -0,0 +1,3 @@
|
|||
(ruby-mode :url "http://svn.ruby-lang.org/repos/ruby/trunk/misc" :fetcher svn :files
|
||||
("ruby-mode.el"))
|
||||
|
2
recipes/rvm
Normal file
2
recipes/rvm
Normal file
|
@ -0,0 +1,2 @@
|
|||
(rvm :url "https://github.com/senny/rvm.el.git" :fetcher git)
|
||||
|
2
recipes/sass-mode
Normal file
2
recipes/sass-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(sass-mode :url "https://github.com/nex3/sass-mode.git" :fetcher git)
|
||||
|
2
recipes/scss-mode
Normal file
2
recipes/scss-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(scss-mode :url "https://github.com/antonj/scss-mode.git" :fetcher git)
|
||||
|
3
recipes/slime
Normal file
3
recipes/slime
Normal file
|
@ -0,0 +1,3 @@
|
|||
(slime :url "https://github.com/nablaone/slime.git" :fetcher git :files
|
||||
("slime.el"))
|
||||
|
3
recipes/slime-ritz
Normal file
3
recipes/slime-ritz
Normal file
|
@ -0,0 +1,3 @@
|
|||
(slime-ritz :url "https://github.com/pallet/ritz.git" :fetcher git :files
|
||||
("src/main/elisp/slime-ritz.el"))
|
||||
|
2
recipes/smart-tab
Normal file
2
recipes/smart-tab
Normal file
|
@ -0,0 +1,2 @@
|
|||
(smart-tab :url "https://github.com/genehack/smart-tab.git" :fetcher git)
|
||||
|
2
recipes/smex
Normal file
2
recipes/smex
Normal file
|
@ -0,0 +1,2 @@
|
|||
(smex :url "https://github.com/nonsequitur/smex.git" :fetcher git)
|
||||
|
2
recipes/solarized-theme
Normal file
2
recipes/solarized-theme
Normal file
|
@ -0,0 +1,2 @@
|
|||
(solarized-theme :url "https://github.com/bbatsov/solarized-emacs.git" :fetcher git)
|
||||
|
2
recipes/starter-kit
Normal file
2
recipes/starter-kit
Normal file
|
@ -0,0 +1,2 @@
|
|||
(starter-kit :url "https://github.com/technomancy/emacs-starter-kit.git" :fetcher git)
|
||||
|
3
recipes/starter-kit-bindings
Normal file
3
recipes/starter-kit-bindings
Normal file
|
@ -0,0 +1,3 @@
|
|||
(starter-kit-bindings :url "https://github.com/technomancy/emacs-starter-kit.git" :fetcher git :files
|
||||
("modules/starter-kit-bindings.el"))
|
||||
|
3
recipes/starter-kit-eshell
Normal file
3
recipes/starter-kit-eshell
Normal file
|
@ -0,0 +1,3 @@
|
|||
(starter-kit-eshell :url "https://github.com/technomancy/emacs-starter-kit.git" :fetcher git :files
|
||||
("modules/starter-kit-eshell.el"))
|
||||
|
3
recipes/starter-kit-js
Normal file
3
recipes/starter-kit-js
Normal file
|
@ -0,0 +1,3 @@
|
|||
(starter-kit-js :url "https://github.com/technomancy/emacs-starter-kit.git" :fetcher git :files
|
||||
("modules/starter-kit-js.el"))
|
||||
|
3
recipes/starter-kit-lisp
Normal file
3
recipes/starter-kit-lisp
Normal file
|
@ -0,0 +1,3 @@
|
|||
(starter-kit-lisp :url "https://github.com/technomancy/emacs-starter-kit.git" :fetcher git :files
|
||||
("modules/starter-kit-lisp.el"))
|
||||
|
3
recipes/starter-kit-perl
Normal file
3
recipes/starter-kit-perl
Normal file
|
@ -0,0 +1,3 @@
|
|||
(starter-kit-perl :url "https://github.com/technomancy/emacs-starter-kit.git" :fetcher git :files
|
||||
("modules/starter-kit-perl.el"))
|
||||
|
3
recipes/starter-kit-ruby
Normal file
3
recipes/starter-kit-ruby
Normal file
|
@ -0,0 +1,3 @@
|
|||
(starter-kit-ruby :url "https://github.com/technomancy/emacs-starter-kit.git" :fetcher git :files
|
||||
("modules/starter-kit-ruby.el"))
|
||||
|
2
recipes/textile-mode
Normal file
2
recipes/textile-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(textile-mode :url "https://github.com/emacsmirror/textile-mode.git" :fetcher git)
|
||||
|
2
recipes/todochiku
Normal file
2
recipes/todochiku
Normal file
|
@ -0,0 +1,2 @@
|
|||
(todochiku :fetcher wiki)
|
||||
|
2
recipes/twittering-mode
Normal file
2
recipes/twittering-mode
Normal file
|
@ -0,0 +1,2 @@
|
|||
(twittering-mode :url "https://github.com/hayamiz/twittering-mode.git" :fetcher git)
|
||||
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue