Merge branch 'stable'
[gnulib.git] / debian / clscan / clscan
index 9f877da..1bffdb7 100755 (executable)
@@ -32,7 +32,7 @@ You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 EOL
 
-my $lgpl_boilerplate=<<"EOL";
+my $lgpl2_boilerplate=<<"EOL";
 This program is free software; you can redistribute it and/or modify it
 under the terms of the GNU Library General Public License as published
 by the Free Software Foundation; either version 2, or (at your option)
@@ -49,6 +49,21 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 USA.
 EOL
 
+my $lgpl3_boilerplate=<<"EOL";
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Lesser 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/>.
+EOL
+
 # license overrides as specified in modules/*
 our $module_licenses = {
     "public domain" => {
@@ -63,11 +78,15 @@ our $module_licenses = {
     },
     "LGPL" => {
        license => "LGPL",
-       license_text => $lgpl_boilerplate,
+       license_text => $lgpl3_boilerplate,
     },
     "LGPLv2+" => {
        license => "LGPL-2+",
-       license_text => $lgpl_boilerplate,
+       license_text => $lgpl2_boilerplate,
+    },
+    "LGPLv3+" => {
+       license => "LGPL-3+",
+       license_text => $lgpl3_boilerplate,
     },
     "unmodifiable license text" => {
        license => "other",