rpms/eclipse/devel buildDocPlugins.sh, NONE, 1.1 ecj.sh.in, NONE, 1.1 eclipse-buildDocPlugins.patch, NONE, 1.1 eclipse.spec, 1.188, 1.189

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Tue Oct 11 21:21:31 UTC 2005


Author: overholt

Update of /cvs/dist/rpms/eclipse/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv27210

Modified Files:
	eclipse.spec 
Added Files:
	buildDocPlugins.sh ecj.sh.in eclipse-buildDocPlugins.patch 
Log Message:
* Tue Oct 11 2005 Andrew Overholt <overholt at redhat.com> 3.1.1-1jpp_1fc
- 3.1.1.
- Patch around gij failing for the doc plug-in generation.
- Make /usr/bin/ecj a script (allows all jvms to call it).



--- NEW FILE buildDocPlugins.sh ---
#!/bin/sh

pushd plugins/org.eclipse.platform.doc.isv
  ant -f buildDoc.xml
popd
pushd plugins/org.eclipse.platform.doc.isv
  ant -Ddestination.temp.folder=../../tmp/eclipse/plugins gather.bin.parts
popd
pushd plugins/org.eclipse.platform.doc.user
  ant -Ddestination.temp.folder=../../tmp/eclipse/plugins gather.bin.parts
popd
pushd plugins/org.eclipse.jdt.doc.isv
  ant -f buildDoc.xml
popd
pushd plugins/org.eclipse.jdt.doc.isv
  ant -Ddestination.temp.folder=../../tmp/eclipse/plugins gather.bin.parts
popd
pushd plugins/org.eclipse.jdt.doc.user
  ant -Ddestination.temp.folder=../../tmp/eclipse/plugins gather.bin.parts
popd
pushd plugins/org.eclipse.pde.doc.user
  ant -f buildDoc.xml
popd
pushd plugins/org.eclipse.pde.doc.user
  ant -Ddestination.temp.folder=../../tmp/eclipse/plugins gather.bin.parts
popd


--- NEW FILE ecj.sh.in ---
#!/bin/sh

CLASSPATH=@JAVADIR@/eclipse-ecj.jar${CLASSPATH:+:}$CLASSPATH \
java org.eclipse.jdt.internal.compiler.batch.Main "$@"

eclipse-buildDocPlugins.patch:
 build.xml |   10 ++++++++++
 1 files changed, 10 insertions(+)

--- NEW FILE eclipse-buildDocPlugins.patch ---
--- build.xml.orig	2005-10-11 16:53:24.000000000 -0400
+++ build.xml	2005-10-11 16:54:08.000000000 -0400
@@ -126,10 +126,17 @@
 	</target>
 
 	<target name="build.doc.plugins">
+		<!-- FIXME -->
+		<!-- Patch around using antRunner since it fails with gij.  -overholt 2005-10-11 -->
 		<!--Build doc plug-ins using antRunner in eclipse to gain access to classpath required for
 		 pde.convertSchemaToHTML and help.buildHelpIndex tasks which are used when generating extension-point and help indeces.-->
 		<antcall target="install.eclipse.${archive.format}" />
 
+		<exec dir="${buildDirectory}" executable="sh" failonerror="true">
+			<arg line="buildDocPlugins.sh" />
+		</exec>
+
+		<!--
 		<java fork="true" jar="${buildDirectory}/eclipse/startup.jar" dir="${buildDirectory}/plugins/org.eclipse.platform.doc.isv" output="platform.doc.isv.txt">
 			<arg line="-data ${buildDirectory}/workspace -application org.eclipse.ant.core.antRunner gather.bin.parts -Ddestination.temp.folder=${buildDirectory}/tmp/eclipse/plugins/" />
 		</java>
@@ -145,11 +152,14 @@
 		<java fork="true" jar="${buildDirectory}/eclipse/startup.jar" dir="${buildDirectory}/plugins/org.eclipse.pde.doc.user" output="pde.doc.user.txt">
 			<arg line="-data ${buildDirectory}/workspace -application org.eclipse.ant.core.antRunner gather.bin.parts -Ddestination.temp.folder=${buildDirectory}/tmp/eclipse/plugins/" />
 		</java>
+		-->
 
 		<!--remove files created by running eclipse and incomplete doc plugins before adding in rebuilt doc plugins-->
+		<!--
 		<delete includeemptydirs="true">
 			<fileset dir="${buildDirectory}/eclipse/configuration" excludes="config.ini" />
 		</delete>
