#!/bin/sh -ef
# Find the maintainer of a package

# Use the current directory as the package name if no package is given.
[ "$1" ] || {
    export ASD_PATH=${PWD%/*}:$ASD_PATH
    set -- "${PWD##*/}"
}

asd search "$@" | uniq -u | while read -r repo; do cd "$repo"
    m=$(git log -1 version 2>/dev/null) ||:
    m=${m##*Author: }
    m=${m%%>*}

    [ "$m" ] || continue

    printf '=> %s\n%s>\n' "$PWD" "$m"
done
