1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-29 19:23:38 +02:00

[releng] Upgrade to CDT-5.0RC3 / EMF-2.4.0RC3 / Basebuilder RC2_34

This commit is contained in:
Martin Oberhuber 2008-06-05 20:37:42 +00:00
parent f64962d5d4
commit 78423421cc

View file

@ -93,14 +93,16 @@ if [ ! -f eclipse/startup.jar ]; then
fi fi
cd ${curdir2} cd ${curdir2}
fi fi
if [ ! -f eclipse/plugins/org.eclipse.cdt.core_5.0.0.200804020801.jar ]; then
# CDT 5.0M6 Runtime # CDT 5.0RC3 Runtime
CDTVER=200805300802
if [ ! -f eclipse/plugins/org.eclipse.cdt.core_5.0.0.${CDTVER}.jar ]; then
echo "Getting CDT Runtime..." echo "Getting CDT Runtime..."
wget "http://download.eclipse.org/tools/cdt/builds/5.0.0/I.I200804020801/cdt-master-5.0.0-I200804020801.zip" wget "http://download.eclipse.org/tools/cdt/builds/5.0.0/I.I${CDTVER}/cdt-master-5.0.0-I${CDTVER}.zip"
CDTTMP=`pwd`/tmp.$$ CDTTMP=`pwd`/tmp.$$
mkdir ${CDTTMP} mkdir ${CDTTMP}
cd ${CDTTMP} cd ${CDTTMP}
unzip ../cdt-master-5.0.0-I200804020801.zip unzip ../cdt-master-5.0.0-I${CDTVER}.zip
cd .. cd ..
#java -jar eclipse/startup.jar \ #java -jar eclipse/startup.jar \
java -jar eclipse/plugins/org.eclipse.equinox.launcher_1.0.*.jar \ java -jar eclipse/plugins/org.eclipse.equinox.launcher_1.0.*.jar \
@ -108,16 +110,23 @@ if [ ! -f eclipse/plugins/org.eclipse.cdt.core_5.0.0.200804020801.jar ]; then
-command install \ -command install \
-from file://${CDTTMP} \ -from file://${CDTTMP} \
-featureId org.eclipse.cdt \ -featureId org.eclipse.cdt \
-version 5.0.0.200804020801 -version 5.0.0.${CDTVER}
rm -rf ${CDTTMP} rm -rf ${CDTTMP}
rm cdt-master-5.0.0-I200804020801.zip rm cdt-master-5.0.0-I${CDTVER}.zip
fi fi
if [ ! -f eclipse/plugins/org.eclipse.emf.doc_2.4.0.v200804012208.jar ]; then
# EMF 2.4.0RC3
EMFBRANCH=2.4.0
EMFDATE=200806021643
EMFVER=2.4.0RC3
if [ ! -f eclipse/dropins/eclipse/plugins/org.eclipse.emf.doc_2.4.0.v${EMFDATE}.jar ]; then
# Need EMF 2.4 SDK for Service Discovery ISV Docs Backlinks # Need EMF 2.4 SDK for Service Discovery ISV Docs Backlinks
echo "Getting EMF SDK..." echo "Getting EMF SDK..."
wget "http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200804012208/emf-sdo-xsd-SDK-2.4.0M6.zip" cd eclipse/dropins
unzip -o emf-sdo-xsd-SDK-2.4.0M6.zip wget "http://download.eclipse.org/modeling/emf/emf/downloads/drops/${EMFBRANCH}/S${EMFDATE}/emf-sdo-xsd-SDK-${EMFVER}.zip"
rm emf-sdo-xsd-SDK-2.4.0M6.zip unzip -o emf-sdo-xsd-SDK-${EMFVER}.zip
rm emf-sdo-xsd-SDK-${EMFVER}.zip
cd ../..
fi fi
if [ ! -f eclipse/plugins/org.junit_3.8.2.v20080327/junit.jar ]; then if [ ! -f eclipse/plugins/org.junit_3.8.2.v20080327/junit.jar ]; then
# Eclipse Test Framework # Eclipse Test Framework
@ -135,10 +144,10 @@ fi
# checkout the basebuilder # checkout the basebuilder
#baseBuilderTag=vI20080502-0100 #baseBuilderTag=vI20080502-0100
baseBuilderTag=M7_34 baseBuilderTag=RC2_34
if [ ! -f org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.core_3.4.0.v20080430-1001.jar \ if [ ! -f org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.core_3.4.0.v20080515-2000.jar \
-o ! -f org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.4.0.v20080430/pdebuild.jar \ -o ! -f org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.4.0.v20080430/pdebuild.jar \
-o ! -f org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.p2.metadata.generator_1.0.0.v20080501-1238.jar ]; then -o ! -f org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.p2.metadata.generator_1.0.0.v20080523-0001.jar ]; then
if [ -d org.eclipse.releng.basebuilder ]; then if [ -d org.eclipse.releng.basebuilder ]; then
echo "Re-getting basebuilder from CVS..." echo "Re-getting basebuilder from CVS..."
rm -rf org.eclipse.releng.basebuilder rm -rf org.eclipse.releng.basebuilder