+		-->
 		<delete includeemptydirs="true">
 			<fileset dir="${buildDirectory}/eclipse/plugins" includes="*doc*/**" />
 		</delete>


Index: eclipse.spec
===================================================================
RCS file: /cvs/dist/rpms/eclipse/devel/eclipse.spec,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- eclipse.spec	11 Oct 2005 03:56:35 -0000	1.188
+++ eclipse.spec	11 Oct 2005 21:21:27 -0000	1.189
@@ -5,14 +5,13 @@
 %define tomcatlibdir 	%{_var}/lib/tomcat5
 %define pkg_summary     An open, extensible IDE
 %define section         free
-%define swt_version     3138
+%define swt_version     3139
 %define eclipse_major   3
 %define eclipse_minor   1
 %define eclipse_majmin  %{eclipse_major}.%{eclipse_minor}
-%define eclipse_micro   0
-%define eclipse_oldmajminmic  3.0.0
+%define eclipse_micro   1
 %define libname         libswt3
-%define build_id        I20050627-1435
+%define build_id        M20050929-0840
 
 # All arches line up except i386 -> x86
 %ifarch %{ix86}
@@ -23,12 +22,12 @@
 
 Summary:        %{pkg_summary}
 Name:           eclipse
-Version:        %{eclipse_majmin}.%{eclipse_micro}_fc
-Release:        15
+Version:        %{eclipse_majmin}.%{eclipse_micro}
+Release:        1jpp_1fc
 License:        EPL
 Group:          Text Editors/Integrated Development Environments (IDE)
 URL:            http://www.eclipse.org/
-Source0: http://download.eclipse.org/eclipse/downloads/drops/I20050627-1435/eclipse-sourceBuild-srcIncluded-I20050627-1435.zip
+Source0: http://download.eclipse.org/eclipse/downloads/drops/R-3.1.1-200509290840/eclipse-sourceBuild-srcIncluded-3.1.1.zip
 Source1:        %{name}.script
 Source2:        %{name}.desktop
 Source5:        %{name}-48.png
@@ -43,6 +42,8 @@
 # this zip was taken from the M6 source drop
 Source18:       ecj-M5.zip
 Source19:       %{name}-filenamepatterns.txt
+Source20:	ecj.sh.in
+Source21:	buildDocPlugins.sh
 
 # Build libswt-mozilla
 # https://bugs.eclipse.org/bugs/show_bug.cgi?id=71637
@@ -101,6 +102,9 @@
 # https://bugs.eclipse.org/bugs/show_bug.cgi?id=109253
 # http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=168040
 Patch37:	%{name}-gre64.conf.patch
+# gij fails with the antRunner tasks for building the doc plugins
+# so we use a shell script to call ant directly for each doc plug-in
+Patch38:	%{name}-buildDocPlugins.patch
 
 %if %{gcj_support}
 ExclusiveArch: %{ix86} x86_64 ppc
@@ -360,6 +364,8 @@
 pushd features/org.eclipse.platform.launchers
 %patch37 -p1
 popd
+%patch38 -p0
+cp %{SOURCE21} .
 
 %if %{gcj_support}
   # Fedora splash screen.
@@ -637,7 +643,7 @@
             echo $currentDir | gawk -F '/' '{ print "/"$7"/"$8"/"$9"/"$10"/"$11"/"$12"/"$13"/"$14 }' > %{_builddir}/%{buildsubdir}/%{libname}-gtk2.install;
           fi
         popd
-    elif [ "`basename $l`" = "libcore_3_1_0.so" ]; then
+    elif [ "`basename $l`" = "libcore_3_1_1.so" ]; then
         pushd `dirname $l`;
           cd ../../../../..;
           currentDir=`pwd`;
@@ -845,16 +851,12 @@
 ln -s %{_datadir}/%{name}/plugins/org.eclipse.jdt.core_%{eclipse_majmin}.%{eclipse_micro}.jar \
   $RPM_BUILD_ROOT%{_datadir}/java/eclipse-ecj.jar
 
+# Install /usr/bin/ecj script
+sed 's:@JAVADIR@:%{_javadir}:g' < %{SOURCE20} > ecj
+install -m755 ecj $RPM_BUILD_ROOT%{_bindir}
+
 %if %{gcj_support}
 aot-compile-rpm
