Description: new class for gpl3 plus summary
--- /dev/null
+++ b/lib/Software/License/GPL_3_plus.pm
@@ -0,0 +1,42 @@
+use strict;
+use warnings;
+package Software::License::GPL_3_plus;
+
+use base 'Software::License::GPL_3';
+
+sub name { 'The GNU General Public License, Version 3 or later' }
+
+1;
+
+=pod
+
+=head1 NAME
+
+Software::License::GPL_3_plus - GNU General Public License, Version 3 or later
+
+=head1 VERSION
+
+version 0.103002
+
+=head1 AUTHOR
+
+Dominique Dumont <ddumont@cpan.org>
+
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 2011 by Dominique Dumont
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+=cut
+
+__DATA__
+__DEBIAN-SUMMARY__
+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; version 3 dated June, 2007, or (at your
+option) any later version.
+
+On Debian systems, the complete text of version 3 of the GNU General
+Public License can be found in '/usr/share/common-licenses/GPL-3'.
--- a/lib/Software/License.pm
+++ b/lib/Software/License.pm
@@ -17,6 +17,7 @@
   'GPL-2'  => 'GPL_2',
   'GPL-2+' => 'GPL_2_plus',
   'GPL-3'  => 'GPL_3',
+  'GPL-3+' => 'GPL_3_plus',
   'LGPL-2.1' => 'LGPL_2_1',
   'LGPL-3'   => 'LGPL_3_0',
   'LGPL-3.0' => 'LGPL_3_0',
