Re: [eigen] List of files, licensed under MPL, BSD and LGPL |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] List of files, licensed under MPL, BSD and LGPL
- From: Anton Gladky <gladky.anton@xxxxxxxxx>
- Date: Sat, 18 Aug 2012 21:31:06 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=H8sNOcnOTx6j/ibXZ0iFcGUMmQO6iBfxaSs7ZCrYqkY=; b=n1d5rtMA3oLX67vPxF2Z1DBlYVbYJ3pfaWq4AXjKr4dGLKEkU1BbJc8fbLtzDSP99D /VZPyXysFRY5JZaj5uFSTjMpY9K2+/m8MYD8B6ydulboe9EgGdsuvQrv37fUlVS1yXqy fRgrpMl6W+B07fwF/9MbNj1Io1FRSzQcMQX1JyPn5thTB+36zq8j2eDC3oxuz2fBsszF KMevW4x93Ze8AKZbQqWmMGTexuXIR/rcJb6lvdbjn6fSJ9z06RhyHtJvns6CLGoxPWHW PFphNkL6XWNVq2mJ3X8HSSIW9Y7zZM9DyhokBd7sCx3ZtJSo7WVZjLCjFo1AByUXUI84 ncLg==
Thanks, Benoit, for the tip!
Anton
2012/7/28 Benoit Jacob <jacob.benoit.1@xxxxxxxxx>:
> I think these commands will do it:
>
> MPL2:
> find . -type f | grep -v \\.hg | xargs grep 'mozilla.org/MPL/2.0' | cut -d
> ':' -f 1
>
> LGPL:
> find . -type f | grep -v \\.hg | xargs grep 'GNU Lesser' | cut -d ':' -f 1
>
> GPL:
> find . -type f | grep -v \\.hg | xargs grep 'GNU General' | cut -d ':' -f 1
>
> BSD:
> find . -type f | grep -v \\.hg | xargs grep 'Redistributions of source code
> must retain the above' | cut -d ':' -f 1
>
> Except that the MINPACK files are missing their license header :/
> -> Thomas, does this problem already exist upstream?
>
> Another issue is we have a ton of *~, *.rej, *.orig files checked in the
> repo, but it's too late for 3.1.1 and now worth a point release by itself.
>
> Benoit