vboxapisetup.py revision f8244da4b4e02d8d4ce0669eeb4093e31c301888
#
# Copyright (C) 2009 Oracle Corporation
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# you can redistribute it and/or modify it under the terms of the GNU
# General Public License (GPL) as published by the Free Software
# Foundation, in version 2 as it comes in the "COPYING" file of the
# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
#
import os,sys
from distutils.core import setup
def cleanupComCache():
import shutil
from distutils.sysconfig import get_python_lib
comCache1 = os.path.join(get_python_lib(),'win32com', 'gen_py')
comCache2 = os.path.join(os.environ.get("TEMP", "c:\\tmp"), 'gen_py')
print "Cleaning COM cache at",comCache1,"and",comCache2
shutil.rmtree(comCache1, True)
shutil.rmtree(comCache2, True)
def patchWith(file,install,sdk):
newFile=file+".new"
install=install.replace("\\", "\\\\")
try:
os.remove(newFile)
except:
pass
oldF = open(file, 'r')
newF = open(newFile, 'w')
for line in oldF:
line=line.replace("%VBOX_INSTALL_PATH%",install)
line=line.replace("%VBOX_SDK_PATH%",sdk)
newF.write(line)
newF.close()
oldF.close()
try:
os.remove(file)
except:
pass
os.rename(newFile, file)
# See http://docs.python.org/distutils/index.html
def main(argv):
vboxDest=os.environ.get("VBOX_INSTALL_PATH", None)
if vboxDest is None:
raise Exception("No VBOX_INSTALL_PATH defined, exiting")
vboxVersion=os.environ.get("VBOX_VERSION", None)
if vboxVersion is None:
# Should we use VBox version for binding module versioning?
vboxVersion = "1.0"
import platform
if platform.system() == 'Darwin':
vboxSdkDest = os.path.join(vboxDest, "..", "..", "..", "sdk")
if not os.path.isdir(vboxSdkDest):
vboxSdkDest = os.path.join(vboxDest, "sdk")
else:
vboxSdkDest = os.path.join(vboxDest, "sdk")
if platform.system() == 'Windows':
cleanupComCache()
patchWith(os.path.join(os.path.dirname(sys.argv[0]), 'vboxapi', '__init__.py'), vboxDest, vboxSdkDest)
setup(name='vboxapi',
version=vboxVersion,
description='Python interface to VirtualBox',
author='Oracle Corp.',
author_email='vbox-dev@virtualbox.org',
url='http://www.virtualbox.org',
packages=['vboxapi']
)
if __name__ == '__main__':
main(sys.argv)