mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 14:05:41 -07:00
19 lines
419 B
Bash
Executable File
19 lines
419 B
Bash
Executable File
#!/bin/sh -ef
|
|
# Find the maintainer of a package
|
|
|
|
# Use the current directory as the package name if no package is given.
|
|
[ "$1" ] || {
|
|
export KISS_PATH=${PWD%/*}:$KISS_PATH
|
|
set -- "${PWD##*/}"
|
|
}
|
|
|
|
kiss 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
|