is the GPLv3 "similar in spirit" to the GPLv2?
is the GPLv3 "similar in spirit" to the GPLv2?
Posted Sep 27, 2006 9:22 UTC (Wed) by hummassa (guest, #307)In reply to: is the GPLv3 "similar in spirit" to the GPLv2? by forthy
Parent article: Why Torvalds is sitting out the GPLv3 process (Linux.com)
"all GPLv2 code is GPLv2 or later unless explicitely stated otherwise"
nope. All GPLv2 is v2-only unless explicitely stated otherwise. Clause 9
says that "If the Program <b>does not specify a version number</b> of this
License, you may choose any version ever published by the Free Software
Foundation." It means if you specify v2, it's v2 only.
look:
$ find t2/linux-source-2.6.12/ -type f | xargs grep GPL | grep v2.*later |
wc -l
2
$ find t2/linux-source-2.6.12/ -type f | xargs grep GPL | grep v2.*only |
wc -l
0
$ find t2/linux-source-2.6.12/ -type f | xargs grep GPL | grep v2 | wc -l
126
IOW: 126 instances of GPL-v2, 124 of them being v2-only.
