/misc/build_helpers/show-tool-versions.py
Python | 162 lines | 142 code | 18 blank | 2 comment | 27 complexity | e3b9d8d824da3e9b3996293b2013c397 MD5 | raw file
- #! /usr/bin/env python
- import locale, os, subprocess, sys, traceback
- added_zetuptoolz_egg = False
- try:
- import pkg_resources
- pkg_resources # hush pyflakes
- except ImportError:
- import glob
- eggz = glob.glob('setuptools-*.egg')
- if len(eggz) > 0:
- egg = os.path.realpath(eggz[0])
- print >>sys.stderr, "Inserting egg on sys.path: %r" % (egg,)
- added_zetuptoolz_egg = True
- sys.path.insert(0, egg)
- def foldlines(s):
- return s.replace("\n", " ").replace("\r", "")
- def print_platform():
- print
- try:
- import platform
- out = platform.platform()
- print "platform:", foldlines(out)
- print "machine: ", platform.machine()
- if hasattr(platform, 'linux_distribution'):
- print "linux_distribution:", repr(platform.linux_distribution())
- except EnvironmentError:
- sys.stderr.write("\nGot exception using 'platform'. Exception follows\n")
- traceback.print_exc(file=sys.stderr)
- sys.stderr.flush()
- pass
- def print_python_ver():
- print
- print "python:", foldlines(sys.version)
- print 'maxunicode: ' + str(sys.maxunicode)
- def print_python_encoding_settings():
- print
- print 'filesystem.encoding: ' + str(sys.getfilesystemencoding())
- print 'locale.getpreferredencoding: ' + str(locale.getpreferredencoding())
- try:
- print 'locale.defaultlocale: ' + str(locale.getdefaultlocale())
- except ValueError, e:
- print 'got exception from locale.getdefaultlocale(): ', e
- print 'locale.locale: ' + str(locale.getlocale())
- def print_stdout(cmdlist, label=None):
- print
- try:
- res = subprocess.Popen(cmdlist, stdin=open(os.devnull),
- stdout=subprocess.PIPE).communicate()[0]
- if label is None:
- label = cmdlist[0]
- print label + ': ' + foldlines(res)
- except EnvironmentError:
- sys.stderr.write("\nGot exception invoking '%s'. Exception follows.\n" % (cmdlist[0],))
- traceback.print_exc(file=sys.stderr)
- sys.stderr.flush()
- pass
- def print_as_ver():
- print
- if os.path.exists('a.out'):
- print "WARNING: a file named a.out exists, and getting the version of the 'as' assembler writes to that filename, so I'm not attempting to get the version of 'as'."
- return
- try:
- res = subprocess.Popen(['as', '-version'], stdin=open(os.devnull),
- stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
- print 'as: ' + foldlines(res[0]+' '+res[1])
- if os.path.exists('a.out'):
- os.remove('a.out')
- except EnvironmentError:
- sys.stderr.write("\nGot exception invoking '%s'. Exception follows.\n" % ('as',))
- traceback.print_exc(file=sys.stderr)
- sys.stderr.flush()
- pass
- def print_setuptools_ver():
- print
- if added_zetuptoolz_egg:
- # it would be misleading to report the bundled version of zetuptoolz as the installed version
- print "setuptools: using bundled egg"
- return
- try:
- import pkg_resources
- out = str(pkg_resources.require("setuptools"))
- print "setuptools:", foldlines(out)
- except (ImportError, EnvironmentError):
- sys.stderr.write("\nGot exception using 'pkg_resources' to get the version of setuptools. Exception follows\n")
- traceback.print_exc(file=sys.stderr)
- sys.stderr.flush()
- pass
- def print_py_pkg_ver(pkgname, modulename=None):
- if modulename is None:
- modulename = pkgname
- print
- try:
- import pkg_resources
- out = str(pkg_resources.require(pkgname))
- print pkgname + ': ' + foldlines(out)
- except (ImportError, EnvironmentError):
- sys.stderr.write("\nGot exception using 'pkg_resources' to get the version of %s. Exception follows.\n" % (pkgname,))
- traceback.print_exc(file=sys.stderr)
- sys.stderr.flush()
- pass
- except pkg_resources.DistributionNotFound:
- sys.stderr.write("\npkg_resources reported no %s package installed. Exception follows.\n" % (pkgname,))
- traceback.print_exc(file=sys.stderr)
- sys.stderr.flush()
- pass
- try:
- __import__(modulename)
- except ImportError:
- pass
- else:
- modobj = sys.modules.get(modulename)
- print pkgname + ' module: ' + str(modobj)
- try:
- print pkgname + ' __version__: ' + str(modobj.__version__)
- except AttributeError:
- pass
- print_platform()
- print_python_ver()
- print_stdout(['locale'])
- print_python_encoding_settings()
- print_stdout(['buildbot', '--version'])
- print_stdout(['cl'])
- print_stdout(['gcc', '--version'])
- print_stdout(['g++', '--version'])
- print_stdout(['cryptest', 'V'])
- print_stdout(['darcs', '--version'])
- print_stdout(['darcs', '--exact-version'], label='darcs-exact-version')
- print_stdout(['7za'])
- print_stdout(['flappclient', '--version'])
- print_stdout(['valgrind', '--version'])
- print_as_ver()
- print_setuptools_ver()
- print_py_pkg_ver('coverage')
- print_py_pkg_ver('trialcoverage')
- print_py_pkg_ver('setuptools_trial')
- print_py_pkg_ver('pyflakes')
- print_py_pkg_ver('zope.interface')
- print_py_pkg_ver('setuptools_darcs')
- print_py_pkg_ver('darcsver')
- print_py_pkg_ver('Twisted', 'twisted')
- print_py_pkg_ver('TwistedCore', 'twisted.python')
- print_py_pkg_ver('TwistedWeb', 'twisted.web')
- print_py_pkg_ver('TwistedConch', 'twisted.conch')
- print_py_pkg_ver('pycryptopp')