rpms/eclipse/FC-6 eclipse-add-ppc64-sparc64-s390-s390x.patch, NONE, 1.1 eclipse.spec, 1.350, 1.351

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Thu Feb 8 07:50:24 UTC 2007


Author: bkonrath

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

Modified Files:
	eclipse.spec 
Added Files:
	eclipse-add-ppc64-sparc64-s390-s390x.patch 
Log Message:
* Thu Feb 08 2007 Ben Konrath <bkonrath at redhat.com> 3.2.1-24.fc6
- Check for features directory in sdk postun script.
- Update ecj [] patch to upstream version from 3.3.
- Add bugzilla reference to remove jars bug in comment.
- Update bugzilla refereces to [] bugs.
- Fix %%postun problem in the sdk sub-package.
- Rpmlint cleanups.
- Use sed instead of patch for tomcat version.
- Add BuildRequires desktop-file-utils.
- Add %%{_libdir}/eclipse dir to files list of libswt-gtk2.
- Rework ppc64, s390{x} and sparc{64} hack to fix multilib problem.
- Specfile cleanups from review with Andrew Overholt.
- Resolves: #224588, #211008, #225329, #207016, #227524.


eclipse-add-ppc64-sparc64-s390-s390x.patch:
 eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java                          |    0 
 eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java                                         |    0 
 features/org.eclipse.platform.source/feature.xml                                                               |    4 
 features/org.eclipse.rcp.source/feature.xml                                                                    |    5 
 features/org.eclipse.rcp/feature.xml                                                                           |   55 ++++++++++
 plugins/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java                   |    4 
 plugins/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java                                    |    5 
 plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java |    2 
 plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java                |    5 
 src/org/eclipse/core/internal/runtime/InternalPlatform.java                                                    |    0 
 src/org/eclipse/core/runtime/Platform.java                                                                     |    0 
 11 files changed, 79 insertions(+), 1 deletion(-)

--- NEW FILE eclipse-add-ppc64-sparc64-s390-s390x.patch ---
Index: src/org/eclipse/core/runtime/Platform.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java,v
retrieving revision 1.106
diff -u -r1.106 Platform.java
--- plugins/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java	13 Apr 2006 00:42:47 -0000	1.106
+++ plugins/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Platform.java	31 Jan 2007 21:33:51 -0000
@@ -339,6 +339,11 @@
 	 * @since 3.1
 	 */
 	public static final String ARCH_IA64_32 = "ia64_32";//$NON-NLS-1$
