openldap/build/mkrelease

60 lines
1.1 KiB
Text
Raw Normal View History

1999-07-28 16:56:34 -04:00
#! /bin/sh
1999-08-30 04:08:00 -04:00
# $OpenLDAP$
2003-01-03 15:20:47 -05:00
## Copyright 1998-2003 The OpenLDAP Foundation
1999-07-28 16:56:34 -04:00
## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
## of this package for details.
#
# Make a release
# mkrelease RELNAME CVSTAG CVSMODULES
# where CVSTAG is the tag to export from the current CVSROOT
#
#
# This script MUST NOT add files to the export nor modify
# any file in the export.
#
1999-07-28 16:56:34 -04:00
set -e # exit immediately if any errors occur
if test $# != 3 ; then
echo 'usage: mkrelease RELNAME CVSTAG CVSMODULES ...'
exit 1
fi
1999-07-29 21:01:17 -04:00
RELNAME=openldap-$1
1999-07-28 16:56:34 -04:00
shift
1999-07-29 20:57:35 -04:00
CVSTAG=$1
shift
1999-07-28 16:56:34 -04:00
if test -e $RELNAME ; then
echo "error: $RELNAME exists"
exit 1
fi
1999-07-29 21:16:21 -04:00
echo Release: $RELNAME
echo CVS Tag: $CVSTAG
echo Modules: $*
cvs -q export -r $CVSTAG -d $RELNAME $*
1999-07-28 16:56:34 -04:00
if test ! -d $RELNAME ; then
echo "error: $RELNAME doesn't exists"
exit 1
fi
if test ! -e $RELNAME/build/version.sh ; then
1999-07-28 16:56:34 -04:00
echo "No build version"
exit 1
fi
eval `$RELNAME/build/version.sh`
1999-07-28 16:56:34 -04:00
tar cf $RELNAME.tar $RELNAME
gzip -9 -c $RELNAME.tar > $RELNAME.tgz
md5 $RELNAME.tgz > $RELNAME.md5
2000-01-20 19:50:57 -05:00
rm -f $RELNAME.tar
1999-07-28 16:56:34 -04:00
ls -l $RELNAME.*
2002-02-24 13:56:06 -05:00
echo "Made $OL_STRING as $RELNAME.tgz"