After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 656598 - Outdated FSF Address in code files
Outdated FSF Address in code files
Status: RESOLVED FIXED
Product: gvfs
Classification: Core
Component: general
git master
Other Linux
: Normal trivial
: ---
Assigned To: gvfs-maint
gvfs-maint
Depends on:
Blocks:
 
 
Reported: 2011-08-15 17:58 UTC by Dominique Leuenberger
Modified: 2012-07-30 14:16 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Correcting all 304 files with the license (188.12 KB, patch)
2012-07-30 08:39 UTC, Felix Möller
committed Details | Review

Description Dominique Leuenberger 2011-08-15 17:58:32 UTC
While building gvfs on the Open Build Service (OBS), this minor warning is spit out at the end of the build:

gvfs.x86_64: W: incorrect-fsf-address /usr/bin/gvfs-less
gvfs.x86_64: W: incorrect-fsf-address /etc/profile.d/gvfs-bash-completion.sh
The Free Software Foundation address in this file seems to be outdated or
misspelled.  Ask upstream to update the address, or if this is a license file,
possibly the entire file with a new copy available from the FSF.

Updating the various headers with the current FSF provided ones should resolve the issues.
Comment 1 Felix Möller 2012-07-30 08:39:45 UTC
Created attachment 219870 [details] [review]
Correcting all 304 files with the license
Comment 2 Tomas Bzatek 2012-07-30 14:16:42 UTC
Thanks for the patch, applied. Grepped once more to double-check, all fits.


commit 1e9c89eafaac6b3a759115df9981526fe9083461
Author: Felix Möller <mail@felixmoeller.de>
Date:   Mon Jul 30 16:13:53 2012 +0200

    Update the Address of the FSF
    
    Updating the address of the FSF.
    This has been done by:
    
    while read file; do
      sed -i 's:59 Temple Place:51 Franklin Street:' $file
      sed -i 's:Suite 330:Fifth Floor:' $file
      sed -i 's:02111-1307:02110-1301:' $file
    done
    
    https://bugzilla.gnome.org/show_bug.cgi?id=656598
    
    Signed-off-by: Tomas Bzatek <tbzatek@redhat.com>