mcvsubbu commented on issue #4290: Prepare licenses for 0.2
URL: https://github.com/apache/incubator-pinot/pull/4290#issuecomment-500035046
 
 
   Best to review this one commit at a time.
   We now have version numbers along with the package names, so that we can 
easily tell later on whether we need to look up the license for a specific 
package simply because the version number changed.
   The first commit adds version numbers to the existing license file.
   The second commit removes pinot-common and pinot-core jars from the 
components list under apache license.
   The third commit makes the modifications to the license file from the time 
we released 0.1.0 until now.
   
   An easy way of doing this is to cut/paste the contents of page from the 
browser onto a text file, and use awk scripts to get the package and version 
list. Assuming you cut/paste the contents of the html file in licenses.txt
   
   You can then run script like this:
   `
   cat licenses.txt | awk '{printf("%s:%s:%s\n'", $1, $2, $3)}' | sort > 
pkg-versions
   `
   Now the file `pkg-versions` has all the packages we use, with the group id 
and version number.

----------------------------------------------------------------
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

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to