781dac
%global cvs_version 2_12_0
781dac
781dac
%define __requires_exclude system.bundle
781dac
781dac
Name:          xerces-j2
781dac
Version:       2.12.0
781dac
Release:       4%{?dist}
781dac
Summary:       Java XML parser
781dac
# Most of the source is ASL 2.0
781dac
# W3C licensed files:
781dac
# src/org/apache/xerces/dom3/as
781dac
# src/org/w3c/dom/html/HTMLDOMImplementation.java
781dac
License:       ASL 2.0 and W3C
781dac
URL:           http://xerces.apache.org/xerces2-j/
781dac
781dac
Source0:       http://mirror.ox.ac.uk/sites/rsync.apache.org/xerces/j/source/Xerces-J-src.%{version}.tar.gz
781dac
Source1:       %{name}-version.sh
781dac
Source2:       %{name}-constants.sh
781dac
Source11:      %{name}-version.1
781dac
Source12:      %{name}-constants.1
781dac
781dac
# Custom javac ant task used by the build
781dac
Source3:       https://svn.apache.org/repos/asf/xerces/java/tags/Xerces-J_%{cvs_version}/tools/src/XJavac.java
781dac
781dac
Source7:       %{name}-pom.xml
781dac
781dac
# Patch the build so that it doesn't try to use bundled xml-commons source
781dac
Patch0:        %{name}-build.patch
781dac
781dac
# Patch the manifest so that it includes OSGi stuff
781dac
Patch1:        %{name}-manifest.patch
781dac
781dac
# Fix FTBFS with Java10 due to missing method getContentDocument
781dac
Patch2:        https://sources.debian.org/data/main/libx/libxerces2-java/2.12.0-1/debian/patches/getContentDocument.patch
781dac
781dac
BuildArch:     noarch
781dac
781dac
BuildRequires: javapackages-local
781dac
BuildRequires: ant
781dac
BuildRequires: apache-parent
781dac
BuildRequires: xalan-j2 >= 2.7.1
781dac
BuildRequires: xml-commons-apis >= 1.4.01
781dac
BuildRequires: xml-commons-resolver >= 1.2
781dac
781dac
Requires:      xalan-j2 >= 2.7.1
781dac
Requires:      xml-commons-apis >= 1.4.01
781dac
Requires:      xml-commons-resolver >= 1.2
781dac
# Explicit javapackages-tools requires since scripts use
781dac
# /usr/share/java-utils/java-functions
781dac
Requires:      javapackages-tools
781dac
781dac
Provides:      jaxp_parser_impl = 1.4
781dac
Provides:      %{name}-scripts = %{version}-%{release}
781dac
781dac
781dac
# This documentation is provided by xml-commons-apis
781dac
781dac
# http://mail-archives.apache.org/mod_mbox/xerces-j-dev/201008.mbox/%3COF8D7E2F83.0271A181-ON8525777F.00528302-8525777F.0054BBE0@ca.ibm.com%3E
781dac
781dac
%description
781dac
Welcome to the future! Xerces2 is the next generation of high performance,
781dac
fully compliant XML parsers in the Apache Xerces family. This new version of
781dac
Xerces introduces the Xerces Native Interface (XNI), a complete framework for
781dac
building parser components and configurations that is extremely modular and
781dac
easy to program.
781dac
781dac
The Apache Xerces2 parser is the reference implementation of XNI but other
781dac
parser components, configurations, and parsers can be written using the Xerces
781dac
Native Interface. For complete design and implementation documents, refer to
781dac
the XNI Manual.
781dac
781dac
Xerces2 is a fully conforming XML Schema processor. For more information,
781dac
refer to the XML Schema page.
781dac
781dac
Xerces2 also provides a complete implementation of the Document Object Model
781dac
Level 3 Core and Load/Save W3C Recommendations and provides a complete
781dac
implementation of the XML Inclusions (XInclude) W3C Recommendation. It also
781dac
provides support for OASIS XML Catalogs v1.1.
781dac
781dac
Xerces2 is able to parse documents written according to the XML 1.1
781dac
Recommendation, except that it does not yet provide an option to enable
781dac
normalization checking as described in section 2.13 of this specification. It
781dac
also handles name spaces according to the XML Namespaces 1.1 Recommendation,
781dac
and will correctly serialize XML 1.1 documents if the DOM level 3 load/save
781dac
APIs are in use.
781dac
781dac
%package        demo
781dac
Summary:        Demonstrations and samples for %{name}
781dac
Requires:       %{name} = %{version}-%{release}
781dac
781dac
%description    demo
781dac
%{summary}.
781dac
781dac
%prep
781dac
%setup -q -n xerces-%{cvs_version}
781dac
%patch0 -p0 -b .orig
781dac
%patch1 -p0 -b .orig
781dac
%patch2 -p1
781dac
781dac
# Copy the custom ant tasks into place
781dac
mkdir -p tools/org/apache/xerces/util
781dac
mkdir -p tools/bin
781dac
cp -a %{SOURCE3} tools/org/apache/xerces/util
781dac
781dac
# Make sure upstream hasn't sneaked in any jars we don't know about
781dac
find -name '*.class' -exec rm -f '{}' \;
781dac
find -name '*.jar' -exec rm -f '{}' \;
781dac
781dac
sed -i 's/\r//' LICENSE README NOTICE
781dac
781dac
# legacy aliases for compatability
781dac
%mvn_alias : xerces:xerces xerces:xmlParserAPIs apache:xerces-j2
781dac
%mvn_file : %{name} jaxp_parser_impl
781dac
781dac
%build
781dac
pushd tools
781dac
781dac
# Build custom ant tasks
781dac
javac -classpath $(build-classpath ant) org/apache/xerces/util/XJavac.java
781dac
jar cf bin/xjavac.jar org/apache/xerces/util/XJavac.class
781dac
781dac
ln -sf $(build-classpath xalan-j2-serializer) serializer.jar
781dac
ln -sf $(build-classpath xml-commons-apis) xml-apis.jar
781dac
ln -sf $(build-classpath xml-commons-resolver) resolver.jar
781dac
ln -sf $(build-classpath xerces-j2) x.jar
781dac
popd
781dac
781dac
# Build everything
781dac
export ANT_OPTS="-Xmx256m -Djava.awt.headless=true -Dbuild.sysclasspath=first -Ddisconnected=true"
781dac
ant -Djavac.source=1.6 -Djavac.target=1.6 \
781dac
    -Dbuild.compiler=modern \
