summaryrefslogtreecommitdiffstats
path: root/bin/scons-cdist
blob: 425e430b1711759d02dd6d45607cec4dd10c4405 (plain)
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#!/bin/sh
#
# Copyright (c) 2005 The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

PROG=`basename $0`
FLAGS="ahnqrstz"
USAGE="Usage:  ${PROG} [-${FLAGS}] change"

HELP="$USAGE

  -a    Update the latest Aegis baseline (aedist) file.
  -h    Print this help message and exit.
  -n    Don't execute, just echo commands.
  -q    Quiet, don't print commands before executing them.
  -r    Rsync the Aegis repository to SourceForge.
  -s    Update the sourceforge.net CVS repository.
  -t    Update the tigris.org CVS repository.
  -z    Update the latest .zip file.
"

DO=""
PRINT="echo"
EXECUTE="eval"

while getopts $FLAGS FLAG; do
	case $FLAG in
	a | r | s | t | z )
		DO="${DO}${FLAG}"
		;;
	h )
		echo "${HELP}"
                exit 0
		;;
	n )
		EXECUTE=":"
		;;
        q )
		PRINT=":"
                ;;
	* )
		echo "${USAGE}" >&2
		exit 1
		;;
	esac
done

shift `expr ${OPTIND} - 1`

if test "X$1" = "X"; then
    echo "${USAGE}" >&2
    exit 1
fi

if test "X$DO" = "X"; then
    DO="arstz"
fi

cmd()
{
    $PRINT "$*"
    $EXECUTE "$*"
}

CHANGE=$1

if test X$EXECUTE != "X:" -a "X$SSH_AGENT_PID" = "X"; then
    eval `ssh-agent`
    ssh-add
    trap 'eval `ssh-agent -k`; exit' 0 1 2 3 15
fi

cd

BASELINE=`aesub -p ${AEGIS_PROJECT} -c ${CHANGE} '${Project trunk_name}'`

TMPBLAE="/tmp/${BASELINE}.ae"
TMPCAE="/tmp/${AEGIS_PROJECT}.C${CHANGE}.ae"

SFLOGIN="stevenknight"
SFHOST="scons.sourceforge.net"
SFDEST="/home/groups/s/sc/scons/htdocs"

#
# Copy the baseline .ae to the constant location on SourceForge.
#
case "${DO}" in
    *a* )
        cmd "aedist -s -bl -p ${AEGIS_PROJECT} > ${TMPBLAE}"
        cmd "scp ${TMPBLAE} ${SFLOGIN}@${SFHOST}:${SFDEST}/${BASELINE}.ae"
        cmd "rm ${TMPBLAE}"
        ;;
esac

#
# Copy the latest .zip file to the constant location on SourceForge.
#
case "${DO}" in
    *z* )
        BUILD_DIST=`aegis -p ${AEGIS_PROJECT} -cd -bl`/build/dist
        SCONS_SRC=`echo ${AEGIS_PROJECT} | sed 's/scons./scons-src-/'`.zip
        cmd "scp ${BUILD_DIST}/${SCONS_SRC} ${SFLOGIN}@${SFHOST}:${SFDEST}/scons-src-latest.zip"
esac

#
# Sync Aegis tree with SourceForge.
#
# Cribbed and modified from Peter Miller's same-named script in
# /home/groups/a/ae/aegis/aegis at SourceForge.
#
# Guide to what this does with rsync:
#
#   --rsh=ssh          use ssh for the transfer
#   -l                 copy symlinks as symlinks
#   -p                 preserve permissions
#   -r                 recursive
#   -t                 preserve times
#   -z                 compress data
#   --stats            file transfer statistics
#   --exclude          exclude files matching the pattern
#   --delete           delete files that don't exist locally
#   --delete-excluded  delete files that match the --exclude patterns
#   --progress         show progress during the transfer
#   -v                 verbose
#
# We no longer use the --stats option.
#
case "${DO}" in
    *r* )
	LOCAL=/home/scons/scons
	REMOTE=/home/groups/s/sc/scons/scons
	cmd "/usr/bin/rsync --rsh=ssh -l -p -r -t -z \
		--exclude build \
		--exclude '*,D' \
		--exclude '*.pyc' \
		--exclude aegis.log \
                --exclude '.sconsign*' \
		--delete --delete-excluded \
		--progress -v \
		${LOCAL}/. scons.sourceforge.net:${REMOTE}/."
        ;;
esac

#
# Sync the CVS tree with Tigris.org.
#
case "${DO}" in
    *t* )
        cmd "ae2cvs -X -aegis -p ${AEGIS_PROJECT} -c ${CHANGE} -u $HOME/SCons/tigris.org/scons"
        ;;
esac

#
# Sync the CVS tree with SourceForge.
#
case "${DO}" in
    *s* )
        export CVS_RSH=ssh
        cmd "ae2cvs -X -aegis -p ${AEGIS_PROJECT} -c ${CHANGE} -u $HOME/SCons/sourceforge.net/scons"
        ;;
esac

#
# Send the change .ae to the scons-aedist mailing list
#
# The subject requires editing by hand...
#
#aedist -s -p ${AEGIS_PROJECT} ${CHANGE} > ${TMPCAE}
#aegis -l -p ${AEGIS_PROJECT} -c ${CHANGE} cd |
#	pine -attach_and_delete ${TMPCAE} scons-aedist@lists.sourceforge.net