mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 21:17:54 +00:00
2a51a7bb90
I checked and it behaves about as well on Windows as the previous version did.
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
# -*- python -*-
|
|
# you must invoke this with an explicit python, from the tree root
|
|
|
|
"""Run an arbitrary command with a PYTHONPATH that will include the Tahoe
|
|
code, including dependent libraries. Run this like:
|
|
|
|
python misc/run-with-pythonpath.py python foo.py
|
|
or
|
|
python misc/run-with-pythonpath.py trial -r poll allmydata.test.test_util
|
|
|
|
"""
|
|
|
|
import os, sys, subprocess
|
|
|
|
# figure out where support/lib/pythonX.X/site-packages is
|
|
# add it to os.environ["PYTHONPATH"]
|
|
# spawn the child process
|
|
|
|
|
|
def pylibdir(prefixdir):
|
|
pyver = "python%d.%d" % (sys.version_info[:2])
|
|
if sys.platform == "win32":
|
|
return os.path.join(prefixdir, "Lib", "site-packages")
|
|
else:
|
|
return os.path.join(prefixdir, "lib", pyver, "site-packages")
|
|
|
|
basedir = os.path.dirname(os.path.abspath(__file__))
|
|
supportlib = pylibdir(os.path.abspath("support"))
|
|
|
|
oldpp = os.environ.get("PYTHONPATH", "").split(os.pathsep)
|
|
if oldpp == [""]:
|
|
# grr silly split() behavior
|
|
oldpp = []
|
|
newpp = os.pathsep.join(oldpp + [supportlib,])
|
|
os.environ['PYTHONPATH'] = newpp
|
|
|
|
from twisted.python.procutils import which
|
|
cmd = sys.argv[1]
|
|
if cmd and cmd[0] not in "/~.":
|
|
cmds = which(cmd)
|
|
if not cmds:
|
|
print >>sys.stderr, "'%s' not found on PATH" % (cmd,)
|
|
sys.exit(-1)
|
|
cmd = cmds[0]
|
|
|
|
os.execve(cmd, sys.argv[1:], os.environ)
|