[Module-build-checkins] Module-Build/lib/Module/Build Authoring.pod,1.10,1.11 Base.pm,1.460,1.461
Status: Beta
Brought to you by:
kwilliams
|
From: Ken W. <kwi...@us...> - 2005-07-19 00:14:37
|
Update of /cvsroot/module-build/Module-Build/lib/Module/Build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20521/lib/Module/Build Modified Files: Authoring.pod Base.pm Log Message: Add Apache, MIT, and Mozilla licenses Index: Base.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v retrieving revision 1.460 retrieving revision 1.461 diff -u -d -r1.460 -r1.461 --- Base.pm 16 Jul 2005 03:10:53 -0000 1.460 +++ Base.pm 19 Jul 2005 00:14:21 -0000 1.461 @@ -2444,7 +2444,7 @@ BEGIN { *scripts = \&script_files; } sub valid_licenses { - return { map {$_, 1} qw(perl gpl artistic lgpl bsd open_source unrestricted restrictive unknown) }; + return { map {$_, 1} qw(perl gpl artistic lgpl bsd mit mozilla apache open_source unrestricted restrictive unknown) }; } sub meta_add { Index: Authoring.pod =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Authoring.pod,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- Authoring.pod 8 Jul 2005 01:43:32 -0000 1.10 +++ Authoring.pod 19 Jul 2005 00:14:21 -0000 1.11 @@ -387,6 +387,11 @@ =over 4 +=item apache + +The distribution is licensed under the Apache Software License +(http://opensource.org/licenses/apachepl.php). + =item artistic The distribution is licensed under the Artistic License, as specified @@ -399,15 +404,26 @@ =item gpl -The distribution is distributed under the terms of the Gnu General +The distribution is licensed under the terms of the Gnu General Public License (http://www.opensource.org/licenses/gpl-license.php). =item lgpl -The distribution is distributed under the terms of the Gnu Lesser +The distribution is licensed under the terms of the Gnu Lesser General Public License (http://www.opensource.org/licenses/lgpl-license.php). +=item mit + +The distribution is licensed under the MIT License +(http://opensource.org/licenses/mit-license.php). + +=item mozilla + +The distribution is licensed under the Mozilla Public +License. (http://opensource.org/licenses/mozilla1.0.php or +http://opensource.org/licenses/mozilla1.1.php) + =item open_source The distribution is licensed under some other Open Source @@ -437,7 +453,10 @@ Note that you must still include the terms of your license in your documentation - this field only lets automated tools figure out your -licensing restrictions. Humans still need something to read. +licensing restrictions. Humans still need something to read. If you +choose to provide this field, you should make sure that you keep it in +sync with your written documentation if you ever change your licensing +terms. It is a fatal error to use a license other than the ones mentioned above. This is not because I wish to impose licensing terms on you - |