[geany/geany] 961ccf: Migrated some old-style build_settings to new-style build-menu

Kernc git-noreply at xxxxx
Fri Nov 28 08:09:41 UTC 2014


Branch:      refs/heads/master
Author:      Kernc <kerncece at gmail.com>
Committer:   Kernc <kerncece at gmail.com>
Date:        Fri, 28 Nov 2014 08:09:41 UTC
Commit:      961ccf38c5a50fbdfa9eea0ca481ac8a3a04f694
             https://github.com/geany/geany/commit/961ccf38c5a50fbdfa9eea0ca481ac8a3a04f694

Log Message:
-----------
Migrated some old-style build_settings to new-style build-menu


Modified Paths:
--------------
    data/filetypes.c
    data/filetypes.cpp
    data/filetypes.haskell
    data/filetypes.python
    data/filetypes.ruby
    data/filetypes.sh

Modified: data/filetypes.c
17 lines changed, 9 insertions(+), 8 deletions(-)
===================================================================
@@ -78,18 +78,19 @@ context_action_cmd=
 # 0 is spaces, 1 is tabs, 2 is tab & spaces
 #type=1
 
-[build_settings]
-# %f will be replaced by the complete filename
-# %e will be replaced by the filename without extension
-# (use only one of it at one time)
-compiler=gcc -Wall -c "%f"
-linker=gcc -Wall -o "%e" "%f"
-run_cmd="./%e"
-
 [build-menu]
 # %f will be replaced by the complete filename
 # %e will be replaced by the filename without extension
 # (use only one of it at one time)
+FT_00_LB=_Compile
+FT_00_CM=gcc -Wall -c "%f"
+FT_00_WD=
+FT_01_LB=_Build
+FT_01_CM=gcc -Wall -o "%e" "%f"
+FT_01_WD=
 FT_02_LB=_Lint
 FT_02_CM=cppcheck --language=c --enable=warning,style --template=gcc "%f"
 FT_02_WD=
+EX_00_LB=_Execute
+EX_00_CM="./%e"
+EX_00_WD=


Modified: data/filetypes.cpp
17 lines changed, 9 insertions(+), 8 deletions(-)
===================================================================
@@ -50,18 +50,19 @@ context_action_cmd=
 # 0 is spaces, 1 is tabs, 2 is tab & spaces
 #type=1
 
-[build_settings]
-# %f will be replaced by the complete filename
-# %e will be replaced by the filename without extension
-# (use only one of it at one time)
-compiler=g++ -Wall -c "%f"
-linker=g++ -Wall -o "%e" "%f"
-run_cmd="./%e"
-
 [build-menu]
 # %f will be replaced by the complete filename
 # %e will be replaced by the filename without extension
 # (use only one of it at one time)
+FT_00_LB=_Compile
+FT_00_CM=g++ -Wall -c "%f"
+FT_00_WD=
+FT_01_LB=_Build
+FT_01_CM=g++ -Wall -o "%e" "%f"
+FT_01_WD=
 FT_02_LB=_Lint
 FT_02_CM=cppcheck --language=c++ --enable=warning,style --template=gcc "%f"
 FT_02_WD=
+EX_00_LB=_Execute
+EX_00_CM="./%e"
+EX_00_WD=


Modified: data/filetypes.haskell
13 lines changed, 6 insertions(+), 7 deletions(-)
===================================================================
@@ -72,17 +72,16 @@ context_action_cmd=
 # 0 is spaces, 1 is tabs, 2 is tab & spaces
 #type=1
 
-[build_settings]
-# %f will be replaced by the complete filename
-# %e will be replaced by the filename without extension
-# (use only one of it at one time)
-compiler=ghc --make "%f"
-run_cmd="./%e"
-
 [build-menu]
 # %f will be replaced by the complete filename
 # %e will be replaced by the filename without extension
 # (use only one of it at one time)
+FT_00_LB=_Compile
+FT_00_CM=ghc --make "%f"
+FT_00_WD=
 FT_02_LB=_Lint
 FT_02_CM=hlint "%f"
 FT_02_WD=
+EX_00_LB=_Execute
+EX_00_CM="./%e"
+EX_00_WD=


Modified: data/filetypes.python
13 lines changed, 6 insertions(+), 7 deletions(-)
===================================================================
@@ -61,18 +61,17 @@ context_action_cmd=
 # 0 is spaces, 1 is tabs, 2 is tab & spaces
 #type=0
 
-[build_settings]
-# %f will be replaced by the complete filename
-# %e will be replaced by the filename without extension
-# (use only one of it at one time)
-compiler=python -m py_compile "%f"
-run_cmd=python "%f"
-
 [build-menu]
 # %f will be replaced by the complete filename
 # %e will be replaced by the filename without extension
 # (use only one of it at one time)
+FT_00_LB=_Compile
+FT_00_CM=python -m py_compile "%f"
+FT_00_WD=
 FT_02_LB=_Lint
 FT_02_CM=pep8 --max-line-length=80 "%f"
 FT_02_WD=
 error_regex=(.+):([0-9]+):([0-9]+)
+EX_00_LB=_Execute
+EX_00_CM=python "%f"
+EX_00_WD=


Modified: data/filetypes.ruby
10 lines changed, 7 insertions(+), 3 deletions(-)
===================================================================
@@ -73,9 +73,13 @@ context_action_cmd=
 # 0 is spaces, 1 is tabs, 2 is tab & spaces
 #type=1
 
-[build_settings]
+[build-menu]
 # %f will be replaced by the complete filename
 # %e will be replaced by the filename without extension
 # (use only one of it at one time)
-compiler=ruby -c "%f"
-run_cmd=ruby "%f"
+FT_00_LB=_Compile
+FT_00_CM=ruby -wc "%f"
+FT_00_WD=
+EX_00_LB=_Execute
+EX_00_CM=ruby "%f"
+EX_00_WD=


Modified: data/filetypes.sh
9 lines changed, 3 insertions(+), 6 deletions(-)
===================================================================
@@ -52,12 +52,6 @@ context_action_cmd=
 # 0 is spaces, 1 is tabs, 2 is tab & spaces
 #type=1
 
-[build_settings]
-# %f will be replaced by the complete filename
-# %e will be replaced by the filename without extension
-# (use only one of it at one time)
-run_cmd="./%f"
-
 [build-menu]
 # %f will be replaced by the complete filename
 # %e will be replaced by the filename without extension
@@ -65,3 +59,6 @@ run_cmd="./%f"
 FT_02_LB=_Lint
 FT_02_CM=shellcheck --format=gcc "%f"
 FT_02_WD=
+EX_00_LB=_Execute
+EX_00_CM="./%f"
+EX_00_WD=



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list