From 307af8fd5a3e74ebcb64ac5bbe57493b59ead233 Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Fri, 14 Oct 2022 21:04:20 +0200 Subject: feat: shamelessly copy pkgkit from sr.ht-apkbuilds Copy some code from sourcehut's alpine build[0] to build my own packages. [0]: https://git.sr.ht/~sircmpwn/sr.ht-apkbuilds --- submit-builds | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100755 submit-builds (limited to 'submit-builds') diff --git a/submit-builds b/submit-builds new file mode 100755 index 0000000..de6c58d --- /dev/null +++ b/submit-builds @@ -0,0 +1,66 @@ +#!/bin/sh +upstream=https://builds.sr.ht +manifest=build.yml + +if [ -e ~/.config/sr.ht ] +then + . ~/.config/sr.ht +fi + +while getopts m:u:t:h flag +do + case $flag in + u) + upstream="$OPTARG" + ;; + t) + bearer_token="$OPTARG" + ;; + m) + manifest="$OPTARG" + ;; + h) + echo "Usage: $0 [-u https://upstream...] [-t oauth token] " + exit 0 + ;; + esac +done +shift $((OPTIND-1)) + +builds="" +note="" +for target in $* +do + if [ "$builds" = "" ] + then + builds="'${target#sr.ht/}'" + note="${target#sr.ht/}" + else + builds="$builds, '${target#sr.ht/}'" + if [ "${#note}" -lt 128 ] + then + note="$note, ${target#sr.ht/}" + fi + fi +done + +vars="$(sed "s/packages: \\[\\]/packages: [$builds]/g" < $manifest | jq -sR '{ + "manifest": ., + "tags": ["sr.ht-apkbuilds"], + "note": "'"$note"'" +}')" +query="$(jq -sR '.' <<"EOF" +mutation SubmitJob($manifest: String!, $tags: [String!]!, $note: String!) { + submit(manifest: $manifest, tags: $tags, note: $note) { + id, tags + } +} +EOF +)" + +curl --oauth2-bearer "$bearer_token" \ + -H Content-Type:application/json \ + -d '{ + "query": '"$query"', + "variables": '"$vars"' + }' "$upstream/query" | jq . -- cgit v1.2.3