-
-# Build and install ecj binary
-pushd $RPM_BUILD_ROOT%{_libdir}/gcj/%{name}
-  gcj -g -O2 --main=org.eclipse.jdt.internal.compiler.batch.Main \
-    -Wl,-R,%{_libdir}/gcj/%{name} org.eclipse.jdt.core_3.1.0.jar.so \
-    -o $RPM_BUILD_ROOT%{_bindir}/ecj
-popd
-chmod a+x $RPM_BUILD_ROOT%{_bindir}/ecj
 %endif
 
 %clean
@@ -922,8 +924,8 @@
 %if %{gcj_support}
 # Native bits
 %dir %{_libdir}/gcj/%{name}
-%{_libdir}/gcj/%{name}/org.eclipse.jdt.core_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.jdt.core_3.1.0.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.jdt.core_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.jdt.core_3.1.1.jar.db
 %{_bindir}/ecj
 %endif
 
@@ -942,24 +944,24 @@
 %if %{gcj_support}
 # Native bits
 %dir %{_libdir}/gcj/%{name}
-%{_libdir}/gcj/%{name}/org.eclipse.jface_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.jface_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.jface.text_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.jface.text_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.swt.gtk.linux.%{eclipse_arch}_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.swt.gtk.linux.%{eclipse_arch}_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.jface_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.jface_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.jface.text_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.jface.text_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.swt.gtk.linux.%{eclipse_arch}_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.swt.gtk.linux.%{eclipse_arch}_3.1.1.jar.so
 %endif
 
 %files jdt -f %{name}-jdt.install
 %{_bindir}/efj
 %if %{gcj_support}
 # Native bits
-%{_libdir}/gcj/%{name}/org.eclipse.jdt.debug.ui_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.jdt.debug.ui_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.jdt.debug.ui_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.jdt.debug.ui_3.1.1.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.jdt.launching_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.jdt.launching_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.jdt.ui_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.jdt.ui_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.jdt.ui_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.jdt.ui_3.1.1.jar.so
 %{_libdir}/gcj/%{name}/junitruntime.jar.db
 %{_libdir}/gcj/%{name}/junitruntime.jar.so
 %{_libdir}/gcj/%{name}/junitsupport.jar.db
@@ -983,12 +985,12 @@
 %{_libdir}/gcj/%{name}/pdebuild-ant.jar.db
 %{_libdir}/gcj/%{name}/pdejunit.jar.so
 %{_libdir}/gcj/%{name}/pdejunit.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.pde.core_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.pde.core_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.pde.runtime_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.pde.runtime_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.pde.ui_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.pde.ui_3.1.0.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.pde.core_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.pde.core_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.pde.runtime_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.pde.runtime_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.pde.ui_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.pde.ui_3.1.1.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.pde_3.1.0.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.pde_3.1.0.jar.db
 %endif
@@ -1049,8 +1051,8 @@
 %{_libdir}/gcj/%{name}/org.eclipse.core.resources_3.1.0.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.core.resources.compatibility_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.core.resources.compatibility_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.core.runtime_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.core.runtime_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.core.runtime_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.core.runtime_3.1.1.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.core.runtime.compatibility_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.core.runtime.compatibility_3.1.0.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.core.variables_3.1.0.jar.db
@@ -1061,8 +1063,8 @@
 %{_libdir}/gcj/%{name}/org.eclipse.help.appserver_3.1.0.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.help.base_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.help.base_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.help.ui_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.help.ui_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.help.ui_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.help.ui_3.1.1.jar.so
 %{_libdir}/gcj/%{name}/jsp.jar.db
 %{_libdir}/gcj/%{name}/jsp.jar.so
 %{_libdir}/gcj/%{name}/servlets.jar.db
