From: david-sarah Date: Sat, 22 Jan 2011 02:00:51 +0000 (-0800) Subject: Remove obsolete and bit-rotted 'setup.py check-auto-deps' command. Building and runni... X-Git-Tag: allmydata-tahoe-1.8.2b1~9 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=6d6f0edc3698e1abe9620fe34c12918d38cbd049;p=tahoe-lafs%2Ftahoe-lafs.git Remove obsolete and bit-rotted 'setup.py check-auto-deps' command. Building and running bin/tahoe is a more thorough check. --- diff --git a/setup.py b/setup.py index e5f28958..786858e3 100644 --- a/setup.py +++ b/setup.py @@ -276,18 +276,6 @@ class Trial(Command): sys.exit(rc) -class CheckAutoDeps(Command): - user_options = [] - def initialize_options(self): - pass - def finalize_options(self): - pass - def run(self): - adglobals = {} - execfile('src/allmydata/_auto_deps.py', adglobals) - adglobals['require_auto_deps']() - - class MakeExecutable(Command): description = "make the 'bin%stahoe' scripts" % (os.sep,) user_options = [] @@ -398,7 +386,6 @@ setup(name=APPNAME, cmdclass={"show_supportlib": ShowSupportLib, "show_pythonpath": ShowPythonPath, "run_with_pythonpath": RunWithPythonPath, - "check_auto_deps": CheckAutoDeps, "test_mac_diskimage": TestMacDiskImage, "trial": Trial, "make_executable": MakeExecutable,