From fc37760b89db5321a18e10f964a83fb43559c20d Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Sat, 26 Mar 2011 07:56:10 -0700 Subject: [PATCH] Update mkrelease for git(1) --- build/mkrelease | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build/mkrelease b/build/mkrelease index 6076106bec..a05b02d3d5 100755 --- a/build/mkrelease +++ b/build/mkrelease @@ -14,25 +14,26 @@ ## . # # 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. +# any file in the export, exceptions: +# make guide.html # set -e # exit immediately if any errors occur if test $# != 3 ; then - echo 'usage: mkrelease RELNAME CVSTAG CVSMODULES ...' + echo 'usage: mkrelease REPO RELNAME TAG' exit 1 fi +REPO=$1 +shift RELNAME=openldap-$1 shift -CVSTAG=$1 +TAG=$1 shift if test -e $RELNAME ; then @@ -41,10 +42,9 @@ if test -e $RELNAME ; then fi echo Release: $RELNAME -echo CVS Tag: $CVSTAG -echo Modules: $* +echo Tag: $TAG -cvs -q export -kkv -r $CVSTAG -d $RELNAME $* +git archive --format=tar --prefix="${RELNAME}/" --remote="${REPO}" "$TAG" | tar xvf - if test ! -d $RELNAME ; then echo "error: $RELNAME doesn't exists"