Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/usr/bin/perl -w | 1 #!/usr/bin/perl -w |
| 2 # This script was originally based on the script of the same name from | 2 # This script was originally based on the script of the same name from |
| 3 # the KDE SDK (by dfaure@kde.org) | 3 # the KDE SDK (by dfaure@kde.org) |
| 4 # | 4 # |
| 5 # This version is | 5 # This version is |
| 6 # Copyright (C) 2007, 2008 Adam D. Barratt | 6 # Copyright (C) 2007, 2008 Adam D. Barratt |
| 7 # Copyright (C) 2012 Francesco Poli | 7 # Copyright (C) 2012 Francesco Poli |
| 8 # | 8 # |
| 9 # This program is free software; you can redistribute it and/or modify | 9 # This program is free software; you can redistribute it and/or modify |
| 10 # it under the terms of the GNU General Public License as published by | 10 # it under the terms of the GNU General Public License as published by |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 485 $license = "QPL $license"; | 485 $license = "QPL $license"; |
| 486 } | 486 } |
| 487 | 487 |
| 488 if ($licensetext =~ /opensource\.org\/licenses\/mit/) { | 488 if ($licensetext =~ /opensource\.org\/licenses\/mit/) { |
| 489 $license = "MIT/X11 (BSD like) $license"; | 489 $license = "MIT/X11 (BSD like) $license"; |
| 490 } elsif ($licensetext =~ /Permission is hereby granted, free of charge, to a ny person obtaining a copy of this software and(\/or)? associated documentation files \(the (Software|Materials)\), to deal in the (Software|Materials)/) { | 490 } elsif ($licensetext =~ /Permission is hereby granted, free of charge, to a ny person obtaining a copy of this software and(\/or)? associated documentation files \(the (Software|Materials)\), to deal in the (Software|Materials)/) { |
| 491 $license = "MIT/X11 (BSD like) $license"; | 491 $license = "MIT/X11 (BSD like) $license"; |
| 492 } elsif ($licensetext =~ /Permission is hereby granted, without written agre ement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose/) { | 492 } elsif ($licensetext =~ /Permission is hereby granted, without written agre ement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose/) { |
| 493 $license = "MIT/X11 (BSD like) $license"; | 493 $license = "MIT/X11 (BSD like) $license"; |
| 494 } | 494 } |
| 495 if ($licensetext =~ /MIT .* License/){ | |
| 496 $license = "MIT $license"; | |
|
Paweł Hajdan Jr.
2013/12/20 08:51:09
Let's do elsif here, and output "MIT/X11 (BSD like
| |
| 497 } | |
| 495 | 498 |
| 496 if ($licensetext =~ /This file is distributed under the University of Illin ois Open Source License/){ | 499 if ($licensetext =~ /the University of Illinois Open Source License/){ |
| 497 $license = "University of Illinois/NCSA Open Source License (BSD like) $ license"; | 500 $license = "University of Illinois/NCSA Open Source License (BSD like) $ license"; |
| 498 } | 501 } |
| 499 | 502 |
| 500 if ($licensetext =~ /Permission to use, copy, modify, and(\/or)? distribute this software (and its documentation )?for any purpose (with or )?without fee i s hereby granted, provided.*(copyright|entire) notice.*all copies/i) { | 503 if ($licensetext =~ /Permission to use, copy, modify, and(\/or)? distribute this software (and its documentation )?for any purpose (with or )?without fee i s hereby granted, provided.*(copyright|entire) notice.*all copies/i) { |
| 501 $license = "ISC $license"; | 504 $license = "ISC $license"; |
| 502 } | 505 } |
| 503 | 506 |
| 504 if ($licensetext =~ /THIS SOFTWARE IS PROVIDED .*AS IS AND ANY EXPRESS OR IM PLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCH ANTABILITY/ || | 507 if ($licensetext =~ /THIS SOFTWARE IS PROVIDED .*AS IS AND ANY EXPRESS OR IM PLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCH ANTABILITY/ || |
| 505 $licensetext =~ /THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHA NTABIL- ITY/) { | 508 $licensetext =~ /THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHA NTABIL- ITY/) { |
| 506 if ($licensetext =~ /All advertising materials mentioning features or us e of this software must display the following/) { | 509 if ($licensetext =~ /All advertising materials mentioning features or us e of this software must display the following/) { |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 630 return $license; | 633 return $license; |
| 631 } | 634 } |
| 632 | 635 |
| 633 sub fatal($) { | 636 sub fatal($) { |
| 634 my ($pack,$file,$line); | 637 my ($pack,$file,$line); |
| 635 ($pack,$file,$line) = caller(); | 638 ($pack,$file,$line) = caller(); |
| 636 (my $msg = "$progname: fatal error at line $line:\n@_\n") =~ tr/\0//d; | 639 (my $msg = "$progname: fatal error at line $line:\n@_\n") =~ tr/\0//d; |
| 637 $msg =~ s/\n\n$/\n/; | 640 $msg =~ s/\n\n$/\n/; |
| 638 die $msg; | 641 die $msg; |
| 639 } | 642 } |
| OLD | NEW |