]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Remove obsolete and bit-rotted 'setup.py check-auto-deps' command. Building and runni...
authordavid-sarah <david-sarah@jacaranda.org>
Sat, 22 Jan 2011 02:00:51 +0000 (18:00 -0800)
committerdavid-sarah <david-sarah@jacaranda.org>
Sat, 22 Jan 2011 02:00:51 +0000 (18:00 -0800)
setup.py

index e5f28958cd39ef0866d11e69072e389852275685..786858e363dd114c2deaba396756eeb7eae32d8f 100644 (file)
--- 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,