diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bd9e6617827818fd043452c08c606f07b78014a0 (patch) | |
tree | 425bb4c3168f9c02f10150f235d2cb998dcc6108 /scripts/fixfsfaddr.sed | |
download | tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.tar.gz tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'scripts/fixfsfaddr.sed')
-rw-r--r-- | scripts/fixfsfaddr.sed | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/scripts/fixfsfaddr.sed b/scripts/fixfsfaddr.sed new file mode 100644 index 00000000..ab96de23 --- /dev/null +++ b/scripts/fixfsfaddr.sed @@ -0,0 +1,30 @@ +#! /usr/bin/sed + +# Copyright 2005 Nicolas GOUTTE <goutte@kde.org> +# License LGPL V2+ + +# The script helps to fix the FSF address +# Use: +# find . -name .svn -prune , type f | xargs fgrep -l "Free Software Foundation" | xargs sed -i -f fixfsfaddr.sed +# Note: you should check the changes before committing them. + +# Implementation note: we need to replace phrase by phrase, as +# the wrapping of the FSF address is at different places. + +# Current FSF address: 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + +# Old address: 59 Temple Place, Suite 330, Boston, MA 02111-1307 +s/59 Temple Place,/51 Franklin Street,/ +s/59 Temple Place -/51 Franklin Street,/ +s/Suite 330,/Fifth Floor,/ +s/Suite 330$/Fifth Floor/ +s/02111-1307/02110-1301/ + +# Very old address: 675 Mass Ave, Cambridge, MA 02139 +s/675 Mass Ave/51 Franklin Street, Fifth Floor/ +s/Cambridge/Boston/ +s/02139/02110-1301/ +# Warning: the last two replaces seem to match the address of the MIT too. + +# Typo in KDE: Franklin Steet +s/Franklin Steet/Franklin Street/ |