[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [32927] trunk/blender/source/tools: Removing some tools I suspect are not used anymore.

Campbell Barton ideasman42 at gmail.com
Sun Nov 7 17:38:56 CET 2010


Revision: 32927
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=32927
Author:   campbellbarton
Date:     2010-11-07 17:38:56 +0100 (Sun, 07 Nov 2010)

Log Message:
-----------
Removing some tools I suspect are not used anymore.
- removing cygwin dir, not supported in years.
- simple text output wrapping utility
- hmake, make colorizer utility wrapper script.

can add back if anyone wants.

Removed Paths:
-------------
    trunk/blender/source/tools/cygwin/
    trunk/blender/source/tools/hmake/
    trunk/blender/source/tools/wrap.pl

Deleted: trunk/blender/source/tools/wrap.pl
===================================================================
--- trunk/blender/source/tools/wrap.pl	2010-11-07 16:22:25 UTC (rev 32926)
+++ trunk/blender/source/tools/wrap.pl	2010-11-07 16:38:56 UTC (rev 32927)
@@ -1,21 +0,0 @@
-#!/usr/bin/env perl
-
-$linelength = 72;
-$indent = "  ";
-
-while (<>)
-{
-	@words = split " ", $_;
-	$loc = length($indent);
-	printf "$indent";
-	foreach $word (@words){
-		if ((length($word) + 1 + $loc) > $linelength) {
-			printf "\n$indent";
-			$loc = length($indent);;
-		}
-		printf "$word ";
-		$loc += length($word) + 1;
-	}
-	printf "\n";
-}
-





More information about the Bf-blender-cvs mailing list