X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fmkrelease;h=a05b02d3d53cbcc28d640e78322af33ea9ba15f8;hb=31101e19628a1ce6c6fabf1385efb79915bf4bb4;hp=ee866c850d39d242debd28101466afc38a74ce56;hpb=3c598e89fb34a892d369a138daa8c3314294493c;p=openldap diff --git a/build/mkrelease b/build/mkrelease index ee866c850d..a05b02d3d5 100755 --- a/build/mkrelease +++ b/build/mkrelease @@ -2,7 +2,7 @@ # $OpenLDAP$ ## This work is part of OpenLDAP Software . ## -## Copyright 1998-2004 The OpenLDAP Foundation. +## Copyright 1998-2011 The OpenLDAP Foundation. ## All rights reserved. ## ## Redistribution and use in source and binary forms, with or without @@ -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,26 +42,41 @@ if test -e $RELNAME ; then fi echo Release: $RELNAME -echo CVS Tag: $CVSTAG -echo Modules: $* +echo Tag: $TAG -cvs -q export -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" 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/libraries/liblunicode/ucdata/uctable.h ; then + echo "touching uctable.h..." + touch $RELNAME/libraries/liblunicode/ucdata/uctable.h +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 -eval `$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.*