#!/bin/sh # Requires: coreutils, curl, jq, git set -ue API_KEY="$(cat "$(dirname "$(readlink -f "$0")")"/gitea-api-token.txt)" gitea_cmd () { ADD_PARAMS=${2:-} curl -s -H 'accept: application/json' -H 'Content-Type: application/json' \ -H "Authorization: token $API_KEY" ${ADD_PARAMS[*]} \ "https://src.opensuse.org/api/v1/$1" 2>/dev/null } [ "$#" -lt 2 ] && exit 1 if [ "$1" = "openSUSE:Factory" ] ; then OUT=$(osc develproject "$1" "$2") DEVPRJ="$(dirname "$OUT")" PKG="$(basename "$OUT")" else DEVPRJ="$1" PKG="$2" fi # osc co should not finish with exit 1 osc co -u -c "$DEVPRJ" "$PKG" || /bin/true cd "$PKG" # Fork # Whoami? LOGIN="$(gitea_cmd "user" | jq -r '.login')" # Check whether the fork already exists FRK_OUT="$(gitea_cmd "repos/pool/$PKG/forks")" FORKS="$(echo $FRK_OUT | jq -r '.[].full_name | select(startswith("rpm/") | not)')" if [ -n "$FORKS" ] ; then MY_FORK="$(echo $FRK_OUT | jq -r ".[].full_name | select(startswith("$LOGIN/"))")" else MY_FORK="" fi # If not, make a fork if [ -z "$MY_FORK" ] ; then FRK_OUT="$(gitea_cmd "repos/pool/$PKG/forks" "-X POST")" MY_FORK="$(echo "$FRK_OUT" | jq -r '.full_name')" fi # Add ignore echo '.osc/' >> .git/info/exclude echo '_scmsync.obsinfo' >> .git/info/exclude # Set URLs for the forked repository git remote add myproj "https://src.opensuse.org/$MY_FORK.git" git remote set-url --push myproj "gitea@src.opensuse.org:$MY_FORK.git"