diff options
author | Steven Knight <knight@baldmt.com> | 2003-07-20 15:10:26 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-07-20 15:10:26 (GMT) |
commit | 819abe6e6861c13d8baa5dd964849654def5fe74 (patch) | |
tree | 5fdb2921481a604aa8a205fd015515568c2d1bcf /src | |
parent | a7405b2115ba873ade35ebf16ade8736548b9a99 (diff) | |
download | SCons-819abe6e6861c13d8baa5dd964849654def5fe74.zip SCons-819abe6e6861c13d8baa5dd964849654def5fe74.tar.gz SCons-819abe6e6861c13d8baa5dd964849654def5fe74.tar.bz2 |
New sconsign script fixes: print timestamp values correctly (Chad Austin); add a -r option to print timestamps in human-readable form (Gary Oberbrunner); print None instead of -.
Diffstat (limited to 'src')
-rw-r--r-- | src/script/sconsign.py | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/script/sconsign.py b/src/script/sconsign.py index 7b5daf8..d70f02b 100644 --- a/src/script/sconsign.py +++ b/src/script/sconsign.py @@ -39,6 +39,7 @@ __developer__ = "__DEVELOPER__" import os import os.path import sys +import time ############################################################################## # BEGIN STANDARD SCons SCRIPT HEADER @@ -143,13 +144,14 @@ Options: -e, --entry ENTRY Print only info about ENTRY. -h, --help Print this message and exit. -i, --implicit Print implicit dependency information. + -r, --readable Print timestamps in human-readable form. -t, --timestamp Print timestamp information. -v, --verbose Verbose, describe each field. """ -opts, args = getopt.getopt(sys.argv[1:], "bce:hitv", +opts, args = getopt.getopt(sys.argv[1:], "bce:hirtv", ['bsig', 'csig', 'entry=', 'help', 'implicit', - 'timestamp', 'verbose']) + 'readable', 'timestamp', 'verbose']) pf_bsig = 0x1 pf_csig = 0x2 @@ -160,6 +162,7 @@ pf_all = pf_bsig | pf_csig | pf_timestamp | pf_implicit entries = [] printflags = 0 verbose = 0 +readable = 0 for o, a in opts: if o in ('-b', '--bsig'): @@ -168,11 +171,13 @@ for o, a in opts: printflags = printflags | pf_csig elif o in ('-e', '--entry'): entries.append(a) - elif o in ('-h', o == '--help'): + elif o in ('-h', '--help'): print helpstr sys.exit(0) elif o in ('-i', '--implicit'): printflags = printflags | pf_implicit + elif o in ('-r', '--readable'): + readable = 1 elif o in ('-t', '--timestamp'): printflags = printflags | pf_timestamp elif o in ('-v', '--verbose'): @@ -187,12 +192,16 @@ def field(name, pf, val): sep = "\n " + name + ": " else: sep = " " - return sep + (val or '-') + return sep + str(val) else: return "" def printfield(name, entry): - timestamp = field("timestamp", pf_timestamp, entry.timestamp) + if readable and entry.timestamp: + ts = "'" + time.ctime(entry.timestamp) + "'" + else: + ts = entry.timestamp + timestamp = field("timestamp", pf_timestamp, ts) bsig = field("bsig", pf_bsig, entry.bsig) csig = field("csig", pf_csig, entry.csig) print name + ":" + timestamp + bsig + csig |