[vtk-developers] Timing restrictions for checkins?

Prabhu Ramachandran prabhu_r at users.sf.net
Tue May 29 13:40:59 EDT 2007


Hello,

I was trying to checkin a trivial but important change to
Wrapping/Python/setup.py.in.  I keep getting the following error
message:

 cvs [commit aborted]: connect to public.kitware.com(66.194.253.19):2401 failed: Operation timed out

It has been a while since I checked in anything.  Have I missed some
new instructions?  Or has my checkin access been revoked?

BTW, the change is this:

======================================================================
--- setup.py.in.~1.18.~ 2007-05-29 18:25:06.000000000 +0530
+++ setup.py.in 2007-05-29 20:50:21.000000000 +0530
@@ -22,11 +22,12 @@
 #  http://peak.telecommunity.com/DevCenter/PythonEggs
 #  http://peak.telecommunity.com/DevCenter/EasyInstall
 has_setup_tools = 0
-# Uncomment the following two lines if you need to build an Egg.
-# This is commented out by default since the install rule seems
-# broken for setuptools-0.5a13.
-#from setuptools import setup
-#has_setup_tools = 1
+try:
+    from setuptools import setup
+except ImportError:
+    pass
+else:
+    has_setup_tools = 1
 
 # VTK build configuration settings.
 vtk_version = "@VTK_MAJOR_VERSION at .@VTK_MINOR_VERSION at .@VTK_BUILD_VERSION@"
======================================================================


Thanks.

cheers,
-- 
Prabhu Ramachandran                 http://www.aero.iitb.ac.in/~prabhu



More information about the vtk-developers mailing list