43 lines
1 KiB
Python
43 lines
1 KiB
Python
"""redo-ood: list out-of-date (ood) targets."""
|
|
import sys, os
|
|
from . import deps, env, logs, state
|
|
|
|
cache = {}
|
|
|
|
|
|
def is_checked(f):
|
|
return cache.get(f.id, 0)
|
|
|
|
|
|
def set_checked(f):
|
|
cache[f.id] = 1
|
|
|
|
|
|
def log_override(name):
|
|
pass
|
|
|
|
|
|
def main():
|
|
if len(sys.argv[1:]) != 0:
|
|
sys.stderr.write('%s: no arguments expected.\n' % sys.argv[0])
|
|
sys.exit(1)
|
|
|
|
state.init([])
|
|
logs.setup(
|
|
tty=sys.stderr, parent_logs=env.v.LOG,
|
|
pretty=env.v.PRETTY, color=env.v.COLOR)
|
|
cwd = os.getcwd()
|
|
for f in state.files():
|
|
if f.is_target():
|
|
if deps.isdirty(f,
|
|
depth='',
|
|
max_changed=env.v.RUNID,
|
|
already_checked=[],
|
|
is_checked=is_checked,
|
|
set_checked=set_checked,
|
|
log_override=log_override):
|
|
print(state.relpath(os.path.join(env.v.BASE, f.name), cwd))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|