Revision: 426 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=426&view=rev Author: eht16 Date: 2009-02-02 19:52:06 +0000 (Mon, 02 Feb 2009)
Log Message: ----------- Update to waf 1.5.3 and some cleanup in the wscript.
Modified Paths: -------------- trunk/waf trunk/wscript
Modified: trunk/waf =================================================================== --- trunk/waf 2009-02-02 16:55:48 UTC (rev 425) +++ trunk/waf 2009-02-02 19:52:06 UTC (rev 426) @@ -1,6 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -# Thomas Nagy, 2005-2008 +# Thomas Nagy, 2005-2009
""" Redistribution and use in source and binary forms, with or without @@ -37,8 +37,8 @@ try:import psyco;psyco.full() except:pass
-VERSION="1.5.0" -REVISION="80c6ad48eea21944e014f0f0e609ef9c" +VERSION="1.5.3" +REVISION="acc5828c66ed33800741f39f185080dd" INSTALL=sys.platform=='win32' and 'c:/temp' or '/usr/local' C1='#(' C2='#&' @@ -46,7 +46,7 @@ join = os.path.join
def err(m): - print '\033[91mError: %s\033[0m' % m + print ('\033[91mError: %s\033[0m' % m) sys.exit(1)
def unpack_wafdir(dir): @@ -79,7 +79,7 @@ for x in t: t.extract(x) t.close()
- os.chmod(join('wafadmin','Tools'), 0755) + os.chmod(join('wafadmin','Tools'), 493)
os.unlink(tmp) os.chdir(cwd) @@ -127,5 +127,5 @@ Scripting.prepare(t, cwd, VERSION, wafdir)
#==>
@@ Diff output truncated at 100000 characters. @@
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.