diff options
-rwxr-xr-x | scripts/create-authors-map.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/create-authors-map.sh b/scripts/create-authors-map.sh new file mode 100755 index 0000000..5c4c788 --- /dev/null +++ b/scripts/create-authors-map.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +if [ "mandriva" = "$1" ]; then + svn log -q http://svn.mandriva.com/svn/soft | awk -F '|' '/^r/ {sub("^ ", "", $2); sub(" $", "", $2); print $2" = "$2" <"$2"@mandriva.org>"}' | sort -u +else + svn log -q svn://svn.mageia.org/svn/soft | awk -F '|' '/^r/ {sub("^ ", "", $2); sub(" $", "", $2); print $2" = "$2" <"$2"@mageia.org>"}' | sort -u +fi |