SCsub: Add python shebang as a hint for syntax highlighting

Also switch existing shebangs to "better" /usr/bin/env python.
This commit is contained in:
Rémi Verschelde 2016-10-17 08:50:25 +02:00
parent 89132224a6
commit fc8ccd5b8c
88 changed files with 168 additions and 8 deletions

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
EnsureSConsVersion(0,14);

View File

@ -1,3 +1,5 @@
#!/usr/bin/python
Import('env')
Export('env')

View File

@ -1,3 +1,5 @@
#!/usr/bin/python
Import('env')
env.tests_sources=[]

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.core_sources=[]

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.core_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.core_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.core_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.core_sources,"*.cpp")

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
import sys
import re

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs

2
drivers/SCsub vendored
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.drivers_sources=[]

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.drivers_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.drivers_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
if (env["platform"] in ["haiku","osx","windows","x11"]):

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.drivers_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
if env['BUILDERS'].has_key('GLSL120GLES'):

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.drivers_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env_png = env.Clone()

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.drivers_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
# Not cloning the env, the includes need to be accessible for platform/

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
g_set_p='#ifdef UNIX_ENABLED\n'

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.drivers_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
# Not cloning the env, the includes need to be accessible for core/

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.main_sources=[]

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env_modules = env.Clone()

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
# Not building in a separate env as core needs it

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.modules_sources, "*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Import('env_modules')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import shutil
Import('env')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
bb10_lib = [

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
common_haiku = [

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
iphone_lib = [

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
javascript_files = [

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
files = [

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
files = [

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.scene_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.scene_sources=[]

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.scene_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.scene_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.scene_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.scene_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.scene_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.scene_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.scene_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.servers_sources=[]

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.servers_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.servers_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.servers_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.servers_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.servers_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.servers_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.servers_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.tool_sources=[]

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.tool_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
env.add_source_files(env.tool_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Export('env')
env.add_source_files(env.tool_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
def make_editor_icons_action(target, source, env):

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Export('env')
env.add_source_files(env.tool_sources,"*.cpp")

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
Import('env')
Export('env')
env.add_source_files(env.tool_sources,"*.cpp")

View File

@ -1,4 +1,4 @@
#! /usr/bin/python
#! /usr/bin/env python
import sys
if (len(sys.argv)<2):