]> git.sur5r.net Git - openldap/blob - build/mkrelease
Merge remote-tracking branch 'origin/mdb.RE/0.9'
[openldap] / build / mkrelease
1 #! /bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2017 The OpenLDAP Foundation.
6 ## All rights reserved.
7 ##
8 ## Redistribution and use in source and binary forms, with or without
9 ## modification, are permitted only as authorized by the OpenLDAP
10 ## Public License.
11 ##
12 ## A copy of this license is available in the file LICENSE in the
13 ## top-level directory of the distribution or, alternatively, at
14 ## <http://www.OpenLDAP.org/license.html>.
15 #
16 # Make a release
17 #
18
19 #
20 # This script MUST NOT add files to the export nor modify
21 # any file in the export, exceptions:
22 #       make guide.html
23 #
24
25 set -e          # exit immediately if any errors occur
26
27 if test $# != 3 ; then
28         echo 'usage: mkrelease REPO RELNAME TAG'
29         exit 1
30 fi
31
32 REPO=$1
33 shift
34 RELNAME=openldap-$1
35 shift
36 TAG=$1
37 shift
38
39 #Linux
40 #SHA="sha1sum"
41 #MD="md5sum"
42 #BSD
43 #SHA="sha1"
44 #MD="md5"
45 #OpenSSL
46 SHA="openssl sha1"
47 MD="openssl md5"
48
49 if test -e $RELNAME ; then
50         echo "error: $RELNAME exists"
51         exit 1
52 fi
53
54 echo Release: $RELNAME
55 echo Tag: $TAG
56
57 git archive --format=tar --prefix="${RELNAME}/" --remote="${REPO}" "$TAG" |  tar xvf -
58
59 if test ! -d $RELNAME ; then
60         echo "error: $RELNAME doesn't exists"
61         exit 1
62 fi
63
64 if test -e $RELNAME/doc/guide/admin/guide.sdf ; then
65         echo "build guide..."
66         ( cd $RELNAME/doc/guide/admin ; make guide.html )
67 else
68         echo "No guide"
69 fi
70
71 if test -e $RELNAME/libraries/liblunicode/ucdata/uctable.h ; then
72         echo "touching uctable.h..."
73         touch $RELNAME/libraries/liblunicode/ucdata/uctable.h
74 fi
75
76 if test ! -e $RELNAME/build/version.sh ; then
77         echo "No build version"
78         OL_STRING="something"
79 else
80         eval `$RELNAME/build/version.sh`
81 fi
82
83 echo "Rolling up $OL_STRING ..."
84
85
86 tar cf $RELNAME.tar $RELNAME
87 gzip -9 -c $RELNAME.tar > $RELNAME.tgz
88 ${MD} $RELNAME.tgz > $RELNAME.md5
89 ${SHA} $RELNAME.tgz > $RELNAME.sha1
90 rm -f $RELNAME.tar
91
92 ls -l $RELNAME.*
93
94 echo "Made $OL_STRING as $RELNAME.tgz"