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/