ptrcports/qsign/qsign

15 lines
312 B
Text
Raw Normal View History

2022-04-26 02:11:53 +00:00
#!/bin/sh -e
arch="$(apk --print-arch)"
2022-04-26 02:11:53 +00:00
. /etc/abuild.conf
2022-05-01 07:57:11 +00:00
. /etc/qsign.conf
2022-04-26 02:11:53 +00:00
2022-05-01 07:57:11 +00:00
: ${repos:="main community testing"}
for repo in $repos; do
cd "$REPODEST/$repo/$arch" || true
apk index --no-warnings --rewrite-arch=$arch ./*.apk -o APKINDEX.tar.gz -x APKINDEX.tar.gz
2022-04-26 02:11:53 +00:00
abuild-sign APKINDEX.tar.gz
done