| """Checkversions - recursively search a directory (default: sys.prefix) |
| for _checkversion.py files, and run each of them. This will tell you of |
| new versions available for any packages you have installed.""" |
| CHECKNAME="_checkversion.py" |
| USAGE="""Usage: checkversions [-v verboselevel] [dir ...] |
| Recursively examine a tree (default: sys.prefix) and for each package |
| with a _checkversion.py file compare the installed version against the current |
| 0 - Minimal output, one line per package |
| 1 - Also print descriptions for outdated packages (default) |
| 2 - Print information on each URL checked |
| 3 - Check every URL for packages with multiple locations""" |
| def check1dir(dummy, dir, files): |
| fullname = os.path.join(dir, CHECKNAME) |
| print '** Exception in', fullname |
| os.path.walk(tree, check1dir, None) |
| options, arguments = getopt.getopt(sys.argv[1:], 'v:') |
| if __name__ == '__main__': |