Pake: Pythonic Make

Just  one more make tool. Make, cmake, rake, now pake.
Pakefiles are written in YAML and can contain python and shell scripts. That's cool, right?
Like this:
default:
  python:
    import myapp
    myapp.db.flush()
  shell:
    sudo python setup.py build
    echo 'Built on:'
    uname -a

bzr branch lp:pake and go!