AC-505 Add vendored copies of ec2 and rax inventory scripts from Ansible (for now). Add vendored versions of boto and pyrax and all their dependencies, updated all vendored packages to latest versions.

This commit is contained in:
Chris Church
2013-09-29 20:36:46 -04:00
parent fe42862294
commit e0a94cbf32
1590 changed files with 214977 additions and 985 deletions

16
fix_virtualenv_setuptools.py Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python
'''
Fix setuptools (in virtualenv) after upgrading to distribute >= 0.7.
'''
from distutils.sysconfig import get_python_lib
import glob
import os
import shutil
for f in glob.glob(os.path.join(get_python_lib(), 'setuptools-0.6*.egg*')):
print 'removing', f
if os.path.isdir(f):
shutil.rmtree(f)
else:
os.remove(f)