forked from dimitri/el-get
-
Notifications
You must be signed in to change notification settings - Fork 0
/
el-get.texi
1269 lines (992 loc) · 43.1 KB
/
el-get.texi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\input texinfo.tex @c -*-texinfo-*-
@c %**start of header
@setfilename el-get.info
@settitle El-Get User Manual
@c @documentencoding utf-8
@c %**end of header
@dircategory Emacs
@direntry
* El-Get: (el-get). Using el-get to manage your Emacs Extensions.
@end direntry
@copying
Copyright @copyright{} 2010, 2011, 2012, 2013 Dimitri Fontaine.
@quotation
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar @email{sam@@hocevar.net}
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
@end quotation
@end copying
@node Top
@top El-Get User Manual
El-Get is an Emacs Extension manager that allows you to install,
update and remove external Emacs Lisp extensions. More importantly,
El-Get will care about initializing installed extensions for you at
Emacs Startup.
@menu
* Introduction::
* Acknowledgments::
* Glossary::
* Installing::
* Usage::
* Setup::
* User Init::
* Recipes::
* Authoring Recipes::
@end menu
@node Introduction
@chapter Introduction
El-Get allows you to install and manage Emacs Lisp code for Emacs. It
supports lots of differents types of sources and is able to install
them, update them and remove them, and more importantly it will init
them for you.
That means it will @code{require} the @code{features} you need,
@code{load} the necessary files, set the @code{Info} paths so that
@kbd{C-h i} shows the new documentation you now depend on, and finally
call your own @code{post-init} function for you to setup the
extension. Or call it a package.
El-Get Version String (@code{M-x el-get-version}) are now inspired by
how Emacs itself numbers its versions. First is the major version
number, then a dot, then the minor version number. The minor version
number is 0 when still developing the next major version. So 3.0 is a
developer release while 3.1 is a stable release.
Please note that this versioning policy has been picked while backing
1.2~dev, so 1.0 was a "stable" release in fact. Ah, history.
El-Get is considered to now have reached a very stable state where it
only receives bug fixes, code refactoring, and new recipes. The
current version is now 5.1, which is stable, and maintained in the
``master'' git branch.
@node Acknowledgments
@chapter Acknowledgments
Dimitri Fontaine started the whole project and still manages the
releases, and sometimes even contribute code and documentation.
Julien Danjou has been a contributor since very early days, about the
first beta tester of the idea, before we really knew how much to
achieve.
Ryan C. Thompson joined and commented some issues, began contributing
and quickly became top-level and most active contributor to the
project, getting a commit bit and some management duties. He manages
tests and issues on github as much as he can spares time to El-Get.
Dave Abrahams contributed lots of code and efforts to make things
right™. He's still using El-Get, but decided to retire from the
project.
Lots of people (more than we can list here) did contribute to El-Get
either recipes, bug fixes or ideas to implement, often with code. That
builds up an awesome community, thanks guys!
@example
~/dev/emacs/el-get git --no-pager shortlog -n -s | wc -l
258
~/dev/emacs/el-get git --no-pager shortlog -n -s | head -15
1058 Dimitri Fontaine
359 Ryan C. Thompson
159 Julien Danjou
110 Dave Abrahams
97 Sébastien Gross
94 Takafumi Arakaki
92 yagnesh రాఘవ
86 Ryan Thompson
73 Rüdiger Sonderfeld
62 David Holm
56 Yakkala Yagnesh Raghava
48 Alex Ott
40 Shigenobu Nishikawa
35 Damien Cassou
23 Reuben Thomas
@end example
@node Glossary
@chapter Glossary
@table @asis
@item Autoload
Delay loading a package definition until its first use.
@item Build
Action that happens at @xref{Glossary - Install}, and @xref{Glossary -
Update}. Packages might skip any @code{build} step entirely. When
given, the build step allows to run system level tools (think
@code{make}), often to produce to derivative files.
@item Byte-Compile
Action to compile Emacs Lisp files so that loading them is
faster. El-Get is able to automatically manage that step at install
and update time so that init time is faster, see @xref{Glossary -
Init}.
@item Dependency
Any El-Get package can depend on some others. At install time, El-Get
will make sure all dependant packages are installed first. At init
time, same thing will happen. Dependency management is solved with a
topological sort so that if you install a package @code{a} that
depends on a package @code{b} that depends on a package @code{c},
El-Get will install @code{c} then @code{b} then @code{a}.
@anchor{Glossary - Init}
@item Init
When you start Emacs you want your packages to get setup and ready to
serve whatever usage you have of this advanced Operating
System. El-Get calls this setup step the @code{init} and will care
about initializing your packages automatically given a @xref{Glossary
- Recipe}.
@anchor{Glossary - Install}
@item Install
El-Get install a package by fetching its sources as described in the
package recipe, then running the build steps if the recipe contains
such.
@item Method
An El-Get method is a backend code providing facilities to fetch,
install, update and remove external code. El-Get currently implements
methods that targets @code{apt-get}, @code{brew}, @code{builtin},
@code{bzr}, @code{cvs}, @code{darcs}, @code{elpa}, @code{emacsmirror},
@code{emacswiki}, @code{fink}, @code{fossil}, @code{git} and
@code{git-svn}, @code{github} @code{github-tar} and @code{github-zip},
@code{go}, @code{hg}, @code{http} @code{http-tar} and @code{http-zip},
@code{pacman} and @code{svn}.
@item Notification
El-Get notifies its user when a package is done installing, updating
or removing. It knows how to use several system level notification
facilities, such as @code{DBUS} or @command{growl}.
@item Package
A package is what El-Get manages for you. It's a set of Emacs Lisp
files (possible a set of a single file, possibly with some Info
documentation and build scripts, etc) that El-Get knows how to fetch
and install, update and remove, and init at Emacs Startup.
@anchor{Glossary - Recipe}
@item Recipe
An El-Get recipe describes a package in terms that allow El-Get to
provide its features against that package. It's easy enough to write
recipes, and fun to share them!
@item Remove
El-Get removes a package by simple removing the directory where the
package is installed. If you want the features of the package to get
unloaded, most often the easier way to do that is to restart Emacs.
@anchor{Glossary - Status}
@item Status
One of @code{available}, @code{installed}, @code{required} or
@code{removed}. When El-Get is asked to install a package, the status
is set to @code{required} before to fetch and build it, so that in
case of error the system knows to try installing again.
@anchor{Glossary - Update}
@item Update
El-Get updates a package in different ways, depending on the package
type and the associated method. In some cases it's not possible to
update a package, like when it switched from @code{svn} to @code{git}
for example.
@end table
@node Installing
@chapter Installing
El-Get comes with a @code{*scratch*}-installer. Ideally you would
install El-Get with El-Get itself, but I couldn't figure out how to do
that, so instead you have to copy and paste the following code into
your @code{*scratch*} buffer and evaluate it:
@example
;; So the idea is that you copy/paste this code into your *scratch* buffer,
;; hit C-j, and you have a working el-get.
(url-retrieve
"https://raw.github.com/dimitri/el-get/master/el-get-install.el"
(lambda (s)
(goto-char (point-max))
(eval-print-last-sexp)))
@end example
To evaluate that code, you place the point at the end of the text
block (just after the last closing paren) and you type @kbd{C-j}.
@menu
* Install the developer version::
* Skip Emacswiki recipes when installing::
* Shallow clone when installing::
@end menu
@node Install the developer version
@section Developer version
The lazy installer uses the default @file{el-get-install.el} file
which targets the @code{stable} branch. To install El-Get directly on
the @code{master} branch, summon the @code{el-get-master-branch}
variable into existence:
@example
;; So the idea is that you copy/paste this code into your *scratch* buffer,
;; hit C-j, and you have a working developer edition of el-get.
(url-retrieve
"https://raw.github.com/dimitri/el-get/master/el-get-install.el"
(lambda (s)
(let (el-get-master-branch)
(goto-char (point-max))
(eval-print-last-sexp))))
@end example
@node Skip Emacswiki recipes when installing
@section Skip Emacswiki recipes when installing
The installer will fetch from emacswiki all the recipe available there
and install a local copy of those in your system automatically. Should
you want to disable that feature, the following snippet is showing how
to:
@example
;; So the idea is that you copy/paste this code into your *scratch* buffer,
;; hit C-j, and you have a working el-get (without emacswiki automatic
;; recipes).
(url-retrieve
"https://raw.github.com/dimitri/el-get/master/el-get-install.el"
(lambda (s)
(let (el-get-install-skip-emacswiki-recipes)
(goto-char (point-max))
(eval-print-last-sexp))))
@end example
@node Shallow clone when installing
@section Shallow clone when installing
@code{--depth 1}
Should you want to run @code{git-clone} with @code{--depth 1} when
installing El-Get itself, the following snippet is showing how to:
@example
(url-retrieve
"https://raw.github.com/dimitri/el-get/master/el-get-install.el"
(lambda (s)
(let (el-get-install-shallow-clone)
(goto-char (point-max))
(eval-print-last-sexp))))
@end example
@node Usage
@chapter Usage
Now that El-Get is installed, simply use @code{M-x el-get-install} and
pick whatever package you need.
Here's a list of commands provided by El-Get:
@table @code
@item el-get-list-packages
List all available packages with their names, @xref{Glossary -
Status}, and description. Name and description are taken from the
recipe file of the package.
You can find which recipe file is used for a given package using
@code{el-get-find-recipe-file} or @code{el-get-describe}.
@item el-get-describe
Offers a full text description of a package with buttons to install,
remove and update, and with the recipe content.
@item el-get-find-recipe-file
Find the recipe file for given recipe, prompted.
@item el-get-install
Install given package, as prompted.
@item el-get-init
Initialize given package, as prompted. If some user code is setup to be
run at initialisation, it will get run by this command. See @xref{User
Init}.
@item el-get-update
Update a given package, as prompted. In some cases a straight update
is not possible (recipe switched from CVS to git is a common
reason). El-Get will try and detect such cases and do
@code{el-get-remove} then @code{el-get-install} if necessary.
Please realise that updating packages might break your current package
setup and that you will have to revisit your setup accordingly.
@item el-get-remove
Remove given package, as prompted.
@item el-get-self-update
Update El-Get itself, and force that update to be synchronous. That
allows to make sure you're not updating El-Get code while trying to
update or install some other package at the same time.
@item el-get-update-all
Will update all packages that have the @code{installed} status in your
status file. Before the update you will be prompted for confirmation
that you wish to proceed.
Beware that using this function can lead to hours of settings review:
more often than not updating a package requires some adjustments to
your setup. Updating all of them at once will require reviewing
almost all your setup.
@item el-get-reload
Reload the given package files. Happens automatically at update time
too.
@end table
@node Setup
@chapter Setup
El-Get setup can be very simple or arbitrarily complex. This chapter
explains how to do the very basic setup, which allow for using
@code{M-x el-get-install} and friends, then how to get a more involved
setup.
@menu
* Basic Setup::
* The el-get function::
* Distributed Setup::
* The el-get-bundle macro::
* Setup Customization::
@end menu
@node Basic Setup
@section Basic Setup
You can then arrange to have El-Get part of your setup, so that at
next emacs startup the installed packages are initialized.
@example
(add-to-list 'load-path "~/.emacs.d/el-get/el-get")
(unless (require 'el-get nil t)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.github.com/dimitri/el-get/master/el-get-install.el")
(goto-char (point-max))
(eval-print-last-sexp)))
(add-to-list 'el-get-recipe-path "~/.emacs.d/el-get-user/recipes")
(el-get 'sync)
@end example
The @code{el-get} command will check that each and every package is
installed on your system (in @code{el-get-dir} and if that's not the
case, it will actually install it. Then, it will init the packages:
that means caring about the @code{load-path}, the
@code{Info-directory-list} (and dir texinfo menu building) the loading
of the emacs-lisp files, and finally it will require the features or
eval the package @code{autoloads}.
This usage is pretty simple to setup and use, but fails to cater with
more complex setups involving multiple deployments (home and work
laptop would be a classic example). El-Get fully supports that
distributed setup, though, and this chapter explain how.
@node The el-get function
@section The el-get function
Ensure that packages have been downloaded once and init them as needed.
This will not update the sources by using @code{apt-get install} or
@command{git pull}, but it will ensure that:
@itemize @bullet
@item the packages have been installed
@item load-path is set so their elisp files can be found
@item Info-directory-list is set so their info files can be found
@item Autoloads have been prepared and evaluated for each package
@item Any post-installation setup (e.g. `(require 'feature)') happens
@end itemize
When @var{sync} is @code{nil} (the default), all installations run
concurrently, in the background.
When @var{sync} is @code{sync}, each package will be installed
synchronously, and any error will stop it all.
Please note that the @code{el-get-init} part of @code{el-get} is
always done synchronously. There's @code{byte-compile} support though,
and the packages you use are welcome to use @code{autoload} too. You
can also force your setup to be loaded lazily with the
@code{el-get-is-lazy} variable.
@code{PACKAGES} is expected to be a list of packages you want to
install or init. When @code{PACKAGES} is omited (the default), the
list of already installed packages is considered.
@node Distributed Setup
@section Distributed Setup
When you are sharing your emacs setup between several machines (work
and home destops, laptop, etc); it's usual to manage your
@code{.emacs.d} setup in a distributed repository (such as
@code{git}). El-Get then provides an easy canonical list of packages
you depend on to run emacs, and this documentation is usable
as-is. It is recommended that you not store the El-Get tree in git,
however; to prevent this, so you can add a pattern @code{/el-get} to
@code{.emacs.d/.gitignore}.
@example
(add-to-list 'load-path "~/.emacs.d/el-get/el-get")
(require 'el-get)
;; local sources
(setq el-get-sources
'((:name magit
:after (global-set-key (kbd "C-x C-z") 'magit-status))
(:name asciidoc
:type elpa
:after (progn
(autoload 'doc-mode "doc-mode" nil t)
(add-to-list 'auto-mode-alist '("\\.adoc$" . doc-mode))
(add-hook 'doc-mode-hook
'(lambda ()
(turn-on-auto-fill)
(require 'asciidoc)))))
(:name lisppaste :type elpa)
(:name emacs-goodies-el :type apt-get)))
(setq my-packages
(append
'(cssh el-get switch-window vkill google-maps nxhtml xcscope yasnippet)
(mapcar 'el-get-source-name el-get-sources)))
(el-get 'sync my-packages)
@end example
Please note that when you unreference a package from
@code{my-packages}, it remains locally installed.
Going one step further with the idea of a canonical list, el-get
provides the command @code{el-get-cleanup}, which will remove all
packages absent from @code{my-packages}. This allows, in effect, to
put under version control only the user init file, instead of the
whole @code{.emacs.d} directory, and still enjoy a truly portable
emacs configuration.
In the code example above, replace the last line with the following:
@example
(el-get-cleanup my-packages)
(el-get 'sync my-packages)
@end example
You can also use @code{el-get-bundle} macro as a syntactic sugar to
specify a local source to install. With this macro, nothing other
than specified packages is installed.
@example
(add-to-list 'load-path "~/.emacs.d/el-get/el-get")
(require 'el-get)
;; packages from recipe files
(el-get 'sync
'(cssh el-get switch-window vkill google-maps nxhtml xcscope yasnippet))
;; local sources
(el-get-bundle magit
(global-set-key (kbd "C-x C-z") 'magit-status))
(el-get-bundle elpa:asciidoc
(autoload 'doc-mode "doc-mode" nil t)
(add-to-list 'auto-mode-alist '("\\.adoc$" . doc-mode))
(add-hook 'doc-mode-hook
'(lambda ()
(turn-on-auto-fill)
(require 'asciidoc))))
(el-get-bundle elpa:lisppaste)
(el-get-bundle apt-get:emacs-goodies-el)
@end example
@node The el-get-bundle macro
@section The el-get-bundle macro
The macro @code{el-get-bundle} is a syntactic sugar which allows you to
tell El-Get to install some package with a local source definition and
initialization code for the package. It is called in a form
@code{(el-get-bundle @var{package} @var{properties} @var{code})}, where
@var{package} specifies a package name, @var{properties} specifies a
local recipe definition and @var{code} specifies initialization code.
@subsection Just install some package
To install a package whose source is already defined in a recipe file,
use @code{el-get-bundle} macro with the package name.
@example
(el-get-bundle color-moccur)
@end example
This is essentially equivalent to the following code.
@example
(el-get 'sync 'color-moccur)
@end example
@subsection Install some package with requiring it
If you also want to @code{require} the package, use
@code{el-get-bundle!} macro.
@example
(el-get-bundle! color-moccur)
@end example
When the name of the feature you require is different from the package
name (the recipe name), use @code{@var{feature} in @var{package}}
form.
@example
(el-get-bundle! yaicomplete in github:tarao/elisp)
@end example
If you wish to @code{require} more than one feature, then put them in a
@code{:features} property.
@example
(el-get-bundle github:tarao/elisp
:features (yaicomplete mode-line-color))
@end example
@subsection Install some package and configure it
You can write initalization code after the package name.
@example
(el-get-bundle anything
(global-set-key (kbd "C-x b") #'anything-for-files))
@end example
You can provide multiple initialization code for a single package by
writing @code{el-get-bundle} macro call may times. Each initialization
code is evaluated when the corresponding @code{el-get-bundle} macro call
is evaluated.
Initialization code is automatically compiled when they are evaluated
for the first time (after you modified the file enclosing the code) if
@code{el-get-bundle-byte-compile} is non-nil. The initialization code
is saved to a file in @code{el-get-bundle-init-directory} together
with a compiled version.
Note that you should not call functions or refer to variables defined
in the package if the package is going to be autoloaded. In such
case, you should use @code{with-eval-after-load} macro.
@example
(el-get-bundle anything
(global-set-key (kbd "C-x b") #'anything-for-files))
(with-eval-after-load 'anything
;; referring to `anything-map' requires "anything.el" to be loaded
(define-key anything-map (kbd "M-n") #'anything-next-source)
(define-key anything-map (kbd "M-p") #'anything-previous-source))
@end example
If you want the form passed to @code{with-eval-after-load} to be
compiled together with the initialization code, you can use
@url{https://github.com/tarao/with-eval-after-load-feature-el,tarao's
@code{with-eval-after-load-feature}} instead or you will get
"reference to free variable" warnings during the compilation.
@example
(el-get-bundle with-eval-after-load-feature)
(el-get-bundle anything
(global-set-key (kbd "C-x b") #'anything-for-files)
(with-eval-after-load-feature 'anything
;; referring to `anything-map' requires "anything.el" to be loaded
(define-key anything-map (kbd "M-n") #'anything-next-source)
(define-key anything-map (kbd "M-p") #'anything-previous-source)))
@end example
@subsection Pass options to package source definitions
If you want to override a package source definition in a recipe file or
define a new definition, you can pass a property list after the package
name.
For example, if you want to install @code{zenburn-theme} but want to
use other version than El-Get's default recipe, you can reuse the
default recipe with overriding @code{:url} option.
@example
(el-get-bundle zenburn-theme
:url "http://raw.github.com/bbatsov/zenburn-emacs/master/zenburn-theme.el"
(load-theme 'zenburn t))
@end example
If you want to define a new package source, then supply full options.
@example
(el-get-bundle! zlc
:type github :pkgname "mooz/emacs-zlc"
:description "Provides zsh like completion for minibuffer in Emacs"
:website "http://d.hatena.ne.jp/mooz/20101003/p1")
@end example
The property @code{:type} is required if the package source is already
defined but you don't reuse it. Otherwise, if the package source is not
defined yet, you can omit @code{:type} property as long as it can be
guessed from @code{:url}.
@example
(el-get-bundle! zlc :url "http://github.com/mooz/emacs-zlc.git")
;; equivalent to
;; (el-get-bundle! zlc :type git :url "http://github.com/mooz/emacs-zlc.git")
@end example
For further information on available properties for a recipe source,
@xref{Recipe format}.
@subsection Syntax sugars for package source definitions
There are some ways to specify package source options by package name
modifiers. With these modifiers, you can omit @code{:type} property.
@table @code
@item @var{owner}/
Specifies a github owner name.
@item gist:@var{id}
Specifies a gist ID.
@item @var{type}:
Specifies a type for the package.
@end table
@example
(el-get-bundle tarao/tab-group)
;; equivalent to
;; (el-get-bundle tab-group :type github :pkgname "tarao/tab-group")
(el-get-bundle! gist:4362564:init-loader)
;; equivalent to
;; (el-get-bundle! init-loader :type git :url "http://gist.github.com/4362564.git")
(el-get-bundle elpa:undo-tree)
;; equivalent to
;; (el-get-bundle undo-tree :type elpa)
@end example
@subsection Customization
@table @code
@item el-get-bundle-init-dir
Directory where a copy of initialization code specified in a
@code{el-get-bundle} macro call and its byte-compiled version are
saved. Defaults to @file{~/.emacs.d/el-get/bundle-init/}.
@item el-get-bundle-byte-compile
Whether to compile initialization code in a @code{el-get-bundle} macro
call. Defaults to @code{t}.
@end table
@node Setup Customization
@section Setup Customization
Even though the defaults that are provided by El-Get provide all that
you need to get it working, there may be a reason to manually define
certain settings, particularly for portability.
@table @code
@item el-get-dir
Path where packages are installed. Defaults to
@file{~/.emacs.d/el-get/}.
@item el-get-install-dir
Path for the @code{el-get} package. Defaults to
@file{~/.emacs.d/el-get/el-get}.
@item el-get-install-branch
If this is set, El-Get will be installed using the target
@code{branch}. This takes precedence over setting
@code{el-get-master-branch} in the installation settings, see
@xref{Installing}.
@item el-get-git-install-url
Use this to specify your own fork of El-Get for installation.
@item el-get-recipe-path-elpa
This directory stores a local list of ELPA recipes.
@file{~/.emacs.d/el-get/el-get/recipes/elpa}
@item el-get-recipe-path-emacswiki
As above for ELPA, this directory stores a local list of emacswiki
recipes. Defaults to
@file{~/.emacs.d/el-get/el-get/recipes/emacswiki/}.
@item el-get-allow-insecure
This determines whether or not El-Get will attempt to install packages
over insecure connections; setting it to nil (recommended) will cause
it to abort upon any install or update operation which uses an
unencrypted URL.
@end table
@node User Init
@chapter User Init
The main task performed by El-Get is package initialization at Emacs
startup. It will care about all of them, their dependencies, and call
code provided by the recipe author. You can add your own setup code
and register it in a way that El-Get will evaluate it at the right
time.
The package setup can either go into the @code{:after} property, or in
a file named @file{init-package.el} in
@code{el-get-user-package-directory}. Any such named file will get
automatically loaded by El-Get at package init time, if it exists.
@menu
* Before and After properties ::
* Initialization files::
@end menu
@node Before and After properties
@section Before and After properties
The @code{:before} and @code{:after} properties are evaluated by
El-Get in the package initialization sequence.
@table @code
@item :before
This should be a lisp form to evaluate after both the
@code{Info-directory-list} and the @code{load-path} variables have
been taken care of, but before loading the package or any further
action from @code{el-get-init}. It will be run with the variable
@code{default-directory} set to the package directory.
@item :after
This should be a lisp form to evaluate after loading the package.
This function is registered for @code{eval-after-load} against the
recipe library by @code{el-get-init} once the @code{:load} and
@code{:features} have been setup. It will be run with the variable
@code{default-directory} set to the package directory.
@end table
Here's a couple of examples of package recipes that are using
@code{:before} and @code{:after} properties:
@example
(:name asciidoc
:type elpa
:after (lambda ()
(autoload 'doc-mode "doc-mode" nil t)
(add-to-list 'auto-mode-alist '("\\.adoc$" . doc-mode))
(add-hook 'doc-mode-hook '(lambda ()
(turn-on-auto-fill)
(require 'asciidoc)))))
(:name anything
:features anything-config
:before (global-set-key (kbd "M-s a") 'dim:anything-occur)
:after (setq w3m-command nil))
@end example
@node Initialization files
@section Initialization files
El-Get will see if a file named @file{init-package.el} exists in the
directory pointed at by the @code{el-get-user-package-directory}
variable. When this variable is not nil and if such a file does exist
in the directory, then El-Get will load the user init file for
@var{package}.
The initialization file is loaded at the same time as the
@code{:after} property would have be run, and just before it if you
provide both.
El-Get automatically byte compiles the init file as needed and load
the compiled version.
@node Recipes
@chapter Recipes
All of El-Get behavior is controled with recipes that you can share,
download, update and author. This chapter explain how to manage your
recipes and how to author them and ship them.
Recipes are a list of properties, which are documented in the variable
@var{el-get-sources}.
@menu
* Organizing recipes::
* Getting more recipes::
* Overriding package files::
@end menu
@node Organizing recipes
@section Organizing recipes
El-Get needs to find a package recipe to be able to install or update
it. After that the recipe content is saved in the status file and
cached, so that you can still start Emacs even if you remove the
recipe file.
The variable @code{el-get-recipe-path} is a list of directory paths
to search for recipe files, in order. The recipe for a package
@code{example} must be named @code{example.rcp}. The first file named
that way in the @code{el-get-recipe-path} variable is used as the
recipe. If you need to change it, you should do so immediately before
running @code{el-get}; see the example in @xref{Basic Setup}.
To check which recipe is used for a given package, use either the
@code{M-x el-get-describe} or @code{M-x el-get-find-recipe-file}
command.
This organisation with several path allow you to setup El-Get to use
its own recipes, recipes automatically created from online resources
(such as Emacswiki), and your own local recipes.
As it's easy for El-Get to use your own recipes in the exact same way
than it uses its own recipes, it allows you to share them very
easily. Send the file to a friend and have it store it at the right
place.
It's also possible to setup @code{el-get-sources} with recipe
information. As long as the @code{type} property is not filled in
@code{el-get-sources}, El-Get will first find the recipe as usual and
then merge the recipe content with the recipe skeleton provided by the
matching @code{el-get-sources} stanza.
El-Get also supports full User Init files, see @xref{User Init}.
@node Getting more recipes
@section Getting more recipes
The command @code{M-x el-get-emacswiki-refresh} downloads the list of
Emacs Lisp files available at EmacsWiki. El-Get is able to
automatically install any such file at the right place in
@code{el-get-dir}. The integration of an automatically generated
recipe is often not enough, you often have to add some initialisation
code. See @xref{User Init}.
The command @code{el-get-elpa-build-local-recipes} downloads the list
of Emacs Lisp Packages from the ELPA archives you have setup, and make
them automatically available for El-Get.
@node Overriding package files
@section Overriding package files
El-Get manages the files associated with a package. You can browse
those files using the @code{el-get-cd} function. It's possible to hack
on those files, be aware that doing so might break your setup
capability to handle upgrades.
@node Authoring Recipes
@chapter Authoring Recipes
Authoring recipes is often very easy. El-Get goal is to adapt to any
Emacs Lisp code and distribution you can find out there in the wild,
so the list of features supported is quite large. Simple cases are
very simple, though.
If you want to submit recipes as pull request, please make sure to run
recipe checker (@pxref{Recipe checker}) and paste the result in the pull
request comment.
@menu
* Recipe format::
* Dependencies::
* Byte Compilation::
* Autoloads::
* Build::
* Recipe checker::
@end menu
@node Recipe format
@section Recipe format
The recipe for the hypothetical package named @code{el-get-example}
must be provided in a file named @file{el-get-example.rcp}. This file
will be searched for as described in @xref{Organizing recipes}. The
variable @code{el-get-sources} is also considered as a recipe source,
as detailed in @xref{Organizing recipes}.
A recipe file contains a lisp property list. Accepted properties are
described in the documentation for the variable @code{el-get-sources},
and their possible values are described at the same place.
If your property list is missing the @code{:type} property, then it's
merged with the recipe one, so that you can override any definition
provided by @code{el-get} recipes locally.
@table @code
@item :name
The name of the package. It can be different from the name of the
directory where the package is stored (after a @code{git clone} for
example), in which case a symlink will be created.
@item :depends
A single package name, or a list of package names, on which the
package depends. All of a packages dependencies will be installed
before the package is installed.
@item :builtin
A string containing the Emacs version (see @var{emacs-major-version}
variable) from which Emacs includes the recipe as a builtin. For
example, @file{package.el} (the implementation of ELPA) is part of
Emacs 24 but needs an external recipe for previous major versions.
Unlike the builtin @code{:type} no @code{:build} or @code{:info}
properties are executed if this matches.
@item :pkgname
The name of the package for the underlying package management system
(apt-get, fink or pacman, also supported by github and emacsmirror),
which can be different from the Emacs package name.
@item :type
The type of the package, currently el-get offers support for apt-get,
elpa, git, github, emacsmirror, git-svn, bzr svn, cvs, darcs, fink,
ftp, emacswiki, http-tar, pacman, hg and http. You can easily support
your own types here, see @var{el-get-methods}.
@item :branch
Which branch to fetch when using git (and by extension, github and
emacsmirror, which are derived from git). Also supported in the
installer in el-get-install.
@item :url
Where to fetch the package, only meaningful for git and http types.
@item :username, :pkgname
For the github type, these specify the user name and repo name to
clone from Github. For example, for el-get, the user name would be
@code{"dimitri"} , and the repo name would be @code{"el-get"} . As
described above, the @code{:pkgname} property is only required if the
repo name on Github differs from the Emacs package name. Note that the
emacsmirror type is just like the github type with @code{:username}
set to @code{"emacsmirror"} .
@item :build