781dac
    clean jars
781dac
781dac
%mvn_artifact %{SOURCE7} build/xercesImpl.jar
781dac
781dac
%install
781dac
%mvn_install
781dac
781dac
# scripts
781dac
install -pD -m755 -T %{SOURCE1} %{buildroot}%{_bindir}/%{name}-version
781dac
install -pD -m755 -T %{SOURCE2} %{buildroot}%{_bindir}/%{name}-constants
781dac
781dac
# manual pages
781dac
install -d -m 755 %{buildroot}%{_mandir}/man1
781dac
install -p -m 644 %{SOURCE11} %{buildroot}%{_mandir}/man1
781dac
install -p -m 644 %{SOURCE12} %{buildroot}%{_mandir}/man1
781dac
781dac
# demo
781dac
install -pD -T build/xercesSamples.jar %{buildroot}%{_datadir}/%{name}/%{name}-samples.jar
781dac
cp -pr data %{buildroot}%{_datadir}/%{name}
781dac
781dac
%post
781dac
# alternatives suppoort removed in f26
781dac
update-alternatives --remove jaxp_parser_impl %{_javadir}/%{name}.jar >/dev/null 2>&1 || :
781dac
# it deletes the link, set it up again
781dac
ln -sf %{name}.jar %{_javadir}/jaxp_parser_impl.jar
781dac
781dac
%files -f .mfiles
781dac
%doc LICENSE NOTICE README
781dac
%{_bindir}/*
781dac
%{_mandir}/*/*
781dac
781dac
%files demo
781dac
%{_datadir}/%{name}
781dac
781dac
%changelog
781dac
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.12.0-4
781dac
- Mass rebuild for javapackages-tools 201902
781dac
781dac
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.12.0-3
781dac
- Mass rebuild for javapackages-tools 201901
781dac
781dac
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.12.0-2
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
781dac
781dac
* Mon Nov 19 2018 Marian Koncek <mkoncek@redhat.com> - 2.12.0-1
781dac
- Update to upstream version 2.12.0
781dac
781dac
* Fri Aug 03 2018 Michael Simacek <msimacek@redhat.com> - 2.11.0-34
781dac
- Fix license tag to include W3C
781dac
781dac
* Wed Aug 01 2018 Severin Gehwolf <sgehwolf@redhat.com> - 2.11.0-33
781dac
- Add requirement on javapackages-tools since scripts use
781dac
  java-functions.
