diff options
author | Nick White <git@njw.me.uk> | 2010-11-13 21:37:10 +0000 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-11-13 21:37:10 +0000 |
commit | 197e0405ef20da925c17e72e9bdcc0ca07bc653d (patch) | |
tree | eaa00c6305fe79c44a69ce587ed02bd031bf722d /summary.sh | |
parent | d4b1a45c476cd9440f436d5305892f45bb14e60f (diff) |
Move summary to websummary
Diffstat (limited to 'summary.sh')
-rw-r--r-- | summary.sh | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/summary.sh b/summary.sh deleted file mode 100644 index c274443..0000000 --- a/summary.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh - -test $# -ne 1 && echo "usage: $0 doap" && exit 1 - -rdf="$1" - -q="PREFIX doap: <http://usefulinc.com/ns/doap#> -PREFIX foaf: <http://xmlns.com/foaf/0.1/> -SELECT ?home ?repo ?license ?maintainer ?maintainerhome ?lang ?repotype -WHERE { -?p a doap:Project; - doap:homepage ?home; - doap:repository ?r; - doap:license ?license; - doap:programming-language ?lang; - doap:maintainer ?m. -?r a ?repotype; - doap:location ?repo. -?m foaf:name ?maintainer; - foaf:homepage ?maintainerhome. -}" - -roqet -q -r csv -e "$q" -D /dev/stdin < $rdf | sed '/^Result/d' \ -| while read r; do - home=`echo $r | awk -F , '{print $2}'| sed -e 's/uri(\(.*\))/\1/'` - repo=`echo $r | awk -F , '{print $3}'| sed -e 's/uri(\(.*\))/\1/'` - licenseuri=`echo $r | awk -F , '{print $4}'| sed -e 's/uri(\(.*\))/\1/'` - maint=`echo $r | awk -F , '{print $5}'| sed -e 's/"\(.*\)"/\1/'` - mainthome=`echo $r | awk -F , '{print $6}'| sed -e 's/uri(\(.*\))/\1/'` - lang=`echo $r | awk -F , '{print $7}'| sed -e 's/"\(.*\)"/\1/'` - test "$licenseuri" = "http://www.gnu.org/licenses/gpl.html" && license="GPL" - test "$licenseuri" = "http://www.gnu.org/licenses/agpl.html" && license="AGPL" - test "$licenseuri" = "http://creativecommons.org/licenses/MIT/" && license="MIT" - repotype=`echo $r | awk -F , '{print $8}'| sed -e 's/uri(\(.*\))/\1/'` - test "$repotype" = "http://usefulinc.com/ns/doap#GitRepository" && repocmd="git clone" - - cat <<- _EOF_ -- Project homepage: [$home]($home) -- Code repository: $repocmd $repo -- Maintainer: [$maint]($mainthome) -- Language: $lang -- License: [$license]($licenseuri) -_EOF_ -done |