Rev 5373: Changes have been committed to make-tarball.sh, in http://samba.sernet.de/ma/bzr/SAMBA_3_0-registry.bzr/

Michael Adam ma at sernet.de
Wed Apr 18 20:25:16 GMT 2007


At http://samba.sernet.de/ma/bzr/SAMBA_3_0-registry.bzr/

------------------------------------------------------------
revno: 5373
revision-id: ma at sernet.de-20070418202513-d3d87f5f21549949
parent: ma at sernet.de-20070418202137-d18e314f5670f77b
committer: Michael Adam <ma at sernet.de>
branch nick: SAMBA_3_0-registry.bzr
timestamp: Wed 2007-04-18 22:25:13 +0200
message:
  Changes have been committed to make-tarball.sh,
  rendering this parallel version unnecessary.
removed:
  make-tarball.obnox.sh          maketarball.obnox.sh-20070301111459-zmpi8w2w3yl1snl5-1
=== removed file 'make-tarball.obnox.sh'
--- a/make-tarball.obnox.sh	2007-03-01 15:16:27 +0000
+++ b/make-tarball.obnox.sh	1970-01-01 00:00:00 +0000
@@ -1,67 +0,0 @@
-#!/bin/sh
-
-## A simple script to build a tarball of the current CVS tree.
-## You either need to include the using_samba cvs module in the
-## parent directory or tell the script where to find it 
-##
-## Usgae:  ./make-tarball.sh
-
-NODOCS=0
-if [ "x$1" = "xnodocs" ] ; then
-	NODOCS=1
-	echo Not including docs.
-fi
-
-DOCSDIR=../samba-docs/
-USING_SAMBA=../using_samba/
-SRCDIR=`pwd`
-
-if [ $NODOCS -eq 0 ]; then
-	if [ ! -d $USING_SAMBA ]; then
-	
-		echo Cannot find "Using Samba" directory \(assuming $USING_SAMBA\).  
-		echo Please set the USING_SAMBA variable in this script to the correct
-		echo location.  The html files are available in the using_samba CVS 
-		echo module on cvs.samba.org.  See http://cvs.samba.org/ for details 
-		echo about anonymous CVS access.  Exiting now....
-	
-		exit 1
-	
-	fi
-	
-	if [ ! -d $DOCSDIR ]; then
-	
-		echo Cannot find samba-docs \(assuming $DOCSDIR\).
-		echo Please set the DOCSDIR variable in this script 
-		echo to the correct path.
-	
-		exit 1
-	
-	fi
-fi
-
-( cd source ; sh script/mkversion.sh )
-VERSION=`grep SAMBA_VERSION_OFFICIAL_STRING source/include/version.h | cut -d\" -f2 | sed 's/ /_/g'`
-TARBALLDIR=/tmp/samba-$VERSION
-
-echo Creating the tarball source directory in $TARBALLDIR
-
-/bin/rm -rf $TARBALLDIR
-/bin/rm -f samba-$VERSION.tar
-
-mkdir $TARBALLDIR
-rsync -aC ./ $TARBALLDIR
-/bin/rm -rf $TARBALLDIR/docs/*
-if [ $NODOCS -eq 0 ]; then
-	rsync -aC $DOCSDIR/ $TARBALLDIR/docs/ 
-	rsync -aC $USING_SAMBA $TARBALLDIR/docs/htmldocs/
-fi
-
-echo Creating packaging scripts...
-( cd $TARBALLDIR/packaging; sh bin/update-pkginfo $VERSION 1 )
-
-echo Creating source/configure...
-( cd $TARBALLDIR/source; ./autogen.sh )
-
-echo Making tarball samba-$VERSION.tar in current directory...
-( cd `dirname $TARBALLDIR`; tar cf $SRCDIR/samba-$VERSION.tar samba-$VERSION )



More information about the samba-cvs mailing list