781dac
781dac
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.0-32
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
781dac
781dac
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.0-31
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
781dac
781dac
* Sat Sep 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.11.0-30
781dac
- Remove unneeded dependency on dejavu-sans-fonts
781dac
781dac
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.0-29
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
781dac
781dac
* Wed Mar 08 2017 Michael Simacek <msimacek@redhat.com> - 2.11.0-28
781dac
- Fix missing jaxp_parser_impl symlink after upgrade
781dac
781dac
* Thu Feb 23 2017 Michael Simacek <msimacek@redhat.com> - 2.11.0-27
781dac
- Remove alternatives, there is no other provider
781dac
- Specfile cleanup
781dac
781dac
* Thu Feb 23 2017 Michael Simacek <msimacek@redhat.com> - 2.11.0-26
781dac
- Install with XMvn
781dac
781dac
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.0-25
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
781dac
781dac
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.0-24
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
781dac
781dac
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.0-23
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
781dac
781dac
* Wed Sep 10 2014 Mat Booth <mat.booth@redhat.com> - 2.11.0-22
781dac
- Add patch for CVE-2013-4002, rhbz #1140031
781dac
- Fix ownership of javadoc directory
781dac
781dac
* Mon Aug 11 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.11.0-21
781dac
- Workaround regression in %%add_maven_depmap -a parameter handling
781dac
781dac
* Mon Aug 11 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.11.0-20
781dac
- Add alias for apache:xerces-j2
781dac
781dac
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.0-19
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
781dac
781dac
* Thu May 29 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.11.0-18
781dac
- Use .mfiles generated during build
781dac
781dac
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.11.0-17
781dac
- Use Requires: java-headless rebuild (#1067528)
781dac
781dac
* Tue Aug 6 2013 Krzysztof Daniel <kdaniel@redhat.com> 2.11.0-16
781dac
- Fix FTBFS.
781dac
781dac
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.0-15
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
781dac
781dac
* Mon May 20 2013 Krzysztof Daniel <kdaniel@redhat.com> 2.11.0-13
781dac
- Add reexoport to javax.xml.
781dac
781dac
* Mon Apr  8 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.11.0-13
781dac
- Add manual pages
781dac
781dac
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.0-12
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
781dac
781dac
* Mon Dec 17 2012 Alexander Kurtakov <akurtako@redhat.com> 2.11.0-11
781dac
- Really restore dependencies.
781dac
781dac
* Tue Dec 11 2012 Krzysztof Daniel <kdaniel@redhat.com> 2.11.0-10
781dac
- Restored dependencies to system.bundle and javax.xml.
781dac
781dac
* Tue Sep 25 2012 Krzysztof Daniel <kdaniel@redhat.com> 2.11.0-9
781dac
- Remove javax.xml from required bundles. They are provided by JVM.
781dac
781dac
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.0-8
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
781dac
781dac
* Wed Apr 18 2012 Krzysztof Daniel <kdaniel@redhat.com> 2.11.0-7
781dac
- Updated OSGi MANIFEST.MF to import javax.xml
781dac
781dac
* Thu Mar 08 2012 Andrew Overholt <overholt@redhat.com> - 2.11.0-6
781dac
- Remove system.bundle OSGi requirement from MANIFEST.MF
781dac
- Fold -scripts sub-package into main
781dac
781dac
* Tue Mar 06 2012 Marek Goldmann <mgoldman@redhat.com> - 2.11.0-5
781dac
- Use non-versioned jar name, RHBZ#800463
781dac
- Cleanup in spec file to follow new guidelines
781dac
- Consolidated javadocs packages
781dac
- Removed manual subpackage because of stylebook issues, see comment on obsolete
781dac
781dac
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.0-4
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
781dac
781dac
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11.0-3
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
781dac
781dac
* Mon Dec 13 2010 Mat Booth <fedora@matbooth.co.uk> 2.11.0-2
781dac
- Install maven pom and depmap.
781dac
781dac
* Sat Dec 11 2010 Mat Booth <fedora@matbooth.co.uk> - 2.11.0-1
781dac
- Update to latest upstream version.
781dac
- Provide JAXP 1.4.
781dac
- Fix some minor rpmlint warnings.
781dac
- Add dep on xalan-j2.
781dac
- Fix javadoc taglets.
781dac
781dac
* Sat Jun 12 2010 Mat Booth <fedora@matbooth.co.uk> - 2.9.0-4
781dac
- Fix broken links in manual and fix javadoc requires.
781dac
- Build 1.5 bytecode instead of 1.6, for compatibility.
781dac
781dac
* Fri Jan 22 2010 Andrew Overholt <overholt@redhat.com> - 2.9.0-3
781dac
- Fix unversioned Provides for jaxp_parser_impl (make it 1.3).
781dac
781dac
* Thu Jan 14 2010 Mat Booth <fedora@matbooth.co.uk> - 2.9.0-2
781dac
- Add a build dep on a font package because the JDK is missing a dependency
781dac
  to function correctly in headless mode. See RHBZ #478480 and #521523.
781dac
- Fix groups.
781dac
781dac
* Tue Jan 5 2010 Mat Booth <fedora@matbooth.co.uk> - 2.9.0-1
781dac
- Update to 2.9.0: This is the version Eclipse expects, previously the OSGi
781dac
  manifest was lying about its version :-o
781dac
- Enable manual sub-package now xml-stylebook is in Fedora.
781dac
- Drop GCJ support.
781dac
- Minor changes to spec to make it more conforming to the guidelines.
781dac
- Drop the libgcj patch, we don't seem to need it anymore.
781dac
- Add the OSGi manifest as part of the build instead of the install.
781dac
- Fix packaging bug RHBZ #472646.
781dac
781dac
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.1-12.3
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
781dac
781dac
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.1-11.3
781dac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
781dac
781dac
* Fri Jan 30 2009 Alexander Kurtakov <akurtako@redhat.com> 0:2.7.1-10.3
781dac
- Add osgi manifest.
781dac
781dac
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0:2.7.1-10.2
781dac
- drop repotag
781dac
- fix license tag
781dac
781dac
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0:2.7.1-10jpp.1
781dac
- Autorebuild for GCC 4.3
781dac
781dac
* Wed Mar 28 2007 Matt Wringe <mwringe@redhat.com> 0:2.7.1-9jpp.1
781dac
- Update with newest jpp version
781dac
- Clean up spec file for Fedora Review
781dac
781dac
* Sun Aug 13 2006 Warren Togami <wtogami@redhat.com> 0:2.7.1-7jpp.2
781dac
- fix typo in preun req
781dac
781dac
* Sat Aug 12 2006 Matt Wringe <mwringe at redhat.com> 0:2.7.1-7jpp.1
781dac
- Merge with upstream version
781dac
781dac
* Sat Aug 12 2006 Matt Wringe <mwringe at redhat.com> 0:2.7.1-7jpp
781dac
- Add conditional native compiling
781dac
- Add missing requires for javadocs
781dac
- Add missing requires for post and preun
781dac
- Update version to 7jpp at Fedora's request
781dac
781dac
* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> - 0:2.7.1-6jpp_9fc
781dac
- Rebuilt
781dac
781dac
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0:2.7.1-6jpp_8fc
781dac
- rebuild
781dac
781dac
* Thu Mar 30 2006 Fernando Nasser <fnasser@redhat.com> 0:2.7.1-3jpp
781dac
- Add missing BR for xml-stylebook
781dac
781dac
* Wed Mar 22 2006 Ralph Apel <r.apel at r-apel.de> 0:2.7.1-2jpp
781dac
- First JPP-1.7 release
781dac
- use tools subdir and give it as java.endorsed.dirs (for java-1.4.2-bea e.g.)
781dac
781dac
* Mon Mar  6 2006 Jeremy Katz <katzj@redhat.com> - 0:2.7.1-6jpp_7fc
781dac
- stop scriptlet spew
781dac
781dac
* Wed Feb 22 2006 Rafael Schloming <rafaels@redhat.com> - 0:2.7.1-6jpp_6fc
781dac
- Updated to 2.7.1
781dac
781dac
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0:2.6.2-6jpp_5fc
781dac
- bump again for double-long bug on ppc(64)
781dac
781dac
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0:2.6.2-6jpp_4fc
781dac
- rebuilt for new gcc4.1 snapshot and glibc changes
781dac
781dac
* Thu Feb  2 2006 Archit Shah <ashah@redhat.com> 0:2.6.2-6jpp_3fc
781dac
- build xerces without using native code
781dac
781dac
* Mon Jan  9 2006 Archit Shah <ashah@redhat.com> 0:2.6.2-6jpp_2fc
781dac
- rebuilt for new gcj
781dac
781dac
* Wed Dec 21 2005 Jesse Keating <jkeating@redhat.com> 0:2.6.2-6jpp_1fc
781dac
- rebuilt for new gcj
781dac
781dac
* Tue Dec 13 2005 Jesse Keating <jkeating@redhat.com>
781dac
- rebuilt for new gcj
781dac
781dac
* Fri Oct 07 2005 Ralph Apel <r.apel at r-apel.de> 0:2.7.1-1jpp
781dac
- Upgrade to 2.7.1
781dac
781dac
* Thu Jul 21 2005 Ralph Apel <r.apel at r-apel.de> 0:2.6.2-7jpp
781dac
- Include target jars-dom3
781dac
- Create new subpackage dom3
781dac
781dac
* Mon Jul 18 2005 Gary Benson <gbenson at redhat.com> 0:2.6.2-5jpp_2fc
781dac
- Build on ia64, ppc64, s390 and s390x.
781dac
- Switch to aot-compile-rpm (also BC-compiles samples).
781dac
781dac
* Wed Jul 13 2005 Gary Benson <gbenson at redhat.com> 0:2.6.2-6jpp
781dac
- Build with Sun JDK (from <gareth.armstrong at hp.com>).
781dac
781dac
* Wed Jun 15 2005 Gary Benson <gbenson at redhat.com> 0:2.6.2-5jpp_1fc
781dac
- Upgrade to 2.6.2-5jpp.
781dac
781dac
* Tue Jun 14 2005 Gary Benson <gbenson at redhat.com> 0:2.6.2-5jpp
781dac
- Remove the tools tarball, and build xjavac from source.
781dac
- Patch xjavac to fix the classpath under libgcj too.
781dac
781dac
* Fri Jun 10 2005 Gary Benson <gbenson@redhat.com> 0:2.6.2-4jpp_8fc
781dac
- Remove the tools tarball, and build xjavac from source.
781dac
- Replace classpath workaround to xjavac task and use
781dac
  xml-commons classes again (#152255).
781dac
781dac
* Thu May 26 2005 Gary Benson <gbenson@redhat.com> 0:2.6.2-4jpp_7fc
781dac
- Rearrange how BC-compiled stuff is built and installed.
781dac
781dac
* Mon May 23 2005 Gary Benson <gbenson@redhat.com> 0:2.6.2-4jpp_6fc
781dac
- Add alpha to the list of build architectures (#157522).
781dac
- Use absolute paths for rebuild-gcj-db.
781dac
781dac
* Thu May  5 2005 Gary Benson <gbenson@redhat.com> 0:2.6.2-4jpp_5fc
781dac
- Add dependencies for %%post and %%postun scriptlets (#156901).
781dac
781dac
* Fri Apr 29 2005 Gary Benson <gbenson@redhat.com> 0:2.6.2-4jpp_4fc
781dac
- BC-compile.
781dac
781dac
* Thu Apr 28 2005 Gary Benson <gbenson@redhat.com> 0:2.6.2-4jpp_3fc
781dac
- Revert xjavac classpath workaround, and patch to use libgcj's
781dac
  classes instead of those in xml-commons (#152255).
781dac
781dac
* Thu Apr 21 2005 Gary Benson <gbenson@redhat.com> 0:2.6.2-4jpp_2fc
781dac
- Add classpath workaround to xjavac task (#152255).
781dac
781dac
* Wed Jan 12 2005 Gary Benson <gbenson@redhat.com> 0:2.6.2-4jpp_1fc
781dac
- Reenable building of classes that require javax.swing (#130006).
781dac
- Sync with RHAPS.
781dac
781dac
* Mon Nov 15 2004 Fernando Nasser <fnasser@redhat.com>  0:2.6.2-4jpp_1rh
781dac
- Merge with upstream for 2.6.2 upgrade
781dac
781dac
* Thu Nov  4 2004 Gary Benson <gbenson@redhat.com> 0:2.6.2-2jpp_5fc
781dac
- Build into Fedora.
781dac
781dac
* Thu Oct 28 2004 Gary Benson <gbenson@redhat.com> 0:2.6.2-2jpp_4fc
781dac
- Bootstrap into Fedora.
781dac
781dac
* Fri Oct 1 2004 Andrew Overholt <overholt@redhat.com> 0:2.6.2-2jpp_4rh
781dac
- add coreutils BuildRequires
781dac
781dac
* Thu Sep 30 2004 Andrew Overholt <overholt@redhat.com> 0:2.6.2-2jpp_3rh
781dac
- Remove xml-commons-resolver as a Requires
781dac
781dac
* Thu Aug 26 2004 Ralph Apel <r.apel at r-apel.de> 0:2.6.2-4jpp
781dac
- Build with ant-1.6.2
781dac
- Dropped jikes requirement, built for 1.4.2
781dac
781dac
* Wed Jun 23 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:2.6.2-3jpp
781dac
- Updated Patch #0 to fix breakage using BEA 1.4.2 SDK, new patch
781dac
  from <mwringe@redhat.com> and <vivekl@redhat.com>.
781dac
781dac
* Mon Jun 21 2004 Vivek Lakshmanan <vivekl@redhat.com> 0:2.6.2-2jpp_2rh
781dac
- Added new Source1 URL and added new %%setup to expand it under the
781dac
  expanded result of Source0.
781dac
- Updated Patch0 to fix version discrepancies.
781dac
- Added build requirement for xml-commons-apis
781dac
 
781dac
* Mon Jun 14 2004 Matt Wringe <mwringe@redhat.com> 0:2.6.2-2jpp_1rh
781dac
- Update to 2.6.2
781dac
- made patch names comformant
781dac
781dac
* Mon Mar 29 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:2.6.2-2jpp
781dac
- Rebuilt with jikes 1.18 for java 1.3.1_11
781dac
781dac
* Fri Mar 26 2004 Frank Ch. Eigler <fche@redhat.com> 0:2.6.1-1jpp_2rh
781dac
- add RHUG upgrade cleanup
781dac
781dac
* Tue Mar 23 2004 Kaj J. Niemi <kajtzu@fi.basen.net> 0:2.6.2-1jpp
781dac
- 2.6.2
781dac
781dac
* Thu Mar 11 2004 Frank Ch. Eigler <fche@redhat.com> 0:2.6.1-1jpp_1rh
781dac
- RH vacuuming
781dac
- remove jikes dependency
781dac
- add nonjikes-cast.patch