1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

[releng] Update Versions for Juno SR1

This commit is contained in:
Martin Oberhuber 2012-09-19 13:42:42 +00:00
parent 229dbb8d54
commit f7acde6e32

View file

@ -102,9 +102,9 @@ if [ ${TYPE} = test ]; then
# Minor/major version updates are not allowed.
MINOR_UPDATE_OK=0
# Update of "qualifier" requires also updating "micro"
echo "VERIFYING VERSION CORRECTNESS: Features against ../updates/3.4"
echo "VERIFYING VERSION CORRECTNESS: Features against ../updates/3.4/201205300905"
ls features/*.jar | sed -e 's,^.*features/,,' | sort > f1.$$.txt
ls ../updates/3.4/features/*.jar | sed -e 's,^.*features/,,' | sort > f2.$$.txt
ls ../updates/3.4/201205300905/features/*.jar | sed -e 's,^.*features/,,' | sort > f2.$$.txt
diff f2.$$.txt f1.$$.txt | grep '^[>]' \
| sed -e 's,[>] \(.*_[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,' > f_new.txt
for f in `cat f_new.txt`; do
@ -128,9 +128,9 @@ if [ ${TYPE} = test ]; then
fi
fi
done
echo "VERIFYING VERSION CORRECTNESS: Plugins against ../updates/3.4"
echo "VERIFYING VERSION CORRECTNESS: Plugins against ../updates/3.4/201205300905"
ls plugins/*.jar | sed -e 's,^.*plugins/,,' | sort > p1.$$.txt
ls ../updates/3.4/plugins/*.jar | sed -e 's,^.*plugins/,,' | sort > p2.$$.txt
ls ../updates/3.4/201205300905/plugins/*.jar | sed -e 's,^.*plugins/,,' | sort > p2.$$.txt
diff p2.$$.txt p1.$$.txt | grep '^[>]' \
| sed -e 's,[>] \(.*_[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,' > p_new.txt
for p in `cat p_new.txt`; do