blob: 3f24e17e5e23d453ac7f521862625be4af27182b (
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
|
#! /bin/sh
# repo2solv
#
# give it a directory of a local mirror of a repo and this
# tries to detect the repo type and generate one SOLV file on stdout
get_DESCRDIR () {
local d=$(grep '^DESCRDIR' content | sed 's/^DESCRDIR[[:space:]]\+\(.*[^[:space:]]\)[[:space:]]*$/\1/')
if test -z "$d"; then
echo suse/setup/descr
else
echo ${d}
fi
}
test_susetags() {
if test -s content; then
DESCR=$(get_DESCRDIR)
test -d $DESCR
return $?
else
return 1
fi
}
repomd_findfile() {
local t=$1
local p=$2
local f
if test -n "$t" -a -s repomd.xml ; then
f=`repomdxml2solv -q $t:location < repomd.xml 2>/dev/null`
f=${f##*/}
if test -f "$f" ; then
echo "$f"
return
fi
fi
if test -f "$p.bz2" ; then
echo "$p.bz2"
elif test -f "$p.gz" ; then
echo "$p.gz"
elif test -f "$p" ; then
echo "$p"
fi
}
repomd_decompress() {
case $1 in
*.gz) gzip -dc "$1" ;;
*.bz2) bzip2 -dc "$1" ;;
*.lzma) lzma -dc "$1" ;;
*.xz) xz -dc "$1" ;;
*) cat "$1" ;;
esac
}
susetags_findfile_cat() {
if test -s "$1.xz" ; then
xz -dc "$1.xz"
elif test -s "$1.lzma" ; then
lzma -dc "$1.lzma"
elif test -s "$1.bz2" ; then
bzip2 -dc "$1.bz2"
elif test -s "$1.gz" ; then
gzip -dc "$1.gz"
elif test -s "$1" ; then
cat "$1"
fi
}
# signal an error if there is a problem
set -e
LANG=C
unset CDPATH
parser_options=${PARSER_OPTIONS:-}
findopt="-prune"
repotype=
while true ; do
if test "$1" = "-o" ; then
exec > "$2"
shift
shift
elif test "$1" = "-R" ; then
# recursive
findopt=
repotype=plaindir
shift
else
break
fi
done
dir="$1"
cd "$dir" || exit 1
if test -z "$repotype" ; then
# autodetect repository type
if test -d repodata -o -f repomd.xml; then
repotype=rpmmd
elif test_susetags ; then
repotype=susetags
else
repotype=plaindir
fi
fi
if test "$repotype" = rpmmd ; then
test -d repodata && {
cd repodata || exit 2
}
primfile=
primxml=`repomd_findfile primary primary.xml`
if test -n "$primxml" -a -s "$primxml" ; then
primfile=`mktemp` || exit 3
(
# fake tag to combine primary.xml and extensions
# like susedata.xml, other.xml, filelists.xml
echo '<rpmmd>'
if test -f $primxml ; then
repomd_decompress $primxml
# add a newline
echo
fi
susedataxml=`repomd_findfile susedata susedata.xml`
if test -f "$susedataxml" ; then
repomd_decompress "$susedataxml"
fi
echo '</rpmmd>'
) | grep -v '\?xml' | sed '1i\<?xml version="1.0" encoding="UTF-8"?>' | rpmmd2solv $parser_options > $primfile || exit 4
fi
prodfile=
prodxml=`repomd_findfile products products.xml`
if test -z "$prodxml" ; then
prodxml=`repomd_findfile product product.xml`
fi
if test -n "$prodxml" -a -s "$prodxml" ; then
prodfile=`mktemp` || exit 3
repomd_decompress "$prodxml" | rpmmd2solv $parser_options > $prodfile || exit 4
fi
patternfile=
patternxml=`repomd_findfile 'patterns' patterns.xml`
if test -n "$patternxml" -a -s "$patternxml" ; then
patternfile=`mktemp` || exit 3
repomd_decompress "$patternxml" | rpmmd2solv $parser_options > $patternfile || exit 4
fi
# This contains repomd.xml
# for now we only read some keys like timestamp
repomdfile=
repomdxml=`repomd_findfile '' repomd.xml`
if test -n "$repomdxml" -a -s "$repomdxml" ; then
repomdfile=`mktemp` || exit 3
repomd_decompress "$repomdxml" | repomdxml2solv $parser_options > $repomdfile || exit 4
fi
# This contains suseinfo.xml, which is an extension to repomd.xml
# for now we only read some keys like expiration and products
suseinfofile=
suseinfoxml=`repomd_findfile suseinfo suseinfo.xml`
if test -n "$suseinfoxml" -a -s "$suseinfoxml" ; then
suseinfofile=`mktemp` || exit 3
repomd_decompress "$suseinfoxml" | repomdxml2solv $parser_options > $suseinfofile || exit 4
fi
# This contains a updateinfo.xml* and maybe patches
updateinfofile=
updateinfoxml=`repomd_findfile updateinfo updateinfo.xml`
if test -n "$updateinfoxml" -a -s "$updateinfoxml" ; then
updateinfofile=`mktemp` || exit 3
repomd_decompress "$updateinfoxml" | updateinfoxml2solv $parser_options > $updateinfofile || exit 4
fi
# This contains a deltainfo.xml*
deltainfofile=
deltainfoxml=`repomd_findfile deltainfo deltainfo.xml`
if test -z "$deltainfoxml"; then
deltainfoxml=`repomd_findfile prestodelta prestodelta.xml`
fi
if test -n "$deltainfoxml" -a -s "$deltainfoxml" ; then
deltainfofile=`mktemp` || exit 3
repomd_decompress "$deltainfoxml" | deltainfoxml2solv $parser_options > $deltainfofile || exit 4
fi
# Now merge primary, patches, updateinfo, and deltainfo
mergesolv $repomdfile $suseinfofile $primfile $prodfile $patternfile $updateinfofile $deltainfofile
rm -f $repomdfile $suseinfofile $primfile $patternfile $prodfile $updateinfofile $deltainfofile
elif test "$repotype" = susetags ; then
olddir=`pwd`
DESCR=$(get_DESCRDIR)
cd ${DESCR} || exit 2
(
# First packages
susetags_findfile_cat packages
# DU
susetags_findfile_cat packages.DU
# Now default language
susetags_findfile_cat packages.en
# Now patterns. Not simply those files matching *.pat{,.gz,bz2},
# but only those mentioned in the file 'patterns'
if test -f patterns ; then
for i in `cat patterns`; do
if test -s "$i" ; then
repomd_decompress "$i"
fi
done
fi
# Now all other packages.{lang}. Needs to come last as it switches
# languages for all following susetags files
for i in packages.* ; do
case $i in
*.gz|*.bz2|*.xz|*.lzma) name="${i%.*}" ;;
*) name="$i" ;;
esac
case $name in
# ignore files we handled already
*.DU | *.en | *.FL | packages ) continue ;;
*)
suff=${name#packages.}
echo "=Lan: $suff"
repomd_decompress "$i"
esac
done
) | susetags2solv -c "${olddir}/content" $parser_options || exit 4
cd "$olddir"
elif test "$repotype" = plaindir ; then
find * -name .\* -prune -o $findopt -name \*.delta.rpm -o -name \*.patch.rpm -o -name \*.rpm -a -type f -print0 | rpms2solv -0 -m -
else
echo "unknown repository type '$repotype'" >&2
exit 1
fi
|