Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r58303 - sandbox/filesystem-v3
From: bdawes_at_[hidden]
Date: 2009-12-11 16:53:39


Author: bemandawes
Date: 2009-12-11 16:53:38 EST (Fri, 11 Dec 2009)
New Revision: 58303
URL: http://svn.boost.org/trac/boost/changeset/58303

Log:
Initial commit
Added:
   sandbox/filesystem-v3/create_distro.bat (contents, props changed)

Added: sandbox/filesystem-v3/create_distro.bat
==============================================================================
--- (empty file)
+++ sandbox/filesystem-v3/create_distro.bat 2009-12-11 16:53:38 EST (Fri, 11 Dec 2009)
@@ -0,0 +1,31 @@
+rem Create Boost Filesystem Version 3 distribution for Windows
+
+rem Copyright 2009 Beman Dawes
+rem Distributed under the Boost Software License, Version 1.0.
+rem See http://www.boost.org/LICENSE_1_0.txt
+
+@echo off
+echo Create Boost Filesystem Version 3 distribution for Windows
+if {%1}=={} goto usage
+
+echo Preparing temporary directory %TEMP%\%1...
+pushd %TEMP%
+rmdir /S /Q %1 2>nul
+del %1.zip 2>nul
+
+echo Exporting https://svn.boost.org/svn/boost/sandbox/filesystem-v3 to %TEMP%\%1...
+svn export --non-interactive --trust-server-cert --native-eol CRLF ^
+ https://svn.boost.org/svn/boost/sandbox/filesystem-v3 %1
+
+echo Creating %TEMP%\%1.zip...
+zip -r -q %1.zip %1
+
+echo Finishing up...
+popd
+dir %TEMP%\%1.zip
+goto done
+
+:usage
+echo Usage: create-distro distro-name
+echo Will create %TEMP%\distro-name.zip
+:done


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk