Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Module-Starter CPAN distribution.

Report information
The Basics
Id: 72321
Status: resolved
Priority: 0/
Queue: Module-Starter

People
Owner: Nobody in particular
Requestors: cfuhrman [...] panix.com
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 1.58
Fixed in: (no value)



Subject: Add GPLv3 license to Module::Starter
Add GNU General Purpose License v3 Add new license, gpl3, the GNU General Purpose License version 3 as described in http://www.opensource.org/licenses/GPL-3.0 This will allow users of Module::Starter to author modules covered under the GPLv3. See attached patch.
Subject: add-gplv3-text.patch
diff --git a/lib/Module/Starter/Simple.pm b/lib/Module/Starter/Simple.pm index b33cdca..d9b137d 100644 --- a/lib/Module/Starter/Simple.pm +++ b/lib/Module/Starter/Simple.pm @@ -325,6 +325,23 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. EOT }, + { + license => 'gpl3', + blurb => <<'EDT', +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +EDT + }, ]; }
Fixed by Brendan Byrd in GH PR #10.