forked from pocoproject/poco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkrel
executable file
·88 lines (74 loc) · 1.34 KB
/
mkrel
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#! /bin/sh
#
# mkrel
#
# Create a release for distribution.
# This is a wrapper for mkrelease that syncs to the
# Perforce head revision, reads the current
# version from $POCO_BASE/VERSION and requires a release
# specification (loaded from $POCO_BASE/release/spec/*.release)
# as argument.
#
# usage: mkrel [<specfile>]
#
if [ "$POCO_BASE" = "" ] ; then
echo "Error: POCO_BASE not set."
exit 1
fi
cd $POCO_BASE
if [ ! -f VERSION ] ; then
echo "Error: No VERSION file found."
exit 2
fi
case `uname` in
CYGWIN*) cygwin=1
;;
*) cygwin=""
;;
esac
label=""
spec=""
lineEndConv=""
while [ "$1" != "" ] ;
do
if [ "$1" = "-l" ] ; then
shift
label=@$1
shift
elif [ "$1" = "-c" ] ; then
shift
lineEndConv=$1
shift
else
spec=$1
shift
fi
done
if [ "$spec" != "" ] ; then
relspec="-f release/spec/${spec}.release"
reltag="-$spec"
else
relspec=""
reltag=""
fi
if [ "$lineEndConv" != "" ] ; then
lnendcvt="-c ${lineEndConv}"
fi
if [ $cygwin ] ; then
export PWD=`cygpath -w $POCO_BASE`
fi
#
# Sync files
#
if [ "$label" != "" ] ; then
echo "Syncing files to ${label}..."
p4 sync ./...$label
fi
read version <$POCO_BASE/VERSION
release=$version$reltag
#
# Build release
#
echo "Building release $release"
rm -rf releases/poco-$release.*
$POCO_BASE/release/script/mkrelease $release $relspec $lnendcvt