From: Ian Campbell Date: Wed, 29 Jul 2015 10:00:36 +0000 (+0100) Subject: Replace FSF street address with canonical URL X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b644ce85a62d130859cb2b1243244ed3460b29db;p=people%2Fliuw%2Fstubdom.git Replace FSF street address with canonical URL As recommended in http://www.gnu.org/licenses/gpl-howto.en.html. This is the result of: $ git grep -El Mass\|Temple\|Franklin | xargs ./fsf.pl Where fsf.pl is: #!/usr/bin/perl -w -pi.bak -0777 my $repl = 'If not, see .'; my $br = qr/(?:\s*\n\s*(?:[\*\#]|\/\/|\.\\" )?\s*|\s+)/; my $inwt = qr/[Ii]f${br}not,${br}write${br}(?:to${br})?the${br}Free${br}Software${br}Foundation,(?:${br}Inc\.,)?/; my $mass = qr/675${br}Mass${br}Ave,?${br}Cambridge,?${br}MA${br}02139,?${br}USA,?\.?/; my $franklin = qr/51${br}Franklin${br}St(?:reet)?(?:,${br}| - )Fifth${br}Floor,?${br}Boston,?${br}MA,?${br}02110-1301,?${br}USA,?\.?/; my $temple = qr/59${br}Temple${br}Place(?:,${br}| - )Suite${br}330,?${br}Boston,?${br}MA,?${br}021110?-1307,?${br}USA,?\.?/; s|$inwt$br$mass|$repl|m; s|$inwt$br$franklin|$repl|m; s|$inwt$br$temple|$repl|m; The only remaining mentions of these addresses are in COPYING files which I haven't touched. Some of the changed files are imports from elsewhere, however filtering them out is tricky, I think it is tolerable to have these files be modified here and then perhaps reverted on the next sync, since it's only 1-2 lines and obvious what is going on. Signed-off-by: Ian Campbell --- diff --git a/vtpmmgr/tpmrsa.c b/vtpmmgr/tpmrsa.c index 2a2fa36..b18a5a3 100644 --- a/vtpmmgr/tpmrsa.c +++ b/vtpmmgr/tpmrsa.c @@ -19,8 +19,7 @@ * 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, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * with this program; If not, see . */ /* * RSA was designed by Ron Rivest, Adi Shamir and Len Adleman. diff --git a/vtpmmgr/tpmrsa.h b/vtpmmgr/tpmrsa.h index 31e5a8b..08213bb 100644 --- a/vtpmmgr/tpmrsa.h +++ b/vtpmmgr/tpmrsa.h @@ -21,8 +21,7 @@ * 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, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * with this program; If not, see . */ #ifndef TPMRSA_H #define TPMRSA_H