#!/bin/sh CDTTAG=CDT_5_0_1 ECLIPSEBASE=$(rpm --eval %{_libdir})/eclipse mkdir -p temp && cd temp mkdir -p home mkdir -p ws rm -rf org.eclipse.cdt-releng cvs -d:pserver:anonymous@dev.eclipse.org:/cvsroot/tools export -r $CDTTAG org.eclipse.cdt-releng/org.eclipse.cdt.releng cd org.eclipse.cdt-releng/org.eclipse.cdt.releng/ # The build.xml doesn't fetch master or testing features so we must add this ourselves. sed --in-place -e'87,87i\\t\t\n\t\t\t\n\t\t' build.xml sed --in-place -e'87,87i\\t\t\n\t\t\t\n\t\t' build.xml sed --in-place -e'69,69i\\t\t\n\t\t\t\n\t\t' build.xml sed --in-place -e'69,69i\\t\t\n\t\t\t\n\t\t' build.xml # Remove copying of binary jar in build.xml. We remove this jar so this operation will fail. sed --in-place -e "/copy file=\"\${buildDirectory}.*net\.sourceforge\.lpg/,/\/>/"d build.xml PDEBUILDVERSION=$(ls $ECLIPSEBASE/dropins/sdk/plugins | grep pde.build_ | sed 's/org.eclipse.pde.build_//') java -cp /usr/lib/eclipse/startup.jar \ -Duser.home=../../home \ -XX:CompileCommand="exclude,org/eclipse/core/internal/dtree/DataTreeNode,forwardDeltaWith" \ -XX:CompileCommand="exclude,org/eclipse/jdt/internal/compiler/lookup/ParameterizedMethodBinding," \ -XX:CompileCommand="exclude,org/eclipse/cdt/internal/core/dom/parser/cpp/semantics/CPPTemplates,instantiateTemplate" \ -XX:CompileCommand="exclude,org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPLinkage,addBinding" \ org.eclipse.core.launcher.Main \ -Dpde.build.scripts=$ECLIPSEBASE/dropins/sdk/eclipse/plugins/org.eclipse.pde.build_$PDEBUILDVERSION/scripts \ -application org.eclipse.ant.core.antRunner \ -buildfile build.xml -DbaseLocation=$ECLIPSEBASE \ -Dpde.build.scripts=$ECLIPSEBASE/dropins/sdk/plugins/org.eclipse.pde.build_$PDEBUILDVERSION/scripts \ -DcdtTag=$CDTTAG \ -DdontUnzip=true fetch #eclipse -nosplash -console find . -name net.*.jar -exec rm {} \; # Unfortunately for us, bringing in the master feature also drags in the c99 and upc features. We must # remove them because they depend on the binary jar we just removed and build will note this, even if we # don't build those features. pushd results/features rm -rf *c99* rm -rf *upc* rm -rf *lrparser* rm -rf *xlc* popd pushd results/plugins rm -rf *c99* rm -rf *upc* rm -rf *lrparser* rm -rf *xlc* popd # Remove optional features: c99, upc, lrparser, and xlc from the master # feature list. We do not package them. pushd results/features/org.eclipse.cdt.master sed --in-place -e "56,63d" feature.xml sed --in-place -e "36,43d" feature.xml popd cd .. && tar jcf eclipse-cdt-fetched-src-$CDTTAG.tar.bz2 org.eclipse.cdt.releng