]> git.sur5r.net Git - openldap/blobdiff - build/mkrelease
Ready for release
[openldap] / build / mkrelease
index eb7f679194899f508712db74197d1c5fe0579cda..44e9aa2b7eeb9914b44d659d32915e36bed2984c 100755 (executable)
@@ -1,13 +1,28 @@
 #! /bin/sh
-## Copyright 1998,1999 The OpenLDAP Foundation
-## COPYING RESTRICTIONS APPLY.  See COPYRIGHT File in top level directory
-## of this package for details.
+# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2003 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
+## <http://www.OpenLDAP.org/license.html>.
 #
 # 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
@@ -25,21 +40,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
 
+eval `$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"