Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 117244 Details for
Bug 186213
[POG]TPTP drivers are larger than my favourite video games
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Use p2 to install only necessary eclipse components
allinone_reducesize.txt (text/plain), 5.77 KB, created by
Joshua Bowles
on 2008-11-06 15:20:29 EST
(
hide
)
Description:
Use p2 to install only necessary eclipse components
Filename:
MIME Type:
Creator:
Joshua Bowles
Created:
2008-11-06 15:20:29 EST
Size:
5.77 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.hyades.releng.builder >Index: master/runtime/build.properties >=================================================================== >RCS file: /cvsroot/tptp/platform/org.eclipse.hyades.releng.builder/master/runtime/build.properties,v >retrieving revision 1.389 >diff -u -r1.389 build.properties >--- master/runtime/build.properties 4 Nov 2008 16:51:10 -0000 1.389 >+++ master/runtime/build.properties 6 Nov 2008 20:10:30 -0000 >@@ -158,10 +158,17 @@ > eclipseSdkFilename=eclipse-SDK-M20081031-1130-linux-gtk.tar.gz > eclipseSdkFilename_win32=eclipse-SDK-M20081031-1130-win32.zip > eclipsePlatformFilename=eclipse-platform-M20081031-1130-linux-gtk.tar.gz >+eclipsePlatformFilename_win32=eclipse-platform-M20081031-1130-win32.zip > eclipseRCPDelta=eclipse-M20081031-1130-delta-pack.zip > eclipseSwtWindows=swt-M20081031-1130-win32-win32-x86.zip > eclipseSwtLinux=swt-M20081031-1130-gtk-linux-x86.zip > eclipseSdkDirectory= >+# Used for p2 allinone instalation, change if builds are released or if versions rise above current the current number >+eclipseMetadataURL=http://download.eclipse.org/eclipse/updates/3.4.x >+# Differnt version numbers for each component, seach site.xml for the build date (eg. M20081031-1130) at above site >+cvsMetadataVersion=1.1.1.r34x_20080902-7C79E8N9nJD4oAW9V1938 >+jdtMetadataVersion=3.4.2.r342_v20081010-7o7tEAjEF_U5t4Ugrb2Iyss26M75 >+pdeMetadataVersion=3.4.1.r341_v20080731-7T7U1E9imVKxAHXtrFz-UU > > # EMF/XSD 2.2.4 > # >Index: master/runtime/customTargets.xml >=================================================================== >RCS file: /cvsroot/tptp/platform/org.eclipse.hyades.releng.builder/master/runtime/customTargets.xml,v >retrieving revision 1.702 >diff -u -r1.702 customTargets.xml >--- master/runtime/customTargets.xml 5 Nov 2008 18:49:57 -0000 1.702 >+++ master/runtime/customTargets.xml 6 Nov 2008 20:10:30 -0000 >@@ -337,30 +337,30 @@ > <param name="dstdir" value="${baseLocation}/../${eclipseSdkDirectory}"/> > </antcall> > >-<!-- Unzip an eclipse platform to be used to install features into the all-in-one --> >+<!-- Unzip an eclipse platform to be used for the Linux all-in-one --> > <antcall target="fetch.gunzip.untar"> > <param name="url" value="${eclipseDownloadUrl}/${eclipseSdkUrl}"/> > <param name="filename" value="${eclipsePlatformFilename}"/> >- <param name="dstdir" value="${buildDirectory}/p2installer"/> >+ <param name="dstdir" value="${buildDirectory}/linux_allinone"/> > </antcall> > <!-- The untar task loses the executable flag. Here's a workaround for the linux eclipse executable --> > <exec executable="/bin/chmod" output="${publishDirectory}/console.txt" logError="true" append="true"> > <arg line="755 ${baseLocation}/eclipse"/> > </exec> > <exec executable="/bin/chmod" output="${publishDirectory}/console.txt" logError="true" append="true"> >- <arg line="755 ${buildDirectory}/p2installer/eclipse/eclipse"/> >+ <arg line="755 ${buildDirectory}/linux_allinone/eclipse/eclipse"/> > </exec> > > <!-- Unzip a windows eclipse to become the all-in-one later --> > <exec executable="unzip"> >- <arg line="-q ${depPath}/${eclipseSdkFilename_win32} -d ${buildDirectory}/win_allinone"/> >+ <arg line="-q ${depPath}/${eclipsePlatformFilename_win32} -d ${buildDirectory}/win_allinone"/> > </exec> >-<!-- Make a copy of the unziped SDK that will be used for the linux All-in-one --> >+<!-- Make a copy of the unziped SDK that will be used to install features into the all-in-one --> > <exec executable="mkdir"> >- <arg line="${buildDirectory}/linux_allinone" /> >+ <arg line="${buildDirectory}/p2installer" /> > </exec> > <exec executable="cp"> >- <arg line="-r ${baseLocation} ${buildDirectory}/linux_allinone" /> >+ <arg line="-r ${baseLocation} ${buildDirectory}/p2installer" /> > </exec> > > <antcall target="fetch.unzip"> >@@ -1651,6 +1651,27 @@ > > <antcall target="run.director"> > <param name="p2.director.install.path" value="${buildDirectory}/${eviroment.modifier}_allinone/eclipse"/> >+ <param name="p2.IU" value="org.eclipse.cvs.feature.group" /> >+ <param name="p2.m.repo.location" value="${eclipseMetadataURL}" /> >+ <param name="p2.a.repo.location" value="${eclipseMetadataURL}" /> >+ <param name="p2.version" value="${cvsMetadataVersion}" /> >+ </antcall> >+ <antcall target="run.director"> >+ <param name="p2.director.install.path" value="${buildDirectory}/${eviroment.modifier}_allinone/eclipse"/> >+ <param name="p2.IU" value="org.eclipse.jdt.feature.group" /> >+ <param name="p2.m.repo.location" value="${eclipseMetadataURL}" /> >+ <param name="p2.a.repo.location" value="${eclipseMetadataURL}" /> >+ <param name="p2.version" value="${jdtMetadataVersion}" /> >+ </antcall> >+ <antcall target="run.director"> >+ <param name="p2.director.install.path" value="${buildDirectory}/${eviroment.modifier}_allinone/eclipse"/> >+ <param name="p2.IU" value="org.eclipse.pde.feature.group" /> >+ <param name="p2.m.repo.location" value="${eclipseMetadataURL}" /> >+ <param name="p2.a.repo.location" value="${eclipseMetadataURL}" /> >+ <param name="p2.version" value="${pdeMetadataVersion}" /> >+ </antcall> >+ <antcall target="run.director"> >+ <param name="p2.director.install.path" value="${buildDirectory}/${eviroment.modifier}_allinone/eclipse"/> > <param name="p2.IU" value="org.eclipse.emf.feature.group" /> > <param name="p2.m.repo.location" value="${emf24MetadataURL}" /> > <param name="p2.a.repo.location" value="${emf24MetadataURL}" /> >@@ -1713,7 +1734,7 @@ > <arg line="-metadataRepository ${p2.m.repo.location}" /> > <arg line="-artifactRepository ${p2.a.repo.location}" /> > <arg line="-version ${p2.version}" /> >- <arg line="-profile SDKProfile" /> >+ <arg line="-profile PlatformProfile" /> > <arg line="-vmArgs" /> > <arg line="-Declipse.p2.data.area=${p2.director.install.path}/p2" /> > </exec>
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 186213
:
117244
|
117460
|
117469