[licensecheck] 24/112: Fix detect license FSFULLR (was misdetected as bogus FSFULR).
Jonas Smedegaard
dr at jones.dk
Fri Nov 25 22:01:45 UTC 2016
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository licensecheck.
commit 89129c61b1320613bea63989cb77234f90ef81cd
Author: Jonas Smedegaard <dr at jones.dk>
Date: Thu Sep 22 21:41:30 2016 +0200
Fix detect license FSFULLR (was misdetected as bogus FSFULR).
---
lib/App/Licensecheck.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/App/Licensecheck.pm b/lib/App/Licensecheck.pm
index 04541d9..bbf3c8f 100755
--- a/lib/App/Licensecheck.pm
+++ b/lib/App/Licensecheck.pm
@@ -65,7 +65,7 @@ my %SPDX = (
'CC-BY-SA' => 'CC by-sa',
FSFAP => 'FSF All Permissive',
FSFUL => 'FSF Unlimited',
- FSFULR => 'FSF Unlimited (with Retention)',
+ FSFULLR => 'FSF Unlimited (with Retention)',
FTL => 'Freetype',
Expat => 'MIT/X11 (BSD like)',
Libpng => 'libpng',
@@ -738,7 +738,7 @@ sub parse_license
# FSFULLR
given ($licensetext) {
when ( /This file is free software; the Free Software Foundation gives unlimited permission to copy and\/or distribute it, with or without modifications, as long as this notice is preserved/i ) {
- $gen_license->('FSFUL');
+ $gen_license->('FSFULLR');
}
when ( /This (\w+)(?: (?:file|script))? is free software; the Free Software Foundation gives unlimited permission to copy and\/or distribute it, with or without modifications, as long as this notice is preserved/i ) {
$license = "FSF Unlimited (with Retention, $1 derivation) $license";
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/licensecheck.git
More information about the Pkg-perl-cvs-commits
mailing list