+	
+	public static final String ARCH_PPC64 = "ppc64";//$NON-NLS-1$
+	public static final String ARCH_SPARC64 = "sparc64";//$NON-NLS-1$
+	public static final String ARCH_S390 = "s390";//$NON-NLS-1$
+	public static final String ARCH_S390X = "s390x";//$NON-NLS-1$
 
 	/**
 	 * Constant string (value "win32") indicating the platform is running on a
Index: src/org/eclipse/core/internal/runtime/InternalPlatform.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java,v
retrieving revision 1.253
diff -u -r1.253 InternalPlatform.java
--- plugins/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java	21 Apr 2006 20:49:57 -0000	1.253
+++ plugins/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java	31 Jan 2007 21:33:50 -0000
@@ -52,6 +52,10 @@
 			Platform.ARCH_X86, //
 			Platform.ARCH_AMD64, // 
 			Platform.ARCH_IA64, //
+			Platform.ARCH_PPC64, //
+			Platform.ARCH_SPARC64, //
+			Platform.ARCH_S390, //
+			Platform.ARCH_S390X, //
 			Platform.ARCH_IA64_32};
 	private static final String BOOT = "-boot"; //$NON-NLS-1$
 	private static final String CLASSLOADER_PROPERTIES = "-classloaderProperties"; //$NON-NLS-1$	
Index: eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java,v
retrieving revision 1.13
diff -u -r1.13 PluginConverterImpl.java
--- plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java	13 Apr 2006 16:10:27 -0000	1.13
+++ plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java	31 Jan 2007 21:33:52 -0000
@@ -64,7 +64,7 @@
 	private static final String MANIFEST_VERSION = "Manifest-Version"; //$NON-NLS-1$
 	private static final String PLUGIN_PROPERTIES_FILENAME = "plugin"; //$NON-NLS-1$
 	private static PluginConverterImpl instance;
-	private static final String[] ARCH_LIST = {org.eclipse.osgi.service.environment.Constants.ARCH_PA_RISC, org.eclipse.osgi.service.environment.Constants.ARCH_PPC, org.eclipse.osgi.service.environment.Constants.ARCH_SPARC, org.eclipse.osgi.service.environment.Constants.ARCH_X86, org.eclipse.osgi.service.environment.Constants.ARCH_AMD64, org.eclipse.osgi.service.environment.Constants.ARCH_IA64};
+	private static final String[] ARCH_LIST = {org.eclipse.osgi.service.environment.Constants.ARCH_PA_RISC, org.eclipse.osgi.service.environment.Constants.ARCH_PPC, org.eclipse.osgi.service.environment.Constants.ARCH_SPARC, org.eclipse.osgi.service.environment.Constants.ARCH_X86, org.eclipse.osgi.service.environment.Constants.ARCH_AMD64, org.eclipse.osgi.service.environment.Constants.ARCH_IA64, org.eclipse.osgi.service.environment.Constants.ARCH_PPC64, org.eclipse.osgi.service.environment.Constants.ARCH_SPARC64, org.eclipse.osgi.service.environment.Constants.ARCH_S390, org.eclipse.osgi.service.environment.Constants.ARCH_S390X};
 	static public final String FRAGMENT_MANIFEST = "fragment.xml"; //$NON-NLS-1$
 	static public final String GENERATED_FROM = "Generated-from"; //$NON-NLS-1$
 	static public final String MANIFEST_TYPE_ATTRIBUTE = "type"; //$NON-NLS-1$
Index: eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java,v
retrieving revision 1.9
diff -u -r1.9 Constants.java
--- plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java	13 Jun 2005 17:14:22 -0000	1.9
+++ plugins/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java	31 Jan 2007 21:33:52 -0000
@@ -119,6 +119,11 @@
 	 */
 	public static final String ARCH_IA64_32 = "ia64_32";//$NON-NLS-1$
 
