[Box Backup-dev] COMMIT r352 - in box/trunk: distribution distribution/boxbackup infrastructure

boxbackup-dev at fluffy.co.uk boxbackup-dev at fluffy.co.uk
Mon Jan 30 19:50:02 GMT 2006


Author: ben
Date: 2006-01-30 19:50:00 +0000 (Mon, 30 Jan 2006)
New Revision: 352

Modified:
   box/trunk/distribution/COMMON-MANIFEST.txt
   box/trunk/distribution/boxbackup/LICENSE.txt
   box/trunk/distribution/boxbackup/THANKS.txt
   box/trunk/distribution/boxbackup/VERSION.txt
   box/trunk/infrastructure/makedistribution.pl
Log:
Run bootstrap when making distribution, preparations for 0.10 release candidate

Modified: box/trunk/distribution/COMMON-MANIFEST.txt
===================================================================
--- box/trunk/distribution/COMMON-MANIFEST.txt	2006-01-30 18:58:48 UTC (rev 351)
+++ box/trunk/distribution/COMMON-MANIFEST.txt	2006-01-30 19:50:00 UTC (rev 352)
@@ -1,3 +1,4 @@
+RUN ./bootstrap
 lib/common
 lib/crypto
 lib/server
@@ -27,3 +28,4 @@
 runtest.pl
 NO-LICENSE-IN-DIR infrastructure/m4
 infrastructure/m4
+configure

Modified: box/trunk/distribution/boxbackup/LICENSE.txt
===================================================================
--- box/trunk/distribution/boxbackup/LICENSE.txt	2006-01-30 18:58:48 UTC (rev 351)
+++ box/trunk/distribution/boxbackup/LICENSE.txt	2006-01-30 19:50:00 UTC (rev 352)
@@ -1,6 +1,6 @@
  
-Copyright (c) 2003, 2005
-     Ben Summers.  All rights reserved.
+Copyright (c) 2003 - 2006
+     Ben Summers and contributors.  All rights reserved.
  
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
@@ -11,7 +11,7 @@
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. All use of this software and associated advertising materials must 
-   display the following acknowledgement:
+   display the following acknowledgment:
        This product includes software developed by Ben Summers.
 4. The names of the Authors may not be used to endorse or promote
    products derived from this software without specific prior written

Modified: box/trunk/distribution/boxbackup/THANKS.txt
===================================================================
--- box/trunk/distribution/boxbackup/THANKS.txt	2006-01-30 18:58:48 UTC (rev 351)
+++ box/trunk/distribution/boxbackup/THANKS.txt	2006-01-30 19:50:00 UTC (rev 352)
@@ -1,6 +1,34 @@
 
+The following developers contributed code to version 0.10:
+
+Nick Knight
+  - ported Box Backup to Windows (properly, not using Cygwin)
+ 
+Gary Niemcewicz
+  - added client/server (SSL) keepalives to keep the connection to the
+    server alive during a long diff, and saving the daemon's state across restarts
+
+Martin Ebourne
+  - ported to Solaris; wrote extended attribute support (xattr);
+    converted to use autoconf for automatic compiler configuration.
+
+Chris Wilson
+  - updated Nick's and Gary's work to fit in with the new trunk,
+    fixed some issues pointed out by Ben and Martin, made it compile
+    on Windows with the free MinGW compiler.
+
+Jonathan Morton
+  - vastly improved the performance and efficiency of the file-diffing code, and
+    obtained a free G5 PowerMac from IBM as his reward.
+
+
+----
+
 Many individuals have helped with the development of Box Backup by testing, reporting experiences, and making suggestions. In particular, thanks are due to
 
+Charles Lecklider
+  - Helped with the finer details of Win32 programming
+
 Pascal Lalonde
   - Comprehensive and accurate bug reports, and constructive feedback
 
@@ -17,6 +45,7 @@
 
 Per Thomsen
   - Cygwin Windows service install scripts and build notes
+  - Answering queries on the boxbackup mailing list
 
 Tim Fletcher
 David Harris

Modified: box/trunk/distribution/boxbackup/VERSION.txt
===================================================================
--- box/trunk/distribution/boxbackup/VERSION.txt	2006-01-30 18:58:48 UTC (rev 351)
+++ box/trunk/distribution/boxbackup/VERSION.txt	2006-01-30 19:50:00 UTC (rev 352)
@@ -1,2 +1,2 @@
-0.09_trunk
+0.09_plus2
 boxbackup

Modified: box/trunk/infrastructure/makedistribution.pl
===================================================================
--- box/trunk/infrastructure/makedistribution.pl	2006-01-30 18:58:48 UTC (rev 351)
+++ box/trunk/infrastructure/makedistribution.pl	2006-01-30 19:50:00 UTC (rev 352)
@@ -82,6 +82,15 @@
 		{
 			$no_license{$dst} = 1;
 		}
+		elsif($src eq 'RUN')
+		{
+			print "Running $dst...\n";
+			if(system($dst) != 0)
+			{
+				print "Error running $dst. Aborting.\n";
+				exit(1);
+			}
+		}
 		elsif(-d $src)
 		{
 			$modules_included{$_} = 1;




More information about the Boxbackup-dev mailing list