File: mkrelease

package info (click to toggle)
openldap2 2.0.23-6.3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 7,816 kB
  • ctags: 6,366
  • sloc: ansic: 86,391; sh: 9,816; makefile: 1,270; cpp: 1,107; sql: 838; php: 700; perl: 134; tcl: 40
file content (51 lines) | stat: -rwxr-xr-x 1,044 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#! /bin/sh
# $OpenLDAP: pkg/ldap/build/mkrelease,v 1.1.2.5 2002/01/04 20:38:06 kurt Exp $
## Copyright 1998-2002 The OpenLDAP Foundation
## COPYING RESTRICTIONS APPLY.  See COPYRIGHT File in top level directory
## of this package for details.
#
# Make a release
#	mkrelease RELNAME CVSTAG CVSMODULES
# where CVSTAG is the tag to export from the current CVSROOT
#

set -e 		# exit immediately if any errors occur

if test $# != 3 ; then
	echo 'usage: mkrelease RELNAME CVSTAG CVSMODULES ...'
	exit 1
fi

RELNAME=openldap-$1
shift
CVSTAG=$1
shift

if test -e $RELNAME ; then
	echo "error: $RELNAME exists"
	exit 1
fi

echo Release: $RELNAME
echo CVS Tag: $CVSTAG
echo Modules: $*

cvs -q export -r $CVSTAG -d $RELNAME $*

if test ! -d $RELNAME ; then
	echo "error: $RELNAME doesn't exists"
	exit 1
fi

if test ! -e $RELNAME/build/version ; then
	echo "No build version"
	exit 1
fi

tar cf $RELNAME.tar $RELNAME
gzip -9 -c $RELNAME.tar > $RELNAME.tgz
md5 $RELNAME.tgz > $RELNAME.md5
rm -f $RELNAME.tar

ls -l $RELNAME.*
cat $RELNAME/build/version