From 1e2698713bce2850a02666e48c07f3ce26767f1d Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Wed, 23 Apr 2008 13:41:56 -0700 Subject: [PATCH] setup: remove the misc/hatch-eggs.py script, which we no longer use since [1937] --- misc/hatch-eggs.py | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 misc/hatch-eggs.py diff --git a/misc/hatch-eggs.py b/misc/hatch-eggs.py deleted file mode 100644 index 6793328d..00000000 --- a/misc/hatch-eggs.py +++ /dev/null @@ -1,41 +0,0 @@ -#! /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() - -- 2.45.2