abuild: remove broken links in abuild temp repo. sign the control.tar.gz

This commit is contained in:
Natanael Copa 2009-07-23 09:29:54 +00:00
parent ac09f44927
commit c2a0126ea2
1 changed files with 11 additions and 5 deletions

View File

@ -453,6 +453,7 @@ create_apks() {
cd "$dir"
tar -c $(cat "$dir"/.metafiles) | abuild-tar --cut \
| gzip -9 > control.tar.gz
abuild-sign -q control.tar.gz || exit 1
# create the final apk
cat control.tar.gz data.tar.gz > "$PKGDEST"/$apk
@ -466,17 +467,23 @@ apkcache() {
fi
local apk
mkdir -p "$apkcache" || return 1
set --
cd "$apkcache"
# remove broken links
for apk in *.apk; do
if [ -L "$apk" ] && [ ! -f "$apk" ]; then
rm -f "$apk"
fi
done
# create links for this package
for apk in $(listpkg); do
ln -sf "$PKGDEST"/$apk "$apkcache"/$apk
done
# update the apkcache cache here
msg "Updating the cached abuild repository index..."
(
local sign=".SIGN.RSA.${SIGN_PUBLIC_KEY##*/}"
local oldindex=
cd "$apkcache"
if [ -f APKINDEX.tar.gz ]; then
oldindex="--index APKINDEX.tar.gz"
fi
@ -484,7 +491,6 @@ apkcache() {
msg "Signing the index..."
abuild-sign -q APKINDEX.tar.gz.unsigned || exit 1
mv APKINDEX.tar.gz.unsigned APKINDEX.tar.gz
)
}
# predefined splitfunc doc