X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fmkrelease;h=f0e7a1f5d70d1ad5a99cbb16671cbe8ddb94dfb8;hb=e9ab2f8d06aa31a63ba71b08420a1766ad181263;hp=e5c5dad4c6c67492fb7e37fc39b34b267322f7b0;hpb=10f138bc846d637dcdc62a56913e68409d2add38;p=openldap diff --git a/build/mkrelease b/build/mkrelease index e5c5dad4c6..f0e7a1f5d7 100755 --- a/build/mkrelease +++ b/build/mkrelease @@ -1,5 +1,6 @@ #! /bin/sh -## Copyright 1998,1999 The OpenLDAP Foundation +# $OpenLDAP$ +## Copyright 1998-2002 The OpenLDAP Foundation ## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory ## of this package for details. # @@ -15,9 +16,9 @@ if test $# != 3 ; then exit 1 fi -CVSTAG=$1 +RELNAME=openldap-$1 shift -RELNAME=opendlap-$1 +CVSTAG=$1 shift if test -e $RELNAME ; then @@ -25,21 +26,29 @@ if test -e $RELNAME ; then exit 1 fi -cvs export -r$CVSTAG -d $RELNAME $* +echo Release: $RELNAME +echo CVS Tag: $CVSTAG +echo Modules: $* + +cvs -q export -r $CVSTAG -d $RELNAME $* if test ! -d $RELNAME ; then echo "error: $RELNAME doesn't exists" exit 1 fi -if test ! -e $RELNAME/build/version ; then +if test ! -e $RELNAME/build/version.sh ; then echo "No build version" exit 1 fi +. $RELNAME/build/version.sh + tar cf $RELNAME.tar $RELNAME gzip -9 -c $RELNAME.tar > $RELNAME.tgz md5 $RELNAME.tgz > $RELNAME.md5 +rm -f $RELNAME.tar ls -l $RELNAME.* -cat $RELNAME/build/version + +echo "Made $OL_STRING as $RELNAME.tgz"