Commit Graph

1585 Commits

Author SHA1 Message Date
Ryan C. Thompson
d9d14a71bd Merge branch 'more-github-recipes'
Conflicts:
	recipes/maxframe.rcp
2012-03-05 08:49:03 -08:00
Ryan C. Thompson
676fa8f71f Merge branch 'prevent-notify-error' 2012-03-05 08:47:00 -08:00
Ryan C. Thompson
6849fbf18b Merge branch 'fix-dir-locals' 2012-03-05 08:45:09 -08:00
Ryan C. Thompson
b997bce927 Merge branch 'load-path-nil' 2012-03-05 08:42:58 -08:00
Ryan C. Thompson
3ab59b16d0 Grammar fix in assertion comment 2012-03-05 08:42:38 -08:00
Ryan Thompson
52f5d68e53 Merge pull request #635 from DarwinAwardWinner/test-improvements
Test improvements
2012-03-04 19:12:34 -08:00
Ryan C. Thompson
4ce49b073d Add information about test-recipe.sh 2012-03-04 12:40:16 -08:00
Ryan C. Thompson
80de27bfeb Minor fix for test-all-recipes.sh
It had "exec" at the beginning of the command that it tolde the user
to run, which would replace the user's running shell. This is now
removed.
2012-03-04 12:39:59 -08:00
Ryan C. Thompson
4480375f12 Add information about run-test.sh to test/README 2012-03-04 12:35:46 -08:00
Ryan C. Thompson
5db03e885b More intelligent test file guessing.
Now you can say "test/run-test.sh 303" to run the test
"test/el-get-issue-303.el"

Also, give an explicit error message when a test file does not exist.
2012-03-04 12:35:46 -08:00
Ryan C. Thompson
d564974ca2 Remove extra load-path from test 310
It was harmless but unnecessary.
2012-03-04 12:14:22 -08:00
Ryan C. Thompson
70990726c4 Enable debug on error in interactive tests 2012-03-04 12:14:22 -08:00
Dimitri Fontaine
8f32acb5ed Per #630 move qml-mode to :type github 2012-03-04 13:52:06 +01:00
Dimitri Fontaine
9d1ea840a8 Merge pull request #633 from tkf/color-theme-website
Add :website property of color-theme.rcp
2012-03-04 04:45:41 -08:00
Takafumi Arakaki
24bc27930f Add Add test for issue #632 2012-03-04 00:16:19 +01:00
Takafumi Arakaki
0aaeb4bdab Do not add package dir to load-path if :load-path is nil
Fixes #632.
2012-03-03 23:41:36 +01:00
Takafumi Arakaki
fca767495a Add :website property of color-theme.rcp 2012-03-03 22:57:00 +01:00
Dimitri Fontaine
13c7db95ee Merge pull request #630 from illusionoflife/master
Hello. Please pull in qml-mode recipie. qml-mode project seems unmantained, but I find it still nice.
2012-03-03 11:48:43 -08:00
Ryan Thompson
20909f89df Merge pull request #631 from tkf/ibus-0.3.2
Update ibus.rcp to use version 0.3.2
2012-03-03 09:45:35 -08:00
Takafumi Arakaki
2f98061248 Update ibus.rcp to use version 0.3.2
See: ibus.el Version 0.3.2 released : ibus.el
https://launchpad.net/ibus.el/+announcement/9685
2012-03-03 16:39:36 +01:00
illusionoflife
290e2abc5d Added qml-mode recipe 2012-03-03 11:14:33 +04:00
Ryan C. Thompson
0013603607 Add explanation for use of write-contents-functions 2012-03-02 15:53:09 -08:00
Ryan C. Thompson
d6689b391a Fix #628 2012-03-02 15:46:58 -08:00
Ryan C. Thompson
b2a12748e9 Add test for #628 2012-03-02 15:46:53 -08:00
Ryan C. Thompson
da74bc2565 Fix test for #613 2012-03-02 15:38:40 -08:00
Ryan C. Thompson
0a3c869bad Merge branch 'autoload-pre-init'
Conflicts:
	recipes/wrap-region.rcp
