Commit Graph

4 Commits

Author SHA1 Message Date
Rüdiger Sonderfeld
410c13dd8e recipes/swank-js: Use official repo instead of outdated one.
Signed-off-by: Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2012-09-11 13:39:15 +02:00
Rüdiger Sonderfeld
e1e0ebb419 recipes/swank-js: Recipe broken: swank-js.el is now slime-js.el
The package does not contain a swank-js.el and the Emacs lisp part is
in slime-js.el.  But the package should not be loaded by el-get but
instead by using `slime-setup'.  That's why the :features should be
nil.  I do not know if there is a way to add swank-js to the
`slime-setup-contribs' without modifying the slime setup.

With the current configuration swank-js can be loaded with the
following entries in `el-get-sources':

    (:name swank-js
           :after (progn (add-to-list 'slime-setup-contribs 'slime-js)))

    (:name slime
           :after (progn
                    (setq slime-setup-contribs
                          (append slime-setup-contribs
                                  '(slime-banner slime-references slime-fancy)))
                    (slime-setup slime-setup-contribs)))

This is certainly not the best way to do it and it requires that
swank-js does *not* depend on slime.

I also removed :website because it is no longer needed by the github
recipe type.

Signed-off-by: Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2012-09-11 12:49:37 +02: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
Takafumi Arakaki
19ac0c0ec8 Add 35 recipe files 2012-02-12 02:00:31 +01:00