I can do the script, but someone else has to run it since I don't
have access to commit them all.
Here it is dww, enjoy ...
#!/bin/sh
for FILE in `find . -name "*.info"`
do
ORIG=$FILE.orig
cp $FILE $ORIG
cat $ORIG | grep -v "version.*=" > $FILE
rm $ORIG
done