Commit Graph

6 Commits

Author SHA1 Message Date
Ryan C. Thompson
112a6c2e38 Merge branch 'lazy-fix' into recipe-auto-lambda
Conflicts:
	el-get.el
	recipes/clevercss.rcp
	recipes/coffee-mode.rcp
	recipes/full-ack.rcp
	recipes/mustache-mode.rcp
	recipes/n3-mode.rcp
	recipes/pylookup.rcp
	recipes/rhtml-mode.rcp
	recipes/sauron.rcp
	recipes/yaml-mode.rcp
2012-02-23 15:05:49 -08:00
Ryan C. Thompson
7a4490fae2 Eliminate lambdas from :post-init in recipes 2012-02-22 14:46:21 -08:00
Ryan C. Thompson
7d15faed65 Convert all github recipes to github type
This automated convertsion was done with the following sequence of
commands:

cd recipes
 # Replace :url with :pkgname "user/repo"
perl -iBAK -lape 's{^(\s*):url\s+".*github.com/([^/]+)/([^.]+)\.git"}{$1:pkgname "$2/$3"}' *.rcp
 # Change :type from git to github if recipe has a :pkgname property
for x in *.rcp; do if grep -q ":type.*git" $x && grep -q ":pkgname" $x; then perl -iBAK2 -lape 's/:type\s+git\b/:type github/g' $x; fi; done
 # Clean up backup files
rm -f *BAK *BAK2
cd ..

These commands may be repeated at any time in the future to convert
newly-added recipes.
2012-02-21 15:03:03 -08:00
Kyle Hargraves
0b2df264e2 use autoloads for all color themes 2011-10-16 12:33:53 -05:00
Kyle Hargraves
3d350c2823 color themes depend on color-theme and are automatically required
Autoloads are rarely (if ever?) present for color themes. color-theme-zenburn
installs its own in the :post-init hook, but that's not typically done for el-get
packages, so I've just added a :load or :feature property (depending on whether
the library provides a feature).

For color-theme-twilight, the current version available automatically installs
itself as the current color theme, so the :feature property is omitted. I have a
pull request in to the project, so if that's fixed, I'll add it.
2011-10-14 13:59:54 -05:00
Dimitri Fontaine
6d86094816 Rename recipe files from *.el to *.rcp, assorted changes. 2011-09-06 21:22:46 +02:00