#!/bin/sh
SRV=/mnt/nfs/git
set -e
mkdir -p $SRV/{sources,{core,base,kde5}-pkgbuilds}
doagit() {
local g=$(basename ${2::-5})
cd $SRV/$1
[ ! -e $g.git ] && return 0
[ -e r/$g.git ] && return 0
echo $1/$g
cd $g.git
./hooks/post-receive # run git-arr
}
doatree() {
cd /$1
local GITS=$(find -mindepth 2 -maxdepth 2 -name '.git' -type d)
for g in $GITS; do
doagit $2 $g $1 "$3" $4
done
}
doatree sources sources "ARMLFS /sources/" git-arr-sources.cfg
for repo in core base kde5; do
doatree sources/$repo-pkgbuilds $repo-pkgbuilds "$repo " git-arr-$repo.cfg
done