2019-12-19 01:32:44 -07:00
|
|
|
#!/bin/sh -ef
|
2020-05-01 00:07:20 -06:00
|
|
|
# Find the maintainer of a package
|
2019-10-30 04:51:48 -06:00
|
|
|
|
2020-08-30 14:28:01 -06:00
|
|
|
# CRUX style usage using the current directory as the name of the package to be
|
|
|
|
# operated on.
|
2020-04-18 03:11:56 -06:00
|
|
|
[ "$1" ] || {
|
2020-08-30 14:28:01 -06:00
|
|
|
export KISS_PATH=${PWD%/*}:$KISS_PATH
|
|
|
|
set -- "${PWD##*/}"
|
2020-04-18 03:11:56 -06:00
|
|
|
}
|
|
|
|
|
2020-08-30 14:28:01 -06:00
|
|
|
kiss s "$@" | sort -u | while read -r repo; do cd "$repo"
|
2020-02-25 13:42:36 -07:00
|
|
|
m=$(git log -1 version 2>/dev/null) ||:
|
|
|
|
m=${m##*Author: }
|
|
|
|
m=${m%%>*}
|
2019-12-19 01:32:44 -07:00
|
|
|
|
2020-02-25 13:42:36 -07:00
|
|
|
[ "$m" ] || continue
|
|
|
|
|
|
|
|
printf '=> %s\n%s>\n' "$PWD" "$m"
|
|
|
|
done
|