openldap/build/mkrelease

95 lines
1.9 KiB
Text
Raw Normal View History

1999-07-28 16:56:34 -04:00
#! /bin/sh
1999-08-30 04:08:00 -04:00
# $OpenLDAP$
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
2015-02-11 16:36:57 -05:00
## Copyright 1998-2015 The OpenLDAP Foundation.
2003-11-25 21:58:56 -05: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-28 16:56:34 -04:00
#
# Make a release
#
#
# This script MUST NOT add files to the export nor modify
2011-03-26 10:56:10 -04:00
# any file in the export, exceptions:
# make guide.html
#
1999-07-28 16:56:34 -04:00
set -e # exit immediately if any errors occur
if test $# != 3 ; then
2011-03-26 10:56:10 -04:00
echo 'usage: mkrelease REPO RELNAME TAG'
1999-07-28 16:56:34 -04:00
exit 1
fi
2011-03-26 10:56:10 -04:00
REPO=$1
shift
1999-07-29 21:01:17 -04:00
RELNAME=openldap-$1
1999-07-28 16:56:34 -04:00
shift
2011-03-26 10:56:10 -04:00
TAG=$1
1999-07-29 20:57:35 -04:00
shift
1999-07-28 16:56:34 -04:00
2014-09-29 18:10:36 -04:00
#Linux
#SHA="sha1sum"
#MD="md5sum"
#BSD
#SHA="sha1"
#MD="md5"
#OpenSSL
SHA="openssl sha1"
MD="openssl md5"
1999-07-28 16:56:34 -04:00
if test -e $RELNAME ; then
echo "error: $RELNAME exists"
exit 1
fi
1999-07-29 21:16:21 -04:00
echo Release: $RELNAME
2011-03-26 10:56:10 -04:00
echo Tag: $TAG
1999-07-29 21:16:21 -04:00
2011-03-26 10:56:10 -04:00
git archive --format=tar --prefix="${RELNAME}/" --remote="${REPO}" "$TAG" | tar xvf -
1999-07-28 16:56:34 -04:00
if test ! -d $RELNAME ; then
echo "error: $RELNAME doesn't exists"
exit 1
fi
2005-05-11 04:26:56 -04:00
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
2006-05-12 21:53:31 -04:00
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
1999-07-28 16:56:34 -04:00
echo "No build version"
2004-12-31 18:00:53 -05:00
OL_STRING="something"
else
eval `$RELNAME/build/version.sh`
1999-07-28 16:56:34 -04:00
fi
2004-12-31 18:00:53 -05:00
echo "Rolling up $OL_STRING ..."
1999-07-28 16:56:34 -04:00
tar cf $RELNAME.tar $RELNAME
gzip -9 -c $RELNAME.tar > $RELNAME.tgz
2014-09-29 18:10:36 -04:00
${MD} $RELNAME.tgz > $RELNAME.md5
${SHA} $RELNAME.tgz > $RELNAME.sha1
2000-01-20 19:50:57 -05:00
rm -f $RELNAME.tar
1999-07-28 16:56:34 -04:00
ls -l $RELNAME.*
2002-02-24 13:56:06 -05:00
echo "Made $OL_STRING as $RELNAME.tgz"