mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
322 B

#!/bin/bash
if [ ! "$1" -o ! "$2" ] ; then
echo "You must specify old and new version ..."
exit -1
fi
for x in arts* kde* quanta* ; do
echo "Updateing $x ..."
sed -e s/$1/$2/g \
-e s,unstable/kde-$1,stable/kde-$2, \
-e "s/\[D\] [0-9]* /\[D\] 0 /" $x/$x.desc > $x/$x.desc.new
mv $x/$x.desc.new $x/$x.desc
done