summaryrefslogtreecommitdiffstats
path: root/Context.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-04-02 19:23:06 +0200
committerDavid Robillard <d@drobilla.net>2020-04-02 19:23:06 +0200
commitefdc5871d0ba68e364c2d7675a0b4b0965d0130c (patch)
tree9f51f3f918c14cc9194381b75d0d6993f45e4a1b /Context.py
parent4ad9fa89c873c232e48fe5b6ce40ca0fe2cac4a7 (diff)
downloadautowaf-efdc5871d0ba68e364c2d7675a0b4b0965d0130c.tar.gz
autowaf-efdc5871d0ba68e364c2d7675a0b4b0965d0130c.tar.bz2
autowaf-efdc5871d0ba68e364c2d7675a0b4b0965d0130c.zip
Update to waf 2.0.19
Diffstat (limited to 'Context.py')
-rw-r--r--Context.py18
1 files changed, 14 insertions, 4 deletions
diff --git a/Context.py b/Context.py
index e3305fa..ec3cb66 100644
--- a/Context.py
+++ b/Context.py
@@ -6,20 +6,30 @@
Classes and functions enabling the command system
"""
-import os, re, imp, sys
+import os, re, sys
from waflib import Utils, Errors, Logs
import waflib.Node
+if sys.hexversion > 0x3040000:
+ import types
+ class imp(object):
+ new_module = lambda x: types.ModuleType(x)
+else:
+ import imp
+
# the following 3 constants are updated on each new release (do not touch)
-HEXVERSION=0x2001200
+HEXVERSION=0x2001300
"""Constant updated on new releases"""
-WAFVERSION="2.0.18"
+WAFVERSION="2.0.19"
"""Constant updated on new releases"""
-WAFREVISION="314689b8994259a84f0de0aaef74d7ce91f541ad"
+WAFREVISION="e83405712e95b47c040763fdfa468c04dfe72e4b"
"""Git revision when the waf version is updated"""
+WAFNAME="waf"
+"""Application name displayed on --help"""
+
ABI = 20
"""Version of the build data cache file format (used in :py:const:`waflib.Context.DBFILE`)"""