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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
#!/bin/bash
#
# updatesync-many
#
# Copyright (c) 2004-2006 by Jason Chu and Judd Vinet
# Contact: <jason@archlinux.org> and <jvinet@zeroflux.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
# USA.
#
usage() {
echo "updatesync-many"
echo "usage: $0 <action> <dbfile> <svn_checkout> <repo_tag>"
echo
echo "This should probably only be run from the Arch db-generation scripts"
echo
echo "Caveats:"
echo " - Make sure you run it from the staging directory"
echo " - Use absolute pathnames for dbfile and svn_checkout"
echo
exit 0
}
die()
{
echo "updatesync-many: $*" >&2
rm -rf $TMPDIR
exit 1
}
msg()
{
echo "updatesync-many: $*" >&2
}
# Get the package name from the filename
# hackish, but should work for now
getpkgname() {
local tmp
tmp=${1##*/}
tmp=${tmp%.pkg.tar.gz}
tmp=${tmp%-i686}
tmp=${tmp%-x86_64}
echo ${tmp%-*-*}
}
check_option() {
local i
for i in ${options[@]}; do
local uc=`echo $i | tr [:lower:] [:upper:]`
local lc=`echo $i | tr [:upper:] [:lower:]`
if [ "$uc" = "$1" -o "$lc" = "$1" ]; then
echo $1
return
fi
done
}
get_md5checksum()
{
md5line=`md5sum $1`
[ ! -z "$md5line" ] && pkgmd5sum=${md5line% *}
echo $pkgmd5sum
}
db_write_entry()
{
unset pkgname pkgver pkgrel pkgdesc license groups provides md5sums force
unset replaces depends conflicts backup source install build makedepends
unset options
source $1 || return 1
cd $TMPDIR
mkdir $pkgname-$pkgver-$pkgrel || return 1
cd $pkgname-$pkgver-$pkgrel
# desc
: >desc
echo "%FILENAME%" >>desc
echo "$2" >>desc
echo "" >>desc
echo "%NAME%" >>desc
echo "$pkgname" >>desc
echo "" >>desc
echo "%VERSION%" >>desc
echo "$pkgver-$pkgrel" >>desc
echo "" >>desc
echo "%DESC%" >>desc
echo "$pkgdesc" >>desc
echo "" >>desc
echo "%CSIZE%" >>desc
echo "$csize" >>desc
echo "" >>desc
if [ ! -z $pkgmd5sum ]; then
echo "%MD5SUM%" >>desc
echo "$pkgmd5sum" >>desc
echo "" >>desc
fi
if [ ${#groups[*]} -gt 0 ]; then
echo "%GROUPS%" >>desc
for it in "${groups[@]}"; do
echo "$it" >>desc
done
echo "" >>desc
fi
if [ ${#replaces[*]} -gt 0 ]; then
echo "%REPLACES%" >>desc
for it in "${replaces[@]}"; do
echo "$it" >>desc
done
echo "" >>desc
fi
if [ "$force" = "y" -o "$force" = "Y" -o "`check_option FORCE`" ]; then
echo "%FORCE%" >>desc
echo "" >>desc
fi
# depends
: >depends
if [ ${#depends[*]} -gt 0 ]; then
echo "%DEPENDS%" >>depends
for it in "${depends[@]}"; do
echo "$it" >>depends
done
echo "" >>depends
fi
if [ ${#conflicts[*]} -gt 0 ]; then
echo "%CONFLICTS%" >>depends
for it in "${conflicts[@]}"; do
echo "$it" >>depends
done
echo "" >>depends
fi
if [ ${#provides[*]} -gt 0 ]; then
echo "%PROVIDES%" >>depends
for it in "${provides[@]}"; do
echo "$it" >>depends
done
echo "" >>depends
fi
}
delete_entry()
{
# grab the pkgname
pkgname=$(getpkgname $1)
for i in *; do
if [ "${i%-*-*}" = "$pkgname" ]; then
rm -rf $i
fi
done
}
update_entry()
{
pkgfile=$1
pkgname=$(getpkgname ${pkgfile})
fullname=$(basename ${pkgfile})
pkgpath="$SVNCO/$pkgname/repos/$REPOTAG"
# find the matching PKGBUILD
if [ ! -d "$pkgpath" ]; then
msg "WARNING: could not find PKGBUILD for $pkgname, cannot update this entry"
return
fi
pkgbuild="${pkgpath}/PKGBUILD"
if [ ! -f $pkgbuild ]; then
msg "WARNING: could not find PKGBUILD for $fullname, cannot update this entry"
return
fi
source $pkgbuild
if [ $? -ne 0 ]; then
msg "WARNING: PKGBUILD for $fullname has errors, cannot update this entry"
return
fi
# all good so far - delete the old entry
cd $TMPDIR
delete_entry $pkgfile
csize=`du -b $pkgfile | cut -f1`
pkgmd5sum=`get_md5checksum $pkgfile`
[ -z $pkgmd5sum ] && die "error generating checksum for $pkgfile"
db_write_entry ${pkgbuild} ${fullname} || die "error writing entry for $pkgname"
cd - >/dev/null
}
if [ ! "`type -p lsof`" ]; then
echo "ERROR: lsof is needed to run updatesync-many!"
exit 1
fi
if [ $# -lt 3 ]; then
usage
exit 1
fi
if [ "$1" = "-h" -o "$1" = "--help" ]; then
usage
exit 0
fi
ACTION=$1
PKGDB=$2
SVNCO=$3
REPOTAG=$4
STAGEDIR="`pwd`"
PKGDIR="`dirname $PKGDB`"
if [ "$PKGDIR" = "." ]; then
PKGDIR=$STAGEDIR
fi
if [ "$ACTION" != "add" -a "$ACTION" != "del" ]; then
usage
exit 1
fi
# Prepare the sync db for modifications
TMPDIR=$(mktemp -d /tmp/updatesync-many.XXXXXXXXXX) || exit 1
cd $TMPDIR
if [ ! -f $PKGDB ]; then
die "$PKGDB not found"
fi
msg "Unpacking db: $PKGDB"
tar zxf $PKGDB || die "error unpacking $PKGDB"
# Process packages in the staging directory
for pkgfile in $STAGEDIR/*.pkg.tar.gz; do
# Make sure this file isn't currently in use by any processes...
# This is our cheap way of (mostly) making sure the file isn't being
# uploaded at this very time (and thus incomplete).
# Of course, if an upload failed and the scp connection terminated, then
# this check will fail us.
lsof $pkgfile &>/dev/null
[ $? -ne 1 ] && continue
pkgname=$(getpkgname ${pkgfile})
if [ "$ACTION" = "del" ]; then
msg "Deleting entry: $pkgname"
delete_entry $pkgfile
else
msg "Updating entry: $pkgname"
update_entry $pkgfile
fi
done
# Repackage the DB
msg "Repacking db: $PKGDB"
cd $TMPDIR
tar c * | gzip -9 >$PKGDB || die "error writing to $PKGDB"
cd /
rm -rf $TMPDIR
exit 0
|