This repository has been archived on 2023-01-08. You can view files and clone it, but cannot push or open issues or pull requests.
ptrcports/qsign/qsign

15 lines
316 B
Plaintext
Raw Permalink 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
2022-06-20 05:22:13 +00:00
cd "$REPODEST/$repo/$arch" || continue
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