savannah-register-public
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Savannah-register-public] [task #14832] Submission of Megatest


From: Matthew Welland
Subject: [Savannah-register-public] [task #14832] Submission of Megatest
Date: Wed, 28 Feb 2018 15:07:39 -0500 (EST)
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36

Follow-up Comment #24, task #14832 (project administration):

For convenience we bundle some generated html and sexpr files. These files
cannot have headers added. There are also xfig files for drawings in the
documentation and these also cannot have license headers added. I have read
all the requirements and I believe I now have the Megatest project in
compliance.

FYI, you can use the below script to find files without a license header to
confirm my assertion that Megatest meets the requirements.

Thanks.

===script to find files needing license header==
#!/bin/bash
project=Megatest
for f in $(
    for x in $(find . -type f);do
        if [[ $(file $x|grep text) ]];then
            echo -n "$x ";
        fi;
    done);do
    if [[ $(wc -l $f | awk '{print $1}') -gt 10 ]];then
        if ! $(grep -q ${project}' is free software' $f);then
            echo "$f ";
        fi;
    fi
done


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/task/?14832>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]