X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fmkrelease;h=368e6ed86a02eb684b9818687a75d631e57c3394;hb=3673cceb6c2157e4d077462f811077291fe8634c;hp=f0e7a1f5d70d1ad5a99cbb16671cbe8ddb94dfb8;hpb=abfbe2ba08e6ea55e6b20f5835fee9a73a9ad8c8;p=openldap diff --git a/build/mkrelease b/build/mkrelease index f0e7a1f5d7..368e6ed86a 100755 --- a/build/mkrelease +++ b/build/mkrelease @@ -1,14 +1,28 @@ #! /bin/sh # $OpenLDAP$ -## Copyright 1998-2002 The OpenLDAP Foundation -## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory -## of this package for details. +## This work is part of OpenLDAP Software . +## +## Copyright 1998-2005 The OpenLDAP Foundation. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted only as authorized by the OpenLDAP +## Public License. +## +## A copy of this license is available in the file LICENSE in the +## top-level directory of the distribution or, alternatively, at +## . # # 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. +# + set -e # exit immediately if any errors occur if test $# != 3 ; then @@ -30,23 +44,34 @@ echo Release: $RELNAME echo CVS Tag: $CVSTAG echo Modules: $* -cvs -q export -r $CVSTAG -d $RELNAME $* +cvs -q export -kkv -r $CVSTAG -d $RELNAME $* if test ! -d $RELNAME ; then echo "error: $RELNAME doesn't exists" exit 1 fi +if test -e $RELNAME/doc/guide/admin/guide.sdf ; then + echo "build guide..." + ( cd $RELNAME/doc/guide/admin ; make guide.html ) +else + echo "No guide" +fi + if test ! -e $RELNAME/build/version.sh ; then echo "No build version" - exit 1 + OL_STRING="something" +else + eval `$RELNAME/build/version.sh` fi -. $RELNAME/build/version.sh +echo "Rolling up $OL_STRING ..." + tar cf $RELNAME.tar $RELNAME gzip -9 -c $RELNAME.tar > $RELNAME.tgz md5 $RELNAME.tgz > $RELNAME.md5 +sha1 $RELNAME.tgz > $RELNAME.sha1 rm -f $RELNAME.tar ls -l $RELNAME.*