2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 09:57:15 +01:00

Development branch for waf 2.0

This commit is contained in:
Thomas Nagy 2016-11-20 10:14:16 +01:00
parent c142062d69
commit cdfd5f03cf
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
3 changed files with 5 additions and 5 deletions

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect import os, sys, inspect
VERSION="1.9.5" VERSION="2.0.0"
REVISION="x" REVISION="x"
GIT="x" GIT="x"
INSTALL="x" INSTALL="x"

View File

@ -11,13 +11,13 @@ from waflib import Utils, Errors, Logs
import waflib.Node import waflib.Node
# the following 3 constants are updated on each new release (do not touch) # the following 3 constants are updated on each new release (do not touch)
HEXVERSION=0x1090500 HEXVERSION=0x2000000
"""Constant updated on new releases""" """Constant updated on new releases"""
WAFVERSION="1.9.5" WAFVERSION="2.0.0"
"""Constant updated on new releases""" """Constant updated on new releases"""
WAFREVISION="d5628f1ee6dfc59eae92cf4d0c20baac5e233599" WAFREVISION="c142062d69aaeabf26b5f1ea8e113e15dd3b055f"
"""Git revision when the waf version is updated""" """Git revision when the waf version is updated"""
ABI = 99 ABI = 99

View File

@ -9,7 +9,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
./waf-light --tools=compat15,/comp/waf/aba.py --prelude=$'\tfrom waflib.extras import aba\n\taba.foo()' ./waf-light --tools=compat15,/comp/waf/aba.py --prelude=$'\tfrom waflib.extras import aba\n\taba.foo()'
""" """
VERSION="1.9.5" VERSION="2.0.0"
APPNAME='waf' APPNAME='waf'
REVISION='' REVISION=''