patacongo commented on issue #528: sched/mqueue:  Correct/update license 
headers.
URL: https://github.com/apache/incubator-nuttx/pull/528#issuecomment-597186120
 
 
   @xiaoxiang781216 
   > The report looks right.
   
   yes, I think it ran again and did not fail  I have also pushed the fixes for 
the long lines.
   
   > We can convert the files which don't have any doubt first, otherwise we 
can never finish the copyright work item.
   
   I agree 100%.  I think we can search for names like:
   
       FILELSIT=`find . -type f | xargs grep <name>`
   
   Where name is "Gregory Nutt" or Pinecone or whoever.  Then verify that there 
is only one copright:
   
       for file in $FILELIST; do
         ncopyrights=`grep -c $file`
         if [ ncopyrights -eq 1] ; then
           replace header
         fi
       done
   
   For example:
   
       $ grep "Gregory Nutt" sched/init/nx_start.c
        *   Copyright (C) 2007-2014, 2016, 2018 Gregory Nutt. All rights 
reserved.
        *   Author: Gregory Nutt <[email protected]>
       
       $ grep -c Copyright sched/init/nx_start.c
       1
   
   The word COPYRIGHT will appear in the BSD license, but not other form of the 
word copyright should appear in the file.  I think if there is only one 
Copyright and the name matches, we can change the license.
   
   
     
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to