How to package the upstream sources using src-pack2
===================================================

For example we wanto to package DEV300_m40

ssh ooweb@seagull.dreamhost.com
# the following commands will be done on seagull
# check out the upstream sources
ooo_mws=DEV300
ooo_svn_tag=${ooo_mws}_m40
ooo_build_tag=dev300-m40
# FIXME: the is not much space in /tmp and /var/tmp
#        we had troubles with the number of file in home
mkdir -p /var/tmp/$ooo_build_tag
cd /var/tmp/$ooo_build_tag
svn export svn://svn.services.openoffice.org/ooo/tags/$ooo_svn_tag $ooo_build_tag
# just to be sure
svn export $ooo_build_tag
svn stat $ooo_build_tag
# check out the last ooo-build to get the last modules.txt and src-pack2
svn co ~/ooo-build
~/ooo-build/bin/src-pack2 $ooo_build_tag ~/download.go-oo.org/$ooo_mws
# clean up
cd ..
rm -rf $ooo_build_tag
