[vtk-developers] Timing restrictions for checkins?

Moreland, Kenneth kmorel at sandia.gov
Tue May 29 13:49:20 EDT 2007


Have you tried setting your log message using the -m command?  I usually
get this message when I add a log message using an editor, but
specifying on the command line fixes the problem.

-Ken

> -----Original Message-----
> From: vtk-developers-bounces+kmorel=sandia.gov at vtk.org [mailto:vtk-
> developers-bounces+kmorel=sandia.gov at vtk.org] On Behalf Of Prabhu
> Ramachandran
> Sent: Tuesday, May 29, 2007 11:41 AM
> To: vtk-developers at vtk.org
> Subject: [vtk-developers] Timing restrictions for checkins?
> 
> 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
> _______________________________________________
> vtk-developers mailing list
> vtk-developers at vtk.org
> http://www.vtk.org/mailman/listinfo/vtk-developers





More information about the vtk-developers mailing list