Skip to content
  • Jose Fonseca's avatar
    s/Tungsten Graphics/VMware/ · 87712850
    Jose Fonseca authored
    Tungsten Graphics Inc. was acquired by VMware Inc. in 2008.  Leaving the
    old copyright name is creating unnecessary confusion, hence this change.
    
    This was the sed script I used:
    
        $ cat tg2vmw.sed
        # Run as:
        #
        #   git reset --hard HEAD && find include scons src -type f -not -name 'sed*' -print0 | xargs -0 sed -i -f tg2vmw.sed
        #
    
        # Rename copyrights
        s/Tungsten Gra\(ph\|hp\)ics,\? [iI]nc\.\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./g
        /Copyright/s/Tungsten Graphics\(,\? [iI]nc\.\)\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./
        s/TUNGSTEN GRAPHICS/VMWARE/g
    
        # Rename emails
        s/alanh@tungstengraphics.com/alanh@vmware.com/
        s/jens@tungstengraphics.com/jowen@vmware.com/g
        s/jrfonseca-at-tungstengraphics-dot-com/jfonseca-at-vmware-dot-com/
        s/jrfonseca\?@tungstengraphics.com/jfonseca@vmware.com/g
        s/keithw\?@tungstengraphics.com/keithw@vmware.com/g
        s/michel@tungstengraphics.c...
    87712850