kiss/contrib/kiss-maintainer

19 lines
421 B
Plaintext
Raw Normal View History

2019-12-19 08:32:44 +00:00
#!/bin/sh -ef
2020-05-01 06:07:20 +00:00
# Find the maintainer of a package
2019-10-30 10:51:48 +00:00
# Use the current directory as the package name if no package is given.
[ "$1" ] || {
export KISS_PATH="${PWD%/*}:$KISS_PATH"
set -- "${PWD##*/}"
}
kiss search "$@" | sort -u | while read -r repo; do cd "$repo"
2020-02-25 20:42:36 +00:00
m=$(git log -1 version 2>/dev/null) ||:
m=${m##*Author: }
m=${m%%>*}
2019-12-19 08:32:44 +00:00
2020-02-25 20:42:36 +00:00
[ "$m" ] || continue
printf '=> %s\n%s>\n' "$PWD" "$m"
done