blob: f43a6f9657ded8d52fb371e0c0cff29c826b588d (
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
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
269
|
#!/bin/sh
. /etc/repoctl.conf
function isingroup()
{
grp="$1"
for group in `groups`
do if [ "$grp" = "$group" ]
then
return 0
fi
done
return 1
}
function inlist()
{
k="$1"
list="$2"
for e in $list
do
if [ a"$k" = a"$e" ]
then
return 0
fi
done
return 1
}
function update_hdlist()
{
repository="$1"
fdeps="$repository/../../media_info/file-deps"
test -f "$fdeps" && ofdeps="--file-deps $fdeps"
$dryrun /usr/bin/genhdlist2 -v --versioned --allow-empty-media $ofdeps "$repository"
}
function update_hdlists()
{
local distrorelease="$1"
local section="$2"
local sectionrepo="$3"
for arch in $arches
do
update_hdlist "$distribdir/$distrorelease/$arch/media/$section/$sectionrepo"
update_hdlist "$distribdir/$distrorelease/$arch/media/debug/$section/$sectionrepo"
done
update_hdlist "$distribdir/$distrorelease/SRPMS/$section/$sectionrepo"
update_common_MD5SUM $distrorelease
}
function get_lock()
{
local lockdir="$1"
local waitdir="$lockdir/wait.$$"
if mkdir "$lockdir"
then
return
else
if ! mkdir "$waitdir"
then
get_lock "$lockdir"
return
fi
inotifywait -e delete_self "$waitdir"
fi
}
function rm_lock()
{
local lockdir="$1"
if rmdir "$lockdir"
then
return
fi
local l=$(ls -tr "$lockdir" | head -1)
rmdir "$lockdir/$l"
}
function get_repo_lock()
{
local distrorelease="$1"
local section="$2"
local sectionrepo="$3"
repolock="$lockdir/$distrorelease-$section-$sectionrepo.lock"
get_lock "$repolock"
}
function rm_repo_lock()
{
local distrorelease="$1"
local section="$2"
local sectionrepo="$3"
repolock="$lockdir/$distrorelease-$section-$sectionrepo.lock"
rm_lock "$repolock"
}
function get_distro_lock()
{
local distrorelease="$1"
local distrolock="$lockdir/$distrorelease"
get_lock "$distrolock"
for distrosection in $distrosections
do
for sectionrepo in $sectionsrepos
do
get_repo_lock $distrorelease $distrosection $sectionrepo
done
done
}
function rm_distro_lock()
{
local distrorelease="$1"
local distrolock="$lockdir/$distrorelease"
for distrosection in $distrosections
do
for sectionrepo in $sectionsrepos
do
rm_repo_lock $distrorelease $distrosection $sectionrepo
done
done
rm_lock "$distrolock"
}
function update_common_MD5SUM()
{
distrorelease="$1"
for arch in $arches
do
pushd "$distribdir/$distrorelease/$arch/media/media_info"
if [ -z "$dryrun" ]
then
/usr/bin/md5sum hdlist_* synthesis.* > MD5SUM
fi
popd
done
}
function mirror_repository()
{
distrorelease="$1"
$dryrun /usr/bin/rsync $mirror_rsync_options "$distribdir/$distrorelease/" "$finaldistribdir/$distrorelease/"
}
function check_distro_section()
{
local distrorelease="$1"
local section="$2"
local sectionrepo="$3"
if ! inlist "$distrorelease" "$distroreleases"
then
echo "Incorrect distrorelease $distrorelease" >&2
exit 1
fi
if ! inlist "$section" "$distrosections"
then
echo "Incorrect section $section" >&2
exit 1
fi
if ! inlist "$sectionrepo" "$sectionsrepos"
then
echo "Incorrect repository $sectionrepo" >&2
exit 1
fi
}
function move_pkg_files()
{
srcdir="$1"
destdir="$2"
srcpkg="$3"
output="$4"
for file in "$srcdir/"*.rpm
do
fname=$(rpm -qp --qf '%{SOURCERPM}' "$file")
if [ a"$fname" = a"$srcpkg" ]
then
$dryrun mv -v -f "$file" "$destdir" >> "$output"
fi
done
}
function del_pkg_files()
{
pkgdir="$1"
srcpkg="$3"
output="$4"
for file in "$pkgdir/"*.rpm
do
fname=$(rpm -qp --qf '%{SOURCERPM}' "$file")
if [ a"$fname" = a"$srcpkg" ]
then
$dryrun rm -v -f "$file" >> "$output"
fi
done
}
function find_src_pkg()
{
local distrorelease="$1"
local section="$2"
local sectionrepo="$3"
local pkgname="$4"
for file in "$distribdir/$distrorelease/SRPMS/$section/$sectionrepo/"*.rpm
do
fname=$(rpm -qp --qf '%{NAME}' "$file")
if [ a"$fname" = a"$srcname" ]
then
basename "$file"
return 0
fi
done
}
function move_pkg()
{
local src_distrorelease="$1"
local src_section="$2"
local src_sectionrepo="$3"
local dst_distrorelease="$4"
local dst_section="$5"
local dst_sectionrepo="$6"
local srcname="$7"
local output="$8"
check_distro_section "$src_distrorelease" "$src_section" "$src_sectionrepo"
check_distro_section "$dst_distrorelease" "$dst_section" "$dst_sectionrepo"
srcpkg=$(find_src_pkg "$src_distrorelease" "$src_section" "$src_sectionrepo" "$srcname")
if [ -z $srcpkg ]
then
echo "The package $srcname could not be found in $src_distrorelease/$src_section/$src_sectionrepo repository." >&2
exit 2
fi
for arch in $arches
do
move_pkg_files "$distribdir/$src_distrorelease/$arch/media/$src_section/$src_sectionrepo" "$distribdir/$dst_distrorelease/$arch/media/$dst_section/$dst_sectionrepo/" "$srcpkg" "$output"
move_pkg_files "$distribdir/$src_distrorelease/$arch/media/debug/$src_section/$src_sectionrepo" "$distribdir/$dst_distrorelease/$arch/media/debug/$dst_section/$dst_sectionrepo/" "$srcpkg" "$output"
done
$dryrun mv -v -f "$distribdir/$src_distrorelease/SRPMS/$src_section/$src_sectionrepo/$srcpkg" "$distribdir/$dst_distrorelease/SRPMS/$dst_section/$dst_sectionrepo/" >> "$output"
}
function del_pkg()
{
local distrorelease="$1"
local section="$2"
local sectionrepo="$3"
local srcname="$4"
local output="$5"
check_distro_section "$distrorelease" "$section" "$sectionrepo"
srcpkg=$(find_src_pkg "$distrorelease" "$section" "$sectionrepo" "$srcname")
#TODO
}
|