Gentoo Archives: gentoo-dev

From: Nirbheek Chauhan <nirbheek@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] Gentoo Council Reminder for June 11
Date: Fri, 05 Jun 2009 17:14:15
Message-Id: 8b4c83ad0906051014n37ffb100i88aaffde6ef6aafd@mail.gmail.com
In Reply to: Re: [gentoo-dev] Gentoo Council Reminder for June 11 by "Rémi Cardona"
1 On Fri, Jun 5, 2009 at 1:47 PM, Rémi Cardona<remi@g.o> wrote:
2 > My plan is to go over each package as time permits, check the license and
3 > then make the x-modular eclass set the default license to MIT instead of
4 > ${PN}.
5 >
6 > I could definitely use a hand to check all those packages :)
7 >
8
9 Here's a list of packages that inherit x-modular.eclass and don't
10 define LICENSE (prefixed by "Plz2fix"):
11
12 http://dev.gentoo.org/~nirbheek/files/x-modular-packages-without-LICENSE
13
14 Command used to generate it:
15
16 for ebuild in */*/*.ebuild; do grep -qe x-modular "${ebuild}" && {
17 grep -qe LICENSE "${ebuild}" && echo "Fine: ${ebuild}" || echo
18 "Plz2fix: ${ebuild}"; }; done > x-modular-packages-without-LICENSE
19
20 --
21 ~Nirbheek Chauhan