@@ -1071,82 +1073,82 @@
 %{_libdir}/gcj/%{name}/webapp.jar.so
 %{_libdir}/gcj/%{name}/tomcatwrapper.jar.db
 %{_libdir}/gcj/%{name}/tomcatwrapper.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ui_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ui_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ui.browser_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ui.browser_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ui.cheatsheets_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ui.cheatsheets_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ui_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ui_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ui.browser_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ui.browser_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ui.cheatsheets_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ui.cheatsheets_3.1.1.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.ui.console_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.ui.console_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ui.editors_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ui.editors_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ui.externaltools_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ui.externaltools_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ui.editors_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ui.editors_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ui.externaltools_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ui.externaltools_3.1.1.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.ui.forms_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.ui.forms_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ui.ide_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ui.ide_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ui.intro_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ui.intro_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ui.ide_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ui.ide_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ui.intro_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ui.intro_3.1.1.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.ui.presentations.r21_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.ui.presentations.r21_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ui.views_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ui.views_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ui.workbench_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ui.workbench_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ui.workbench.texteditor_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ui.workbench.texteditor_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ui.views_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ui.views_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ui.workbench_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ui.workbench_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ui.workbench.texteditor_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ui.workbench.texteditor_3.1.1.jar.so
 %{_libdir}/gcj/%{name}/compatibility.jar.db
 %{_libdir}/gcj/%{name}/compatibility.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.update.configurator_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.update.configurator_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.update.core_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.update.core_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.update.core_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.update.core_3.1.1.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.update.scheduler_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.update.scheduler_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.update.ui_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.update.ui_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.osgi_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.osgi_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.osgi.services_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.osgi.services_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.osgi.util_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.osgi.util_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ant.core_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ant.core_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ant.ui_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ant.ui_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.compare_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.compare_3.1.0.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.update.ui_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.update.ui_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.osgi_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.osgi_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.osgi.services_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.osgi.services_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.osgi.util_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.osgi.util_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ant.core_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ant.core_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ant.ui_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ant.ui_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.compare_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.compare_3.1.1.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.debug.core_3.1.0.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.debug.core_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.debug.ui_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.debug.ui_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.ltk.ui.refactoring_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.ltk.ui.refactoring_3.1.0.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.debug.ui_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.debug.ui_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.ltk.ui.refactoring_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.ltk.ui.refactoring_3.1.1.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.ltk.core.refactoring_3.1.0.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.ltk.core.refactoring_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/activeHelpSample.jar.db
 %{_libdir}/gcj/%{name}/activeHelpSample.jar.so
 %{_libdir}/gcj/%{name}/platform.jar.db
 %{_libdir}/gcj/%{name}/platform.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.team.core_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.team.core_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.team.cvs.core_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.team.cvs.core_3.1.0.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.team.core_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.team.core_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.team.cvs.core_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.team.cvs.core_3.1.1.jar.so
 %{_libdir}/gcj/%{name}/org.eclipse.team.cvs.ssh_3.1.0.jar.db
 %{_libdir}/gcj/%{name}/org.eclipse.team.cvs.ssh_3.1.0.jar.so
 %{_libdir}/gcj/%{name}/cvsssh2.jar.so
 %{_libdir}/gcj/%{name}/cvsssh2.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.team.cvs.ui_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.team.cvs.ui_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.team.ui_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.team.ui_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.search_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.search_3.1.0.jar.db
-%{_libdir}/gcj/%{name}/org.eclipse.text_3.1.0.jar.so
-%{_libdir}/gcj/%{name}/org.eclipse.text_3.1.0.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.team.cvs.ui_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.team.cvs.ui_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.team.ui_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.team.ui_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.search_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.search_3.1.1.jar.db
+%{_libdir}/gcj/%{name}/org.eclipse.text_3.1.1.jar.so
+%{_libdir}/gcj/%{name}/org.eclipse.text_3.1.1.jar.db
 # These will go away when we get a newer system ant
 %{_libdir}/gcj/%{name}/ant.jar.db
 %{_libdir}/gcj/%{name}/ant.jar.so
@@ -1155,9 +1157,14 @@
 %files platform-devel
 %{_datadir}/%{name}/plugins/org.eclipse.platform.source_3.*
 %{_datadir}/%{name}/features/org.eclipse.platform.source_3.*
-%{_datadir}/%{name}/plugins/org.eclipse.platform.source.linux.gtk.*_3.1.0
+%{_datadir}/%{name}/plugins/org.eclipse.platform.source.linux.gtk.*_3.1.1
 
 %changelog
+* Tue Oct 11 2005 Andrew Overholt <overholt at redhat.com> 3.1.1-1jpp_1fc
+- 3.1.1.
+- Patch around gij failing for the doc plug-in generation.
+- Make /usr/bin/ecj a script (allows all jvms to call it).
+
 * Sat Oct 08 2005 Andrew Overholt <overholt at redhat.com> 3.1.0_fc-15
 - Bump mozilla requirement.
 - Re-enable org.eclipse.ui.forms_3.1.0.jar.so, org.eclipse.osgi_3.1.0.jar.so,




More information about the fedora-cvs-commits mailing list