summaryrefslogtreecommitdiff
path: root/web/websummary.sh
diff options
context:
space:
mode:
Diffstat (limited to 'web/websummary.sh')
-rw-r--r--web/websummary.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/web/websummary.sh b/web/websummary.sh
index 8da2790..fa7290a 100644
--- a/web/websummary.sh
+++ b/web/websummary.sh
@@ -20,18 +20,18 @@ WHERE {
foaf:homepage ?maintainerhome.
}"
-roqet -q -r csv -e "$q" -D /dev/stdin < $rdf | sed '/^Result/d' \
+roqet -q -r csv -e "$q" -D /dev/stdin < $rdf | sed '1d' \
| while read r; do
- home=`echo $r | awk -F , '{print $2}'| sed -e 's/uri\(//' -e 's/\)//'`
- repo=`echo $r | awk -F , '{print $3}'| sed -e 's/uri\(//' -e 's/\)//'`
- licenseuri=`echo $r | awk -F , '{print $4}'| sed -e 's/uri\(//' -e 's/\)//'`
- maint=`echo $r | awk -F , '{print $5}'| sed -e 's/"//g'`
- mainthome=`echo $r | awk -F , '{print $6}'| sed -e 's/uri\(//' -e 's/\)//'`
- lang=`echo $r | awk -F , '{print $7}'| sed -e 's/"//g'`
+ home=`echo $r | awk -F , '{print $1}'`
+ repo=`echo $r | awk -F , '{print $2}'`
+ licenseuri=`echo $r | awk -F , '{print $3}'`
+ maint=`echo $r | awk -F , '{print $4}'`
+ mainthome=`echo $r | awk -F , '{print $5}'`
+ lang=`echo $r | awk -F , '{print $6}'`
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\(//' -e 's/\)//'`
+ repotype=`echo $r | awk -F , '{print $7}'`
test "$repotype" = "http://usefulinc.com/ns/doap#GitRepository" && repocmd="git clone"
cat <<- _EOF_