mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-06 13:08:42 +00:00
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
|
#! /usr/bin/python
|
||
|
|
||
|
import os.path
|
||
|
import sys
|
||
|
import zipfile
|
||
|
|
||
|
path = []
|
||
|
if sys.platform == 'win32':
|
||
|
support_lib = "support/Lib/site-packages"
|
||
|
else:
|
||
|
pyver = "python%d.%d" % (sys.version_info[:2])
|
||
|
support_lib = "support/lib/%s/site-packages" % pyver
|
||
|
|
||
|
if os.path.exists(support_lib):
|
||
|
for fn in os.listdir(support_lib):
|
||
|
if fn.endswith(".egg"):
|
||
|
path.append(os.path.abspath(os.path.join(support_lib, fn)))
|
||
|
|
||
|
# We also need to include .egg's in the CWD, because if there is an .egg there
|
||
|
# then "make build-deps" will take that as satisfying its requirements.
|
||
|
for fn in os.listdir("."):
|
||
|
if fn.endswith(".egg"):
|
||
|
path.append(os.path.abspath(os.path.join(os.getcwd(), fn)))
|
||
|
|
||
|
for eggpath in path:
|
||
|
if os.path.isfile(eggpath):
|
||
|
bak = eggpath + '.bak'
|
||
|
os.rename(eggpath, bak)
|
||
|
os.mkdir(eggpath)
|
||
|
zf = zipfile.ZipFile(bak, 'r')
|
||
|
print bak
|
||
|
for name in zf.namelist():
|
||
|
dirname = os.path.join(eggpath, os.path.dirname(name))
|
||
|
if not os.path.isdir(dirname):
|
||
|
print 'creating', dirname
|
||
|
os.makedirs(dirname)
|
||
|
print name
|
||
|
f = file(os.path.join(eggpath, name), 'wb')
|
||
|
f.write(zf.read(name))
|
||
|
f.close()
|
||
|
|