Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Waf: Replace 'python' with 'python3' in shebangs. #16

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion build_system_kit/extpy/extpy.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

import os
Expand Down
2 changes: 1 addition & 1 deletion build_system_kit/extpy/runme.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

"""
Expand Down
2 changes: 1 addition & 1 deletion build_system_kit/extpy/wscript.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

def configure(conf):
Expand Down
2 changes: 1 addition & 1 deletion build_system_kit/makefile_dumper/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion build_system_kit/noscript/dbdlib.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

import os, sys, imp
from waflib import Context, Options, Configure, Utils, Logs, TaskGen, Task
Expand Down
2 changes: 1 addition & 1 deletion build_system_kit/nostate/ebdlib.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

import os, sys, imp, time
from waflib import Context, Options, Configure, Utils, Logs, TaskGen, Task, Build, ConfigSet
Expand Down
2 changes: 1 addition & 1 deletion build_system_kit/nostate/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion build_system_kit/overview/bbdlib.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

import os, sys, imp
from waflib import Context, Options, Configure, Utils, Logs
Expand Down
2 changes: 1 addition & 1 deletion build_system_kit/parser/cbdlib.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

import os, sys, imp, re
from waflib import Context, Options, Configure, Utils, Logs
Expand Down
2 changes: 1 addition & 1 deletion demos/asm/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

import sys
Expand Down
2 changes: 1 addition & 1 deletion demos/bisonflex/wscript
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

def options(opt):
Expand Down
2 changes: 1 addition & 1 deletion demos/c++/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2006-2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/c/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2006-2012 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/csharp/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/d/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2006 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/dbus/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/fortran/mod/fakecc.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# DC 2008
# Thomas Nagy 2010 (ita)
Expand Down
2 changes: 1 addition & 1 deletion demos/fortran/mod/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# DC 2008
# Thomas Nagy 2010 (ita)
Expand Down
2 changes: 1 addition & 1 deletion demos/fortran/typemap/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

top = '.'
out = 'build'
Expand Down
2 changes: 1 addition & 1 deletion demos/fortran/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# DC 2008
# Thomas Nagy 2010 (ita)
Expand Down
2 changes: 1 addition & 1 deletion demos/glib2/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2005, 2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/intltool/data/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

from waflib import Utils

Expand Down
2 changes: 1 addition & 1 deletion demos/intltool/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/java/animals/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

def build(bld):

Expand Down
2 changes: 1 addition & 1 deletion demos/java/cats/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

def build(bld):

Expand Down
2 changes: 1 addition & 1 deletion demos/java/junit.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

"""
Expand Down
2 changes: 1 addition & 1 deletion demos/java/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2006-2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/jni/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Zellman 2009

Expand Down
2 changes: 1 addition & 1 deletion demos/lua/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# coding: utf-8

def configure(conf):
Expand Down
2 changes: 1 addition & 1 deletion demos/mac_app/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Chris Pickel, 2011

Expand Down
2 changes: 1 addition & 1 deletion demos/perl/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# anonymous coward, 2007
# Thomas Nagy, 2010
Expand Down
2 changes: 1 addition & 1 deletion demos/precious/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

def options(opt):
Expand Down
2 changes: 1 addition & 1 deletion demos/python/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Gustavo Carneiro, 2007

Expand Down
2 changes: 1 addition & 1 deletion demos/qt5/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2016 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/ruby/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Frauendorfer, 2010

Expand Down
2 changes: 1 addition & 1 deletion demos/subst/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

top = '.'
Expand Down
2 changes: 1 addition & 1 deletion demos/tex/src/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2006-2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/tex/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2005-2015 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/unit_test/tests/test2/test.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
import sys
print('success')
Expand Down
2 changes: 1 addition & 1 deletion demos/unit_test/tests/test3/test_import.py
@@ -1,3 +1,3 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
print('imported')
2 changes: 1 addition & 1 deletion demos/unit_test/tests/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

def build(bld):
Expand Down
2 changes: 1 addition & 1 deletion demos/unit_test/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Richard Quirk, 2008

Expand Down
2 changes: 1 addition & 1 deletion demos/vala/resources/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

def configure(conf):
try:
Expand Down
2 changes: 1 addition & 1 deletion demos/vala/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Jaap Haitsma, 2008

Expand Down
2 changes: 1 addition & 1 deletion demos/variants/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion demos/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# J. Carretero, 2010 (zougloub)
# Thomas Nagy, 2010 (ita)
Expand Down
2 changes: 1 addition & 1 deletion docs/slides/presentation/gfx/wscript
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion docs/slides/presentation/snippets/waf-2/wscript
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

def configure(ctx):
Expand Down
2 changes: 1 addition & 1 deletion docs/slides/presentation/wscript
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Jérôme Carretero, 2010 (zougloub)

Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/wscript
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Jérôme Carretero, 2010 (zougloub)

Expand Down
2 changes: 1 addition & 1 deletion playground/R/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8

VERSION = '1.0.0'
Expand Down
2 changes: 1 addition & 1 deletion playground/abstract_process/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

def configure(conf):
pass
Expand Down
2 changes: 1 addition & 1 deletion playground/boo/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

##
# This wscript shows the power of the CLI!
Expand Down
2 changes: 1 addition & 1 deletion playground/c-objects-stlib-shlib/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Jérôme Carretero, 2013 (zougloub)

Expand Down
2 changes: 1 addition & 1 deletion playground/c/deps/wscript
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import shutil
import time

Expand Down
2 changes: 1 addition & 1 deletion playground/c/stlib2/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

"""static libraries using other static libraries"""

Expand Down
2 changes: 1 addition & 1 deletion playground/c/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2006-2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion playground/cfg_cache/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

"""
compare the execution time of
Expand Down
2 changes: 1 addition & 1 deletion playground/codegen/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# coding: utf-8

def options(opt):
Expand Down
2 changes: 1 addition & 1 deletion playground/compress/optim.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

import os, subprocess, shutil, random, optparse

Expand Down
2 changes: 1 addition & 1 deletion playground/compress/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3

"""
You will need either bzip2 or gzip, and a local waf copy
Expand Down
2 changes: 1 addition & 1 deletion playground/cpp_gen/wscript
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010 (ita)

Expand Down
2 changes: 1 addition & 1 deletion playground/cuda/cuda.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010

Expand Down
2 changes: 1 addition & 1 deletion playground/cuda/wscript
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010

Expand Down
2 changes: 1 addition & 1 deletion playground/cython/cython_cache.py
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2012

Expand Down
2 changes: 1 addition & 1 deletion playground/cython/wscript
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Thomas Nagy, 2010

Expand Down