- Remove post sections that munge eclipse.product; always set it to
org.eclipse.platform.ide or org.eclipse.sdk.ide. - Remove changelogs prior to 3.2.0.
This commit is contained in:
parent
a14cc0a7ba
commit
c9609e95da
509
eclipse.spec
509
eclipse.spec
@ -26,7 +26,7 @@ Epoch: 1
|
|||||||
Summary: An open, extensible IDE
|
Summary: An open, extensible IDE
|
||||||
Name: eclipse
|
Name: eclipse
|
||||||
Version: %{eclipse_majmin}.%{eclipse_micro}
|
Version: %{eclipse_majmin}.%{eclipse_micro}
|
||||||
Release: 12%{?dist}
|
Release: 14%{?dist}
|
||||||
License: EPL
|
License: EPL
|
||||||
Group: Text Editors/Integrated Development Environments (IDE)
|
Group: Text Editors/Integrated Development Environments (IDE)
|
||||||
URL: http://www.eclipse.org/
|
URL: http://www.eclipse.org/
|
||||||
@ -1012,8 +1012,8 @@ rm -r $RPM_BUILD_ROOT%{_libdir}/%{name}/configuration/org.eclipse.core.runtime
|
|||||||
# Where did these go?
|
# Where did these go?
|
||||||
#rm -r $RPM_BUILD_ROOT%{_libdir}/%{name}/configuration/*.log
|
#rm -r $RPM_BUILD_ROOT%{_libdir}/%{name}/configuration/*.log
|
||||||
|
|
||||||
# Set config.ini for the rcp package, the lowest package in the dependancy chain.
|
# Set config.ini for the platform; no benefit to having it be sdk
|
||||||
sed --in-place "s/eclipse.product=org.eclipse.sdk.ide/#eclipse.product=/" \
|
sed --in-place "s/eclipse.product=org.eclipse.sdk.ide/eclipse.product=org.eclipse.platform.ide/" \
|
||||||
$RPM_BUILD_ROOT%{_libdir}/%{name}/configuration/config.ini
|
$RPM_BUILD_ROOT%{_libdir}/%{name}/configuration/config.ini
|
||||||
|
|
||||||
# Install the Eclipse binary
|
# Install the Eclipse binary
|
||||||
@ -1099,12 +1099,12 @@ install -p -D -m0644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.
|
|||||||
# Eclipse packagers)
|
# Eclipse packagers)
|
||||||
# FIXME use the third id
|
# FIXME use the third id
|
||||||
pushd $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins/org.eclipse.sdk_%{eclipse_majmin}.*
|
pushd $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins/org.eclipse.sdk_%{eclipse_majmin}.*
|
||||||
FEDORA_VERSION=`cat /etc/fedora-release`
|
OS_VERSION=`cat /etc/*-release | head -n 1`
|
||||||
sed -e "s/\(0=.*\)/\1 ($FEDORA_VERSION)/" < about.mappings > about.mappings.tmp
|
sed -e "s/\(0=.*\)/\1 ($OS_VERSION)/" < about.mappings > about.mappings.tmp
|
||||||
mv about.mappings.tmp about.mappings
|
mv about.mappings.tmp about.mappings
|
||||||
popd
|
popd
|
||||||
pushd $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins/org.eclipse.platform_%{eclipse_majmin}.*
|
pushd $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins/org.eclipse.platform_%{eclipse_majmin}.*
|
||||||
sed -e "s/\(0=.*\)/\1 ($FEDORA_VERSION)/" < about.mappings > about.mappings.tmp
|
sed -e "s/\(0=.*\)/\1 ($OS_VERSION)/" < about.mappings > about.mappings.tmp
|
||||||
mv about.mappings.tmp about.mappings
|
mv about.mappings.tmp about.mappings
|
||||||
popd
|
popd
|
||||||
|
|
||||||
@ -1345,10 +1345,6 @@ touch --no-create %{_datadir}/icons/hicolor
|
|||||||
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||||
gtk-update-icon-cache -q %{_datadir}/icons/hicolor
|
gtk-update-icon-cache -q %{_datadir}/icons/hicolor
|
||||||
fi
|
fi
|
||||||
if [ -f %{_libdir}/%{name}/configuration/config.ini ]; then
|
|
||||||
sed --in-place "s/#eclipse.product=/eclipse.product=org.eclipse.platform.ide/" \
|
|
||||||
%{_libdir}/%{name}/configuration/config.ini
|
|
||||||
fi
|
|
||||||
|
|
||||||
%postun platform
|
%postun platform
|
||||||
%if %{gcj_support}
|
%if %{gcj_support}
|
||||||
@ -1358,20 +1354,13 @@ touch --no-create %{_datadir}/icons/hicolor
|
|||||||
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||||
gtk-update-icon-cache -q %{_datadir}/icons/hicolor
|
gtk-update-icon-cache -q %{_datadir}/icons/hicolor
|
||||||
fi
|
fi
|
||||||
if [ -d %{_datadir}/%{name}/features ]; then
|
|
||||||
PLATFORMDIR=$(ls %{_datadir}/%{name}/features | grep "org\.eclipse\.platform_")
|
|
||||||
if [ -z "$PLATFORMDIR" -a -f %{_libdir}/%{name}/configuration/config.ini ]; then
|
|
||||||
sed --in-place "s/eclipse.product=org.eclipse.platform.ide/#eclipse.product=/" \
|
|
||||||
%{_libdir}/%{name}/configuration/config.ini
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
%post sdk
|
%post sdk
|
||||||
%if %{gcj_support}
|
%if %{gcj_support}
|
||||||
%{_bindir}/rebuild-gcj-db
|
%{_bindir}/rebuild-gcj-db
|
||||||
%endif
|
%endif
|
||||||
if [ -f %{_libdir}/%{name}/configuration/config.ini ]; then
|
if [ -f %{_libdir}/%{name}/configuration/config.ini ]; then
|
||||||
sed --in-place "s/eclipse.product=org.eclipse.platform.ide/eclipse.product=org.eclipse.sdk.ide/" \
|
sed --in-place "s/[#]*eclipse.product=.*/eclipse.product=org.eclipse.sdk.ide/" \
|
||||||
%{_libdir}/%{name}/configuration/config.ini
|
%{_libdir}/%{name}/configuration/config.ini
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -1379,12 +1368,9 @@ fi
|
|||||||
%if %{gcj_support}
|
%if %{gcj_support}
|
||||||
%{_bindir}/rebuild-gcj-db
|
%{_bindir}/rebuild-gcj-db
|
||||||
%endif
|
%endif
|
||||||
if [ -d %{_datadir}/%{name}/features ]; then
|
if [ -f %{_libdir}/%{name}/configuration/config.ini ]; then
|
||||||
SDKDIR=$(ls %{_datadir}/%{name}/features | grep "org\.eclipse\.sdk_")
|
sed --in-place "s/[#]*eclipse.product=.*/eclipse.product=org.eclipse.platform.ide/" \
|
||||||
if [ -z "$SDKDIR" -a -f %{_libdir}/%{name}/configuration/config.ini ]; then
|
%{_libdir}/%{name}/configuration/config.ini
|
||||||
sed --in-place "s/eclipse.product=org.eclipse.sdk.ide/eclipse.product=org.eclipse.platform.ide/" \
|
|
||||||
%{_libdir}/%{name}/configuration/config.ini
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%if %{gcj_support}
|
%if %{gcj_support}
|
||||||
@ -1458,7 +1444,7 @@ rm -f %{_datadir}/%{name}/configuration/org.eclipse.update/platform.xml*
|
|||||||
%{_libdir}/%{name}/configuration/org.eclipse.osgi/.lazy*
|
%{_libdir}/%{name}/configuration/org.eclipse.osgi/.lazy*
|
||||||
%{_libdir}/%{name}/configuration/org.eclipse.osgi/.manager
|
%{_libdir}/%{name}/configuration/org.eclipse.osgi/.manager
|
||||||
%{_libdir}/%{name}/configuration/org.eclipse.osgi/.state*
|
%{_libdir}/%{name}/configuration/org.eclipse.osgi/.state*
|
||||||
%verify(not md5 size mtime) %{_libdir}/%{name}/configuration/config.ini
|
%{_libdir}/%{name}/configuration/config.ini
|
||||||
%{_libdir}/%{name}/.eclipseextension
|
%{_libdir}/%{name}/.eclipseextension
|
||||||
%{_datadir}/%{name}/.eclipseproduct
|
%{_datadir}/%{name}/.eclipseproduct
|
||||||
%{_datadir}/%{name}/notice.html
|
%{_datadir}/%{name}/notice.html
|
||||||
@ -1734,6 +1720,11 @@ rm -f %{_datadir}/%{name}/configuration/org.eclipse.update/platform.xml*
|
|||||||
%{_datadir}/%{name}/plugins/org.eclipse.sdk_*
|
%{_datadir}/%{name}/plugins/org.eclipse.sdk_*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Nov 02 2006 Andrew Overholt <overholt@redhat.com> 3.2.1-14
|
||||||
|
- Remove post sections that munge eclipse.product; always set it to
|
||||||
|
org.eclipse.platform.ide or org.eclipse.sdk.ide.
|
||||||
|
- Remove changelogs prior to 3.2.0.
|
||||||
|
|
||||||
* Thu Nov 02 2006 Ben Konrath <bkonrath@redhat.com> 3.2.1-12
|
* Thu Nov 02 2006 Ben Konrath <bkonrath@redhat.com> 3.2.1-12
|
||||||
- Move doc plugins to %%{_libdir}/eclipse/plugins because of html is being
|
- Move doc plugins to %%{_libdir}/eclipse/plugins because of html is being
|
||||||
generated differently on different arches.
|
generated differently on different arches.
|
||||||
@ -1991,471 +1982,3 @@ rm -f %{_datadir}/%{name}/configuration/org.eclipse.update/platform.xml*
|
|||||||
|
|
||||||
* Wed May 31 2006 Ben Konrath <bkonrath@redhat.com> 3.2.0-0jpp_0fc.3.2RC6
|
* Wed May 31 2006 Ben Konrath <bkonrath@redhat.com> 3.2.0-0jpp_0fc.3.2RC6
|
||||||
- 3.2RC6.
|
- 3.2RC6.
|
||||||
|
|
||||||
* Tue May 30 2006 Ben Konrath <bkonrath@redhat.com> 3.1.2-1jpp_15fc
|
|
||||||
- Add pde.build-add-package-build.patch to add generic releng scripts.
|
|
||||||
- Move doc.isv plugins to devel packages and require java-javadoc on devel
|
|
||||||
packages.
|
|
||||||
- Add pde-runtime subpackage - needed for PHPeclipse package.
|
|
||||||
- Update libswt mozilla patch for mozilla 1.7.13.
|
|
||||||
- Add swt patch to fix rh#191536, e.o#98371.
|
|
||||||
|
|
||||||
* Mon May 15 2006 Andrew Overholt <overholt@redhat.com> 3.1.2-1jpp_14fc
|
|
||||||
- Bump mozilla requirement to match rawhide.
|
|
||||||
|
|
||||||
* Tue Mar 07 2006 Andrew Overholt <overholt@redhat.com> 3.1.2-1jpp_13fc
|
|
||||||
- One more small help fix (include tomcatwrapper.jar o.e.tomcat manifest).
|
|
||||||
|
|
||||||
* Fri Mar 03 2006 Andrew Overholt <overholt@redhat.com> 3.1.2-1jpp_12fc
|
|
||||||
- Only build with a native ecj on x86{,_64}
|
|
||||||
|
|
||||||
* Tue Feb 28 2006 Andrew Overholt <overholt@redhat.com> 3.1.2-1jpp_12fc
|
|
||||||
- Update to tomcat 5.5 (e.o#98371).
|
|
||||||
- Don't build on ppc64 until we get the tomcat situation straightened out.
|
|
||||||
|
|
||||||
* Fri Feb 17 2006 Igor Foox <ifoox@redhat.com> - 1:3.1.2-1jpp_10fc
|
|
||||||
- Added patch for ppc64.
|
|
||||||
|
|
||||||
* Fri Feb 17 2006 Igor Foox <ifoox@redhat.com> - 1:3.1.2-1jpp_9fc
|
|
||||||
- Try build on ppc64.
|
|
||||||
|
|
||||||
* Fri Feb 17 2006 Andrew Overholt <overholt@redhat.com> - 1:3.1.2-1jpp_8fc
|
|
||||||
- Try build on ppc64 (rh#172172, rh#181846).
|
|
||||||
|
|
||||||
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:3.1.2-1jpp_7fc
|
|
||||||
- bump again for double-long bug on ppc(64)
|
|
||||||
|
|
||||||
* Fri Feb 10 2006 Ben Konrath <bkonrath@redhat.com> 3.1.2-1jpp_6fc
|
|
||||||
- Update the rebuild-sdk-features script to use the 3.1 updatesite (rh#180387, rh#180768).
|
|
||||||
- Make platform/feature.xml reference the tomcat5 plugin.
|
|
||||||
|
|
||||||
* Tue Feb 07 2006 Andrew Overholt <overholt@redhat.com> 3.1.2-1jpp_5fc
|
|
||||||
- Use new java-1.4.2-gcj-compat-javadoc package.
|
|
||||||
- Always generate debug info when building RPMs (Andrew Haley).
|
|
||||||
- Slightly modify swt-gtk symlinks (rh#180000).
|
|
||||||
|
|
||||||
* Mon Feb 06 2006 Andrew Overholt <overholt@redhat.com> 3.1.2-1jpp_4fc
|
|
||||||
- Add an swt-gtk.jar and fix symlink to point to correct jar (rh#180000).
|
|
||||||
- Link against generic libjawt.so (rh#158755).
|
|
||||||
- Re-add patch to use built launcher.
|
|
||||||
|
|
||||||
* Sat Feb 4 2006 Ben Konrath <bkonrath@redhat.com> 3.1.2-1jpp_3fc
|
|
||||||
- Update efj patches to match what has been committed to HEAD.
|
|
||||||
|
|
||||||
* Fri Feb 3 2006 Igor Foox <ifoox@redhat.com> 3.1.2-1jpp_2fc
|
|
||||||
- Updated launcher script.
|
|
||||||
|
|
||||||
* Tue Jan 31 2006 Andrew Overholt <overholt@redhat.com> 3.1.2-1jpp_1fc
|
|
||||||
- 3.1.2.
|
|
||||||
- Remove unnecessary patches.
|
|
||||||
|
|
||||||
* Tue Jan 31 2006 Karsten Hopp <karsten@redhat.de>
|
|
||||||
- BuildRequire: unzip
|
|
||||||
|
|
||||||
* Wed Jan 25 2006 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_16fc
|
|
||||||
- Rebuild against latest gcc to see if this fixes rh#178156.
|
|
||||||
|
|
||||||
* Wed Jan 04 2006 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_15fc
|
|
||||||
- Update s390{,x} patches.
|
|
||||||
- Use natively-compiled ecj during build.
|
|
||||||
- Attempt build on ia64.
|
|
||||||
- Change about_files to be i386 and x86_64 only (will patch file upstream).
|
|
||||||
|
|
||||||
* Fri Dec 23 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_14fc
|
|
||||||
- Rebuild again.
|
|
||||||
|
|
||||||
* Wed Dec 21 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_13fc
|
|
||||||
- Rebuild with new gcc (gcc#25121).
|
|
||||||
|
|
||||||
* Mon Dec 19 2005 Igor Foox <ifoox@redhat.com> 3.1.1-1jpp_12fc
|
|
||||||
- New version of launcher path (rh#175454).
|
|
||||||
|
|
||||||
* Mon Dec 19 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_11fc
|
|
||||||
- Update patch for offline javadoc linking.
|
|
||||||
- Rebuild with new gjdoc (rh#161147).
|
|
||||||
|
|
||||||
* Tue Dec 13 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_10fc
|
|
||||||
- Add patch for offline javadoc building/linking.
|
|
||||||
|
|
||||||
* Mon Dec 12 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_10fc
|
|
||||||
- Use ecj from 3.1.1 (rh#175380).
|
|
||||||
- Remove ecj options patch as it is in ecj from 3.1.1.
|
|
||||||
- New version of launcher patch (rh#175454) - ifoox.
|
|
||||||
|
|
||||||
* Sun Dec 11 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_10fc
|
|
||||||
- Build with gcc 4.1.
|
|
||||||
|
|
||||||
* Fri Dec 09 2005 Ben Konrath <bkonrath@redhat.com> 3.1.1-1jpp_10fc
|
|
||||||
- update updatehomedir-core.patch to remove unused code
|
|
||||||
|
|
||||||
* Wed Dec 07 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_9fc
|
|
||||||
- Add patch for launcher following symlinks (rh#168726, e.o#79592) - ifoox.
|
|
||||||
- Remove launcher script.
|
|
||||||
|
|
||||||
* Mon Dec 05 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_8fc
|
|
||||||
- Add eclipse-rcp-devel as a requirement of eclipse-platform-devel
|
|
||||||
(rh#161267).
|
|
||||||
- Updated splash screen (thanks to Diana Fong) (rh#170580).
|
|
||||||
- Include and use rebuild-sdk-features (rh#173589).
|
|
||||||
|
|
||||||
* Fri Dec 02 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_8fc
|
|
||||||
- Update EFJ patch (e.o#75333).
|
|
||||||
- Update update-site-in-home-dir patch (e.o#90630) - bkonrath.
|
|
||||||
|
|
||||||
* Tue Nov 15 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_7fc
|
|
||||||
- Disable ia64 and ppc64 for now (these seem to be upstream issues).
|
|
||||||
|
|
||||||
* Thu Nov 10 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_7fc
|
|
||||||
- Build on ppc64 and ia64.
|
|
||||||
- Add patch for mozilla code with gcc 4:
|
|
||||||
http://debian-ppc64.alioth.debian.org/gcc4/patches-old/swt-gtk_3.1-1.0.0.1.gcc4.patch
|
|
||||||
|
|
||||||
* Fri Nov 04 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_6fc
|
|
||||||
- Patch org.eclipse.help.webapp jasper classpath.
|
|
||||||
|
|
||||||
* Thu Nov 03 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_5fc
|
|
||||||
- Import work done by Debian Eclipse packagers:
|
|
||||||
- Add Fedora version in Eclipse about dialog.
|
|
||||||
- Update eclipse-javadoc.patch to match Debian's disable-filelog patch.
|
|
||||||
- Remove buildDoc patches and add helpindexbuilder patch (e.o#114001).
|
|
||||||
- Add patches to build Cairo SWT bindings.
|
|
||||||
|
|
||||||
* Tue Nov 01 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_4fc
|
|
||||||
- Temporarily exclude ia64 and ppc64 (rh#172174).
|
|
||||||
|
|
||||||
* Mon Oct 31 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_4fc
|
|
||||||
- Bump mozilla requirement.
|
|
||||||
- Use libXtst-devel instead of xorg-x11-devel.
|
|
||||||
|
|
||||||
* Thu Oct 27 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_4fc
|
|
||||||
- Really fix browser issue on x86_64 (rh#168040).
|
|
||||||
- Attempt to build on ia64 and ppc64 (include swt-mozilla on the latter).
|
|
||||||
- Add BuildRequires for libgnome{,ui}-devel (rh#171532).
|
|
||||||
|
|
||||||
* Tue Oct 25 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_3fc
|
|
||||||
- Make non-gcj builds not noarch (rh#171711).
|
|
||||||
|
|
||||||
* Wed Oct 12 2005 Andrew Overholt <overholt@redhat.com> 3.1.1-1jpp_2fc
|
|
||||||
- Add JavaModelCache overflow patch (e.o#111299).
|
|
||||||
|
|
||||||
* Tue Oct 11 2005 Andrew Overholt <overholt@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@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,
|
|
||||||
and org.eclipse.ui.workbench_3.1.0.jar.so (rh#146463, rh#158137, rh#151919)
|
|
||||||
- Add patch for /etc/gre64.conf (for 64-bit systems, rh#168040, e.o#109253).
|
|
||||||
- Remove MOZILLA_FIVE_HOME magic from eclipse.script.
|
|
||||||
- Remove jdtCompilerAdapter.jar due to aot-compile-rpm smarts.
|
|
||||||
- Bump gcc and java-gcj-compat requirements.
|
|
||||||
- Remove lucene-1.4.3-src.zip (rh#170343).
|
|
||||||
|
|
||||||
* Wed Aug 24 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-14
|
|
||||||
- /usr/lib -> %{_libdir} in eclipse.script (rh#159031).
|
|
||||||
|
|
||||||
* Tue Aug 23 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-13
|
|
||||||
- Bump mozilla requirement.
|
|
||||||
|
|
||||||
* Thu Jul 28 2005 Gary Benson <gbenson@redhat.com> 3.1.0_fc-12
|
|
||||||
- Allow leading separators in classpaths (e.o#105430).
|
|
||||||
- Clear away ant-jmf entirely.
|
|
||||||
|
|
||||||
* Wed Jul 27 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-11
|
|
||||||
- Bump release for FC4 update.
|
|
||||||
|
|
||||||
* Mon Jul 25 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-10
|
|
||||||
- Change mozilla BuildRequirement to be equals and not greater-than or equals
|
|
||||||
since we need the exact version for our patches.
|
|
||||||
- Bump mozilla requirements and patches to 1.7.10.
|
|
||||||
- Bump release due to FC4 update still not being released.
|
|
||||||
- Add ant-jmf to exclude list.
|
|
||||||
|
|
||||||
* Tue Jul 19 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-7
|
|
||||||
- Remove ant-jmf symlinking and requirement.
|
|
||||||
- Update to use java-gcj-compat and not java-1.4.2-gcj-compat.
|
|
||||||
|
|
||||||
* Tue Jul 12 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-6
|
|
||||||
- Bump release to build against new gcc.
|
|
||||||
- Bump gcc requirement to gcc 4.0.1.
|
|
||||||
- Add back BuildArch until we get bootstrapping sorted out.
|
|
||||||
- Bump required version of java-gcj-compat to the latest (-40jpp_37rh).
|
|
||||||
- Remove lots of jiggery-pokery with native compilation and use gbenson's new
|
|
||||||
aot-compile.
|
|
||||||
- Re-work files sections appropriately.
|
|
||||||
- Change mozilla-nspr-devel -> nspr-devel due to change in mozilla packaging.
|
|
||||||
- Update patch for mozilla build as per above.
|
|
||||||
- Add org.eclipse.osgi_3.1.0.jar to exclude.
|
|
||||||
|
|
||||||
* Tue Jul 05 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-5
|
|
||||||
- Revert ecj_bootstrap patch since it won't work.
|
|
||||||
- Keep mozilla requirement off ppc64.
|
|
||||||
- Add ant-apache-bsf requirement since we have that in FC5.
|
|
||||||
|
|
||||||
* Tue Jul 05 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-4
|
|
||||||
- Add ecj_bootstrap patch from Gary Benson to bootstrap new architectures.
|
|
||||||
- Remove ExclusiveArch.
|
|
||||||
|
|
||||||
* Tue Jul 05 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-3
|
|
||||||
- Bump release for FC4 update.
|
|
||||||
|
|
||||||
* Mon Jul 04 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-2
|
|
||||||
- Remove remaining pre-built ant jars (but don't symlink to ant.jar until we
|
|
||||||
have ant 1.6.5 - rh#162444).
|
|
||||||
- Bump requirement on gcc to get fixes for rh#158614 and gcc#21637.
|
|
||||||
- Add patch to not try to link to external javadocs and include the javadoc
|
|
||||||
output in the build output.
|
|
||||||
- Add build and runtime requirement on ant-javamail (I'm not sure how we missed
|
|
||||||
this previously).
|
|
||||||
|
|
||||||
* Mon Jul 4 2005 Gary Benson <gbenson@redhat.com> 3.1.0_fc-2
|
|
||||||
- Disable classpath access rules introduced in e.o#92398 (rh#162177).
|
|
||||||
|
|
||||||
* Tue Jun 28 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-1
|
|
||||||
- Import 3.1.
|
|
||||||
- Update splash screen.
|
|
||||||
|
|
||||||
* Sun Jun 26 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.RC4.1
|
|
||||||
- Import 3.1 RC4.
|
|
||||||
- Remove activeHelpSample.jar building patch as it's now fixed upstream.
|
|
||||||
- Add patch to remove references to cairo since we don't have it in FC4.
|
|
||||||
- Add about.html and about_files to eclipse-platform.install (x86 & x86_64).
|
|
||||||
- Add patch to create public compare API (jpound - e.o#98707).
|
|
||||||
- Add patch from Robin Green to not look for firefox libxpcom.so (rh#161658).
|
|
||||||
- Symlink lucene jars (rh#159939).
|
|
||||||
|
|
||||||
* Fri Jun 24 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.RC3.3
|
|
||||||
- Add rcp requirement for platform (rh#161267).
|
|
||||||
- Add un-owned osgi directories to libswt and platform.
|
|
||||||
|
|
||||||
* Tue Jun 21 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.RC3.2
|
|
||||||
- Use SWT bundle ID for SWT %files list (determine in %%install).
|
|
||||||
|
|
||||||
* Mon Jun 20 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.RC3.1
|
|
||||||
- Import 3.1RC3.
|
|
||||||
- Use FileInitializer (e.o#90535) - this should eliminate .sos in ~/.eclipse.
|
|
||||||
- Add eclipse-filenamepatterns.txt ("*.so" currently) for above.
|
|
||||||
- Symlink JNI libraries.
|
|
||||||
|
|
||||||
* Fri Jun 17 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.RC2.2
|
|
||||||
- Update to new naming scheme for resulting gzipped tarball.
|
|
||||||
- Add patch to not generate help indices (it seems to hang).
|
|
||||||
|
|
||||||
* Thu Jun 16 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.RC2.1
|
|
||||||
- Import 3.1RC2.
|
|
||||||
- Add RCP sub-package. Unsure about its dependencies ATM.
|
|
||||||
|
|
||||||
* Tue Jun 14 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M7.9
|
|
||||||
- Add tomcat5 patch and symlinks.
|
|
||||||
|
|
||||||
* Thu May 26 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M7.8
|
|
||||||
- Fix ant jar removal (gbenson).
|
|
||||||
|
|
||||||
* Wed May 25 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M7.7
|
|
||||||
- Fix ecj symlink in /usr/share/java (rh#158734).
|
|
||||||
|
|
||||||
* Sun May 22 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M7.4
|
|
||||||
- Remove compilation of jdt.ui jar.so on ppc.
|
|
||||||
|
|
||||||
* Sat May 21 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M7.3
|
|
||||||
- Add ecj-options patch to bootstrap source.
|
|
||||||
- Make embedded browser widget work (Robin Green).
|
|
||||||
- Bump required version of java-gcj-compat to the latest (-40jpp_24rh).
|
|
||||||
- Use -lgcjawt when building with gcj.
|
|
||||||
|
|
||||||
* Wed May 18 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M7.2
|
|
||||||
- Disable org.eclipse.osgi_3.1.0.jar.so.
|
|
||||||
- Add ecj-options patch, remove ecj-extdirs patch.
|
|
||||||
|
|
||||||
* Wed May 18 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M7.1
|
|
||||||
- Update to 3.1M7.
|
|
||||||
- Add file initializer patch.
|
|
||||||
- Temporarily remove s390{,x} patches.
|
|
||||||
- Update GNU formatter ui patch.
|
|
||||||
- Add ECJ ext dirs patch.
|
|
||||||
|
|
||||||
* Tue May 17 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M6.19
|
|
||||||
- Add Epoch on eclipse-platform.
|
|
||||||
- Use %%{_bindir} in post and postun scripts.
|
|
||||||
|
|
||||||
* Tue May 17 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M6.18
|
|
||||||
- Add Epoch to jsch requires.
|
|
||||||
|
|
||||||
* Mon May 16 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M6.17
|
|
||||||
- Update libswt-mozilla patches and require mozilla 1.7.8.
|
|
||||||
|
|
||||||
* Fri May 13 2005 Andrew Overholt <overholt@redhat.com>
|
|
||||||
- Use %%{ix86} macro in ExclusiveArch rather than i386 (jorton).
|
|
||||||
|
|
||||||
* Wed May 11 2005 Ben Konrath <bkonrath@redhat.com>
|
|
||||||
- Add jsch >= 0.1.18-1jpp.
|
|
||||||
- Remove Fedora specific part of junit version.
|
|
||||||
- Temporarily disable org.eclipse.ui.forms_3.1.0.jar.so (rh#146463).
|
|
||||||
|
|
||||||
* Mon May 09 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M6.16
|
|
||||||
- Add Requires junit >= 3.8.1-3jpp_4fc to JDT.
|
|
||||||
- Add -g to gcj calls.
|
|
||||||
|
|
||||||
* Thu May 05 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M6.15
|
|
||||||
- Rebuild with new gjdoc (rh#152049).
|
|
||||||
|
|
||||||
* Wed May 4 2005 Ben Konrath <bkonrath@redhat.com>
|
|
||||||
- Re-enable jdt.ui/jdt.jar.so and require gcj 4.0.0-2 (rh#151296).
|
|
||||||
|
|
||||||
* Mon May 2 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M6.14
|
|
||||||
- Replace temporary patch to debug.ui with upstream patch to swt (rh#155853).
|
|
||||||
|
|
||||||
* Sat Apr 30 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M6.13
|
|
||||||
- Add patch to temporarily stop an NPE in debug.ui (rh#155853).
|
|
||||||
|
|
||||||
* Thu Apr 28 2005 Phil Muldoon <pmuldoon@redhat.com>
|
|
||||||
- Allow multiple optional arguments in eclipse-copy-platform.sh
|
|
||||||
|
|
||||||
* Wed Apr 27 2005 Andrew Overholt <overholt@redhat.com>
|
|
||||||
- Include epoch in mozilla BuildRequires.
|
|
||||||
- Remove last remaining gij-specific option from eclipse.script.
|
|
||||||
|
|
||||||
* Wed Apr 27 2005 Jeremy Katz <katzj@redhat.com> 3.1.0_fc-0.M6.12
|
|
||||||
- silence %%post
|
|
||||||
|
|
||||||
* Sun Apr 24 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M6.11
|
|
||||||
- Re-add osgi.jar.so since gcj fix is in our gcc RPMs.
|
|
||||||
- Bump gcc requirements accordingly.
|
|
||||||
- Add gcc-c++ to BuildRequires (for SWT Mozilla).
|
|
||||||
- Add specific java-1.4.2-gcj-compat nvr requirement (rh#151866).
|
|
||||||
|
|
||||||
* Fri Apr 22 2005 Aaron Luchko <aluchko@redhat.com> 3.1.0_fc-0.M6.10
|
|
||||||
- Import archived projects (e.o#82988)
|
|
||||||
|
|
||||||
* Fri Apr 22 2005 Andrew Overholt <overholt@redhat.com>
|
|
||||||
- Add Requires(post,postun): java-1.4.2-gcj-compat for each sub-package and use
|
|
||||||
full path (Joe Orton).
|
|
||||||
- Make /usr/bin/eclipse executable again (rh#155715).
|
|
||||||
- Bump jsch version.
|
|
||||||
|
|
||||||
* Thu Apr 21 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M6.9
|
|
||||||
- Use upstream icons (not RHDS ones) (rh#146484).
|
|
||||||
- Add plugin directories to %files sections.
|
|
||||||
- Rework %files sections a bit.
|
|
||||||
- Fix SWT symlink (bkonrath).
|
|
||||||
- Temporarily remove jdt.ui/jdt.jar.so.
|
|
||||||
|
|
||||||
* Thu Apr 21 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M6.8
|
|
||||||
- Fix updatesite patch.
|
|
||||||
- Temporarily remove org.eclipse.ui.workbench_3.1.0.jar.so (r.c#151919)
|
|
||||||
|
|
||||||
* Mon Apr 18 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M6.7
|
|
||||||
- Add %if %%{gcj_support} blocks.
|
|
||||||
- Add %%{_libdir}/%%{name}/plugins to native %files section of each sub-rpm.
|
|
||||||
- Add GNU-style JDT code formatting option (e.o#91770).
|
|
||||||
- Add patch to install plugins from update site in home dir (e.o#90630).
|
|
||||||
- Change gcc-java requirements to libgcj as gcj-dbtool is now in the latter.
|
|
||||||
|
|
||||||
* Mon Apr 18 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M6.6
|
|
||||||
- Bump version number.
|
|
||||||
|
|
||||||
* Mon Apr 18 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M6.5
|
|
||||||
- Update mozilla patch.
|
|
||||||
|
|
||||||
* Sat Apr 16 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M6.4
|
|
||||||
- Update to 3.1M6.
|
|
||||||
- Change bootstrap procedure to match the upstream method.
|
|
||||||
- Remove patches that were fixed upstream.
|
|
||||||
- Add efj wrapper script.
|
|
||||||
|
|
||||||
* Wed Apr 13 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M5.20
|
|
||||||
- Fix the bootstrap patch (the ecj jar was missing some files).
|
|
||||||
|
|
||||||
* Tue Apr 12 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.19
|
|
||||||
- Add Requires(post,postun): java-1.4.2-gcj-compat for rebuild-gcj-db (Joe
|
|
||||||
Orton).
|
|
||||||
- Add ecj binary.
|
|
||||||
|
|
||||||
* Wed Apr 06 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.18
|
|
||||||
- Fix typo in gcj db building loops.
|
|
||||||
- Add -O1 to x86_64 jar.so compilation.
|
|
||||||
- Add EFJ (Eclipse Formatter for Java) patches (bkonrath) (e.o#75333).
|
|
||||||
- Add patch to build swttools.jar (e.o#90364).
|
|
||||||
- Symlink out to ant-jsch now that we have that.
|
|
||||||
|
|
||||||
* Mon Apr 04 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.17
|
|
||||||
- Actually insert .jar-.jar.so combinations into sub-dbs.
|
|
||||||
|
|
||||||
* Thu Mar 31 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.16
|
|
||||||
- Fix eclipse.script to not leave a sh process around (Joe Orton)
|
|
||||||
- Use proper sub-dbs.
|
|
||||||
- Don't compile jars that are symlinked from elsewhere.
|
|
||||||
- Add jar-so combinations to .db based on .jar.so existence (not .jar).
|
|
||||||
- Rename sub-dbs to be eclipse-*.db.
|
|
||||||
- Use rebuild-gcj-db script.
|
|
||||||
|
|
||||||
* Mon Mar 28 2005 Christopher Aillon <caillon@redhat.com>
|
|
||||||
- rebuilt
|
|
||||||
|
|
||||||
* Fri Mar 25 2005 Christopher Aillon <caillon@redhat.com> 3.1.0_fc-0.M5.14
|
|
||||||
- Update the GTK+ theme icon cache on (un)install
|
|
||||||
|
|
||||||
* Fri Mar 18 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.13
|
|
||||||
- Re-add compilation of resources.jar.
|
|
||||||
- Backport bootstrapping patch.
|
|
||||||
- Add Requires: java-1.4.2-gcj-compat.
|
|
||||||
- Modified find patch courtesy Ziga Mahkovec (RH#149927#).
|
|
||||||
- Compile with -O2 on ppc as well.
|
|
||||||
- Add jsch, jakarta-commons-modeler, and mx4j symlinking.
|
|
||||||
- Make use of gcj-dbtool -f to create databases in install.
|
|
||||||
- Use system-wide classmap.db.
|
|
||||||
- Remove *.jarswithnativelibs from files sections.
|
|
||||||
- Update mozilla dependency.
|
|
||||||
|
|
||||||
* Mon Mar 07 2005 Ben Konrath <bkonrath@redhat.com> 3.1.0_fc-0.M5.12
|
|
||||||
- Add activeHelpSample.jar patch.
|
|
||||||
- Change to Fedora M-build splash screen.
|
|
||||||
- Add find patch courtesy Ziga Mahkovec (RH#149927#)
|
|
||||||
- Build native stuff with -O2 on i386.
|
|
||||||
|
|
||||||
* Mon Mar 07 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.11
|
|
||||||
- Add s390 and s390x patches.
|
|
||||||
- Don't build for them, though, due to gcc bug and Eclipse building issue.
|
|
||||||
- Add xorg-x11-devel BuildRequires.
|
|
||||||
|
|
||||||
* Fri Mar 04 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.10
|
|
||||||
- Add proper mozilla version.
|
|
||||||
- Don't build eclipseAdaptor.jar.so in order to work around plugin building
|
|
||||||
problems.
|
|
||||||
|
|
||||||
* Thu Mar 03 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.9
|
|
||||||
- Add patch to build libswt-mozilla.
|
|
||||||
- Build libswt-awt.
|
|
||||||
- Add 64-bit swt lib list.
|
|
||||||
|
|
||||||
* Tue Mar 01 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.8
|
|
||||||
- Add ppc.
|
|
||||||
- Add patch to copy over icon for unsupported (upstream) platforms but don't
|
|
||||||
include the source for the launcher.
|
|
||||||
- gcc4 -> gcc changes.
|
|
||||||
- Add swt-cairo to 64-bit platforms' %files.
|
|
||||||
|
|
||||||
* Fri Feb 25 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.7
|
|
||||||
- Add tar args patch (e.o #86571).
|
|
||||||
- New build bootstrapping patches.
|
|
||||||
|
|
||||||
* Fri Feb 25 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M5.6
|
|
||||||
- Re-work how we do the gcj-dbtool magic.
|
|
||||||
- Don't remove ant-netrexx (need to find an RPM if we can).
|
|
||||||
|
|
||||||
* Sun Feb 20 2005 Andrew Overholt <overholt@redhat.com> 1:3.1_fc-0.M5.5
|
|
||||||
- Build for just i386 and x86_64 for now due to upstream gcc bugs.
|
|
||||||
|
|
||||||
* Sun Feb 20 2005 Andrew Overholt <overholt@redhat.com> 1:3.1_fc-0.M5.1
|
|
||||||
- New 3.1M5a build using upstream build method.
|
|
||||||
- Re-organize sub-packages (ecj, platform, platform-devel, jdt, jdt-devel, pde,
|
|
||||||
pde-devel, fold gtk2 package into platform).
|
|
||||||
- Move jface and org.eclipse.text into libswt3-gtk2.
|
|
||||||
- Bring in JPackage symlinks for packages we have in Fedora (David Walluck) and
|
|
||||||
put in %%prep.
|
|
||||||
- Work around x86_64 filename differences.
|
|
||||||
- Remove xerces, xalan, and xml-commons-apis requirement (and LD_PRELOAD from
|
|
||||||
script).
|
|
||||||
- Bootstrap build.
|
|
||||||
|
Loading…
Reference in New Issue
Block a user