+	public static final String ARCH_PPC64 = "ppc64";//$NON-NLS-1$
+	public static final String ARCH_SPARC64 = "sparc64";//$NON-NLS-1$
+	public static final String ARCH_S390 = "s390";//$NON-NLS-1$
+	public static final String ARCH_S390X = "s390x";//$NON-NLS-1$
+	
 	/**
 	 * Constant string (value "win32") indicating the platform is running on a
 	 * machine using the Windows windowing system.
Index: feature.xml
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.sdk-feature/features/org.eclipse.rcp/feature.xml,v
retrieving revision 1.40.2.1
diff -u -r1.40.2.1 feature.xml
--- features/org.eclipse.rcp/feature.xml 1 Aug 2006 17:29:33 -0000 1.40.2.1
+++ features/org.eclipse.rcp/feature.xml 6 Feb 2007 23:44:22 -0000
@@ -308,5 +308,60 @@
          install-size="0"
          version="0.0.0"
          unpack="false"/>
+    
+   <plugin
+         id="org.eclipse.swt.gtk.linux.ppc64"
+         os="linux"
+         ws="gtk"
+         arch="ppc64"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.s390"
+         os="linux"
+         ws="gtk"
+         arch="s390"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.s390x"
+         os="linux"
+         ws="gtk"
+         arch="s390x"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.sparc"
+         os="linux"
+         ws="gtk"
+         arch="sparc"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         fragment="true"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.swt.gtk.linux.sparc64"
+         os="linux"
+         ws="gtk"
+         arch="sparc64"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         fragment="true"
+         unpack="false"/>
 
 </feature>
diff -ru features/org.eclipse.platform.source/feature.xml features/org.eclipse.platform.source/feature.xml
--- features/org.eclipse.platform.source/feature.xml	2007-02-06 19:04:05.000000000 -0500
+++ features/org.eclipse.platform.source/feature.xml	2007-02-06 19:07:26.000000000 -0500
@@ -28,4 +28,8 @@
 	<plugin ws="gtk"  os="linux" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.x86" version="3.2.1.r321_v20060921-MGDh_08KUYM-Bvn"/>
 	<plugin ws="win32"  os="win32" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.win32.win32.x86" version="3.2.1.r321_v20060921-MGDh_08KUYM-Bvn"/>
 	<plugin ws="motif"  os="linux" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.motif.x86" version="3.2.1.r321_v20060921-MGDh_08KUYM-Bvn"/>
+	<plugin ws="gtk"  os="linux" fragment="true" arch="s390" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.s390" version="3.2.1.r321_v20060921-MGDh_08KUYM-Bvn"/>
+	<plugin ws="gtk"  os="linux" fragment="true" arch="s390x" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.s390x" version="3.2.1.r321_v20060921-MGDh_08KUYM-Bvn"/>
+	<plugin ws="gtk"  os="linux" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.sparc" version="3.2.1.r321_v20060921-MGDh_08KUYM-Bvn"/>
+	<plugin ws="gtk"  os="linux" fragment="true" arch="sparc64" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.sparc64" version="3.2.1.r321_v20060921-MGDh_08KUYM-Bvn"/>
 </feature>
diff -ru features/org.eclipse.rcp.source/feature.xml features/org.eclipse.rcp.source/feature.xml
--- features/org.eclipse.rcp.source/feature.xml	2007-02-06 19:04:06.000000000 -0500
+++ features/org.eclipse.rcp.source/feature.xml	2007-02-06 19:09:11.000000000 -0500
@@ -28,4 +28,9 @@
 	<plugin ws="win32"  os="win32" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.rcp.source.win32.win32.x86" version="3.2.1.r321_v20060801-clWbqCmjexIWDqg"/>
 	<plugin ws="motif"  os="solaris" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.rcp.source.solaris.motif.sparc" version="3.2.1.r321_v20060801-clWbqCmjexIWDqg"/>
 	<plugin ws="motif"  os="linux" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.motif.x86" version="3.2.1.r321_v20060801-clWbqCmjexIWDqg"/>
+	<plugin ws="gtk"  os="linux" fragment="true" arch="ppc64" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.gtk.ppc64" version="3.2.1.r321_v20060801-clWbqCmjexIWDqg"/>
+	<plugin ws="gtk"  os="linux" fragment="true" arch="s390" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.gtk.s390" version="3.2.1.r321_v20060801-clWbqCmjexIWDqg"/>
+	<plugin ws="gtk"  os="linux" fragment="true" arch="s390x" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.gtk.s390x" version="3.2.1.r321_v20060801-clWbqCmjexIWDqg"/>
+	<plugin ws="gtk"  os="linux" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.gtk.sparc" version="3.2.1.r321_v20060801-clWbqCmjexIWDqg"/>
+	<plugin ws="gtk"  os="linux" fragment="true" arch="sparc64" download-size="0" install-size="0" id="org.eclipse.rcp.source.linux.gtk.sparc64" version="3.2.1.r321_v20060801-clWbqCmjexIWDqg"/>
 </feature>


Index: eclipse.spec
===================================================================
RCS file: /cvs/dist/rpms/eclipse/FC-6/eclipse.spec,v
retrieving revision 1.350
retrieving revision 1.351
diff -u -r1.350 -r1.351
--- eclipse.spec	1 Feb 2007 21:10:49 -0000	1.350
+++ eclipse.spec	8 Feb 2007 07:50:16 -0000	1.351
@@ -111,6 +111,7 @@
 # fixed a number of update-related bugs -- in an FC6 update.
 # We can remove this patch for Fedora 8.
 Patch23:        %{name}-launcher-addplatformtotildeeclipse.patch
+Patch24:        %{name}-add-ppc64-sparc64-s390-s390x.patch
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  ant
@@ -683,33 +684,27 @@
                                                       assemble.org.eclipse.sdk.linux.gtk.ia64.xml \
                                                       features/org.eclipse.rcp/build.xml
 
-# Nasty hack to get suppport for ppc64, s390{,x} and sparc{,64}
+## Nasty hack to get suppport for ppc64, s390{,x} and sparc{,64}
+%patch24 -p0
+# there is only partial support for ppc64 in 3.2 so we have to remove this 
+# partial support to get the replacemnt hack to work
+find -name \*ppc64\* | xargs rm -r
+# remove ppc64 support from features/org.eclipse.platform.source/feature.xml
+# replace ppc64 with a fake arch (ppc128) so we don't have duplicate ant targets
+find -type f -name \*.xml -exec sed --in-place "s/\(rootFileslinux_gtk_\)ppc64/\1ppc128/g" "{}" \;
+# remove org.eclipse.platform.source.linux.gtk.ppc64,3.2.0.v20060602-0010-gszCh-8eOaU1uKq
+sed --in-place "s/,.\{38\}ppc64.*macosx/,org.eclipse.platform.source.macosx/g" features/org.eclipse.platform.source/build.xml
+# replace final occurances with an existing arch
+sed --in-place "s/ppc64/x86_64/g" features/org.eclipse.platform.source/build.xml
 # Move all of the ia64 directories to ppc64 or s390{,x} or sparc{,64} dirs and replace 
 # the ia64 strings with ppc64 or s390(x)
 %ifarch ppc64 s390 s390x sparc sparc64
-  # there is only partial support for ppc64 in 3.2 so we have to remove this 
-  # partial support to get the replacemnt hack to work
-  find -name \*ppc64\* | xargs rm -r
-  
-  # remove ppc64 support from features/org.eclipse.platform.source/feature.xml
-  # replace ppc64 with a fake arch (ppc128) so we don't have duplicate ant targets
-  find -type f -name \*.xml -exec sed --in-place "s/\(rootFileslinux_gtk_\)ppc64/\1ppc128/g" "{}" \;
-  # remove org.eclipse.platform.source.linux.gtk.ppc64,3.2.0.v20060602-0010-gszCh-8eOaU1uKq
-  sed --in-place "s/,.\{38\}ppc64.*macosx/,org.eclipse.platform.source.macosx/g" features/org.eclipse.platform.source/build.xml
-  # replace final occurances with an existing arch
-  sed --in-place "s/ppc64/x86_64/g" features/org.eclipse.platform.source/build.xml
-
-  # remove ppc64 support from features/org.eclipse.platform.source/feature.xml
-  mv features/org.eclipse.platform.source/feature.xml features/org.eclipse.platform.source/feature.xml.orig
-  grep -v ppc64 features/org.eclipse.platform.source/feature.xml.orig > features/org.eclipse.platform.source/feature.xml        
-
-  # finally, the replacement hack
   for f in $(find -name \*ia64\* | grep -v motif | grep -v ia64_32); do 
     mv $f $(echo $f | sed "s/ia64/%{_arch}/")
   done
-  find -type f -exec sed --in-place "s/ia64_32/@eye-eh-64_32@/g" "{}" \;
-  find -type f -exec sed --in-place "s/ia64/%{_arch}/g" "{}" \;
-  find -type f -exec sed --in-place "s/@eye-eh-64_32@/ia64_32/g" "{}" \;
+  find -type f ! -name \*.java -a ! -name feature.xml -exec sed --in-place "s/ia64_32/@eye-eh-64_32@/g" "{}" \;
+  find -type f ! -name \*.java -a ! -name feature.xml -exec sed --in-place "s/ia64/%{_arch}/g" "{}" \;
+  find -type f ! -name \*.java -a ! -name feature.xml -exec sed --in-place "s/@eye-eh-64_32@/ia64_32/g" "{}" \;
 %endif 
 
 # gjdoc can't handle Mac-encoded files
@@ -977,10 +972,22 @@
 mv $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins/com.ibm.icu.source_3.4.5 $RPM_BUILD_ROOT%{_libdir}/%{name}/plugins
 
 # FIXME: there is a problem with gjdoc generating different HTML on different
-# architectures.  This happens with this plugin.
+# architectures.
 PLATFORMDOCISVVERSION=$(ls $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins | grep platform.doc.isv_ | sed 's/org.eclipse.platform.doc.isv_//')
 mv $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins/org.eclipse.platform.doc.isv_$PLATFORMDOCISVVERSION \
   $RPM_BUILD_ROOT%{_libdir}/%{name}/plugins
+# ppc64 is problematic with these two
+JDTDOCISVVERSION=$(ls $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins | grep jdt.doc.isv_ | sed 's/org.eclipse.jdt.doc.isv_//')
+mv $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins/org.eclipse.jdt.doc.isv_$JDTDOCISVVERSION \
+  $RPM_BUILD_ROOT%{_libdir}/%{name}/plugins
+PDEDOCUSERVERSION=$(ls $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins | grep pde.doc.user_ | sed 's/org.eclipse.pde.doc.user_//')
+mv $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins/org.eclipse.pde.doc.user_$PDEDOCUSERVERSION \
+  $RPM_BUILD_ROOT%{_libdir}/%{name}/plugins
+
+# Adding support for ppc64, s390{x} and sparc{64} makes the rcp feature 
+# have multilib conflicts
+mv $RPM_BUILD_ROOT%{_datadir}/%{name}/features/org.eclipse.rcp_* \
+  $RPM_BUILD_ROOT%{_libdir}/%{name}/features
 
 # To ensure that the product is org.eclipse.sdk.ide when eclipse-sdk is
 # installed, we must check for its presence at %%post{,un} time.  This does not
@@ -1055,7 +1062,7 @@
 done
 popd
 
-# Install the SWT symlinks in libdir
+# Install the SWT jar symlinks in libdir
 SWTJARVERSION=$(grep v$SWT_VERSION plugins/org.eclipse.swt.gtk.linux.%{eclipse_arch}/build.xml | sed "s:.*<.*\"\(.*\)\"/>:\1:")
 pushd $RPM_BUILD_ROOT%{_libdir}/%{name}
 ln -s %{_libdir}/%{name}/plugins/org.eclipse.swt.gtk.linux.%{eclipse_arch}_$SWTJARVERSION.jar swt-gtk-%{eclipse_majmin}.%{eclipse_micro}.jar
@@ -1489,7 +1496,7 @@
 %{_datadir}/%{name}/about_files
 %endif
 %{_datadir}/%{name}/readme
-%{_datadir}/%{name}/features/org.eclipse.rcp_*
+%{_libdir}/%{name}/features/org.eclipse.rcp_*
 %{_datadir}/%{name}/plugins/org.eclipse.update.configurator_*
 %{_datadir}/%{name}/plugins/org.eclipse.osgi_*
 %{_datadir}/%{name}/plugins/org.eclipse.equinox.registry_*
@@ -1710,13 +1717,13 @@
 %files jdt-sdk
 %defattr(-,root,root)
 %{_datadir}/%{name}/features/org.eclipse.jdt.source_*
-%{_datadir}/%{name}/plugins/org.eclipse.jdt.doc.isv_*
+%{_libdir}/%{name}/plugins/org.eclipse.jdt.doc.isv_*
 %{_datadir}/%{name}/plugins/org.eclipse.jdt.source_*
 
 %files pde
 %defattr(-,root,root)
 %{_datadir}/%{name}/features/org.eclipse.pde_*
-%{_datadir}/%{name}/plugins/org.eclipse.pde.doc.user_*
+%{_libdir}/%{name}/plugins/org.eclipse.pde.doc.user_*
 %{_datadir}/%{name}/plugins/org.eclipse.pde.build_*
 %{_datadir}/%{name}/plugins/org.eclipse.pde.build
 %{_datadir}/%{name}/plugins/org.eclipse.pde_*
@@ -1751,7 +1758,7 @@
 %{_libdir}/%{name}/plugins/org.eclipse.sdk_*
 
 %changelog
-* Mon Jan 29 2007 Ben Konrath <bkonrath at redhat.com> 3.2.1-24.fc6
+* Thu Feb 08 2007 Ben Konrath <bkonrath at redhat.com> 3.2.1-24.fc6
 - Check for features directory in sdk postun script.
 - Update ecj [] patch to upstream version from 3.3.
 - Add bugzilla reference to remove jars bug in comment.
@@ -1761,8 +1768,9 @@
 - Use sed instead of patch for tomcat version.
 - Add BuildRequires desktop-file-utils.
 - Add %%{_libdir}/eclipse dir to files list of libswt-gtk2.
+- Rework ppc64, s390{x} and sparc{64} hack to fix multilib problem.
 - Specfile cleanups from review with Andrew Overholt.
-- Resolves: #224588, #211008, #225329.
+- Resolves: #224588, #211008, #225329, #207016, #227524.
 
 * Tue Nov 28 2006 Andrew Overholt <overholt at redhat.com> 3.2.1-23.fc6
 - Add patch to add platform to ~/.eclipse's platform.xml.  This maintains




More information about the fedora-cvs-commits mailing list