2012-03-02 15:22:04 -08:00
Ryan Thompson
b80409eedc Merge pull request #617 from DarwinAwardWinner/method-guess-website
Method guess website
2012-03-02 15:20:32 -08:00
Ryan Thompson
e5f02aa0ea Merge pull request #621 from tkf/ask-el-get-update-all
Add yes-or-no prompt to el-get-update-all
2012-03-02 15:08:36 -08:00
Ryan C. Thompson
22cdc93c2a Merge branch 'tkf-hg-checkout-property' 2012-02-29 14:21:31 -08:00
Ryan C. Thompson
9ff04b3810 Ensure el-get-checksum returns the checksum
Previously it copied it to the kill-ring, but sometimes did not return
it to the caller.
2012-02-29 14:21:01 -08:00
Ryan C. Thompson
c3964826f7 Add test for hg checksum functionality 2012-02-29 14:19:51 -08:00
Takafumi Arakaki
0318063924 Improve el-get-hg-compute-checksum 2012-02-29 20:05:49 +01:00
Ryan C. Thompson
b7b63dfcb4 Convert more recipes to github type
This automated conversion 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/([A-Za-z0-9.-]+)/([A-Za-z0-9.-]+)\.git"}{$1:pkgname "$2/$3"}' *.rcp
    # Change :type from git to github if recipe has a :pkgname property
    for x in *.rcp; do if pcregrep -q ":type\s+git\b" $x && grep -q ":pkgname" $x; then perl -iBAK2 -lape 's/:type\s+git(hub)?\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-29 09:31:09 -08:00
Ryan Thompson
c00977647b Merge pull request #623 from tkf/autoload-expand-region
Add an autoload to expand-region.rcp
2012-02-29 09:13:30 -08:00
Takafumi Arakaki
f5c8cc4dd2 Add optional no-prompt argument to el-get-update-all
as @DarwinAwardWinner suggested
2012-02-29 18:09:04 +01:00
Ryan C. Thompson
5fbfb3caad Remove global settings from .dir-locals.el
Some of the settings in .dir-locals.el were modifying variables or
properties that are not buffer-local. This commit attempts to fix that
while preserving the same functionality as much as possible.

Should fix #618.
2012-02-29 08:52:27 -08:00
Takafumi Arakaki
bc9d2e4e01 Add note on el-get-update-all prompt to change log 2012-02-29 17:14:55 +01:00
Ryan Thompson
8f9906a332 Merge pull request #620 from noisebeuter/master
Fix source type for processing mode
2012-02-29 08:02:03 -08:00
Takafumi Arakaki
3138b7286b Add an autoload to expand-region.rcp 2012-02-29 16:32:14 +01:00
Takafumi Arakaki
6e1ebccaac Add yes-or-no prompt to el-get-update-all 2012-02-29 14:50:27 +01:00
Marco Süß
856f0ddc7e fix repo type 2012-02-29 14:27:04 +01:00
Takafumi Arakaki
978737581f Fixed: el-get-hg-pull fails to update when none is pulled 2012-02-29 14:12:23 +01:00
Takafumi Arakaki
d6a0b8ded3 Fixed: pull-args is not used in el-get-hg-pull 2012-02-29 13:24:18 +01:00
Takafumi Arakaki
b1796fd5b1 Implement support for :checkout property in hg recipes 2012-02-29 12:54:48 +01:00
Ryan C. Thompson
b0ba0acebb Merge branch 'cvs-proxy' 2012-02-28 18:23:01 -08:00
Ryan C. Thompson
7235faa793 Add CVS proxy note to change log 2012-02-28 18:22:15 -08:00
Ryan C. Thompson
48e3dcea56 Merge branch 'tkf-wrap-region-use-elpa' 2012-02-28 18:11:01 -08:00
Ryan C. Thompson
cdab0f622f Autoload wrap-region before init 2012-02-28 18:10:21 -08:00
Ryan C. Thompson
9b350be579 Add website guessers to some methods 2012-02-28 17:58:44 -08:00
Ryan C. Thompson
59c8c440e7 Add support for method website guessers 2012-02-28 17:58:28 -08:00