1999-07-29 04:56:34 +08:00
|
|
|
#! /bin/sh
|
1999-08-30 16:08:00 +08:00
|
|
|
# $OpenLDAP$
|
2003-11-26 12:17:25 +08:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
##
|
2005-01-02 04:49:32 +08:00
|
|
|
## Copyright 1998-2005 The OpenLDAP Foundation.
|
2003-11-26 10:58:56 +08:00
|
|
|
## 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>.
|
1999-07-29 04:56:34 +08:00
|
|
|
#
|
|
|
|
# Make a release
|
|
|
|
# mkrelease RELNAME CVSTAG CVSMODULES
|
|
|
|
# where CVSTAG is the tag to export from the current CVSROOT
|
|
|
|
#
|
|
|
|
|
2003-03-24 11:50:02 +08:00
|
|
|
#
|
|
|
|
# This script MUST NOT add files to the export nor modify
|
|
|
|
# any file in the export.
|
|
|
|
#
|
|
|
|
|
1999-07-29 04:56:34 +08:00
|
|
|
set -e # exit immediately if any errors occur
|
|
|
|
|
|
|
|
if test $# != 3 ; then
|
|
|
|
echo 'usage: mkrelease RELNAME CVSTAG CVSMODULES ...'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
1999-07-30 09:01:17 +08:00
|
|
|
RELNAME=openldap-$1
|
1999-07-29 04:56:34 +08:00
|
|
|
shift
|
1999-07-30 08:57:35 +08:00
|
|
|
CVSTAG=$1
|
|
|
|
shift
|
1999-07-29 04:56:34 +08:00
|
|
|
|
|
|
|
if test -e $RELNAME ; then
|
|
|
|
echo "error: $RELNAME exists"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
1999-07-30 09:16:21 +08:00
|
|
|
echo Release: $RELNAME
|
|
|
|
echo CVS Tag: $CVSTAG
|
|
|
|
echo Modules: $*
|
|
|
|
|
2005-01-01 07:00:53 +08:00
|
|
|
cvs -q export -kkv -r $CVSTAG -d $RELNAME $*
|
1999-07-29 04:56:34 +08:00
|
|
|
|
|
|
|
if test ! -d $RELNAME ; then
|
|
|
|
echo "error: $RELNAME doesn't exists"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2000-09-15 11:27:20 +08:00
|
|
|
if test ! -e $RELNAME/build/version.sh ; then
|
1999-07-29 04:56:34 +08:00
|
|
|
echo "No build version"
|
2005-01-01 07:00:53 +08:00
|
|
|
OL_STRING="something"
|
|
|
|
else
|
|
|
|
eval `$RELNAME/build/version.sh`
|
1999-07-29 04:56:34 +08:00
|
|
|
fi
|
|
|
|
|
2005-01-01 07:00:53 +08:00
|
|
|
echo "Rolling up $OL_STRING ..."
|
|
|
|
|
2000-09-15 11:27:20 +08:00
|
|
|
|
1999-07-29 04:56:34 +08:00
|
|
|
tar cf $RELNAME.tar $RELNAME
|
|
|
|
gzip -9 -c $RELNAME.tar > $RELNAME.tgz
|
|
|
|
md5 $RELNAME.tgz > $RELNAME.md5
|
2005-04-03 06:19:15 +08:00
|
|
|
sha1 $RELNAME.tgz > $RELNAME.sha1
|
2000-01-21 08:50:57 +08:00
|
|
|
rm -f $RELNAME.tar
|
1999-07-29 04:56:34 +08:00
|
|
|
|
|
|
|
ls -l $RELNAME.*
|
2002-02-25 02:56:06 +08:00
|
|
|
|
|
|
|
echo "Made $OL_STRING as $RELNAME.tgz"
|