cf70a2
%bcond_with bootstrap
cf70a2
cf70a2
Name:              httpcomponents-client
cf70a2
Summary:           HTTP agent implementation based on httpcomponents HttpCore
cf70a2
Version:           4.5.13
cf70a2
Release:           5%{?dist}
cf70a2
License:           ASL 2.0
cf70a2
URL:               http://hc.apache.org/
cf70a2
Source0:           https://www.apache.org/dist/httpcomponents/httpclient/source/%{name}-%{version}-src.tar.gz
cf70a2
BuildArch:         noarch
cf70a2
ExclusiveArch:     %{java_arches} noarch
cf70a2
cf70a2
Patch0:            0001-Use-system-copy-of-effective_tld_names.dat.patch
cf70a2
Patch1:            0002-Port-to-mockito-2.patch
cf70a2
cf70a2
%if %{with bootstrap}
cf70a2
BuildRequires:  javapackages-bootstrap-openjdk8
cf70a2
%else
cf70a2
BuildRequires:     maven-local-openjdk8
cf70a2
BuildRequires:     mvn(commons-codec:commons-codec)
cf70a2
BuildRequires:     mvn(commons-logging:commons-logging)
cf70a2
BuildRequires:     mvn(junit:junit)
cf70a2
BuildRequires:     mvn(org.apache.felix:maven-bundle-plugin)
cf70a2
BuildRequires:     mvn(org.apache.httpcomponents:httpcomponents-parent:pom:)
cf70a2
BuildRequires:     mvn(org.apache.httpcomponents:httpcore)
cf70a2
BuildRequires:     mvn(org.codehaus.mojo:build-helper-maven-plugin)
cf70a2
BuildRequires:     mvn(org.mockito:mockito-core)
cf70a2
%endif
cf70a2
cf70a2
%if %{without bootstrap}
cf70a2
BuildRequires:     publicsuffix-list
cf70a2
%endif
cf70a2
Requires:          publicsuffix-list
cf70a2
cf70a2
%description
cf70a2
HttpClient is a HTTP/1.1 compliant HTTP agent implementation based on
cf70a2
httpcomponents HttpCore. It also provides reusable components for
cf70a2
client-side authentication, HTTP state management, and HTTP connection
cf70a2
management. HttpComponents Client is a successor of and replacement
cf70a2
for Commons HttpClient 3.x. Users of Commons HttpClient are strongly
cf70a2
encouraged to upgrade.
cf70a2
cf70a2
%{?javadoc_package}
cf70a2
cf70a2
%prep
cf70a2
%setup -q -n %{name}-%{version}
cf70a2
%patch0 -p1
cf70a2
%patch1 -p1
cf70a2
cf70a2
%mvn_package :::tests: __noinstall
cf70a2
cf70a2
# Change scope of commons-logging to provided
cf70a2
%pom_change_dep :commons-logging :::provided httpclient
cf70a2
cf70a2
# Remove optional build deps not available in Fedora
cf70a2
%pom_disable_module httpclient-osgi
cf70a2
%pom_disable_module httpclient-win
cf70a2
%pom_disable_module fluent-hc
cf70a2
%pom_disable_module httpmime
cf70a2
%pom_disable_module httpclient-cache
cf70a2
%pom_remove_plugin :docbkx-maven-plugin
cf70a2
%pom_remove_plugin :clirr-maven-plugin
cf70a2
%pom_remove_plugin :maven-checkstyle-plugin
cf70a2
%pom_remove_plugin :apache-rat-plugin
cf70a2
%pom_remove_plugin :maven-source-plugin
cf70a2
%pom_remove_plugin :maven-javadoc-plugin
cf70a2
%pom_remove_plugin :animal-sniffer-maven-plugin
cf70a2
cf70a2
# Fails due to strict crypto policy - uses DSA in test data
cf70a2
rm httpclient/src/test/java/org/apache/http/conn/ssl/TestSSLSocketFactory.java
cf70a2
cf70a2
%pom_remove_plugin :download-maven-plugin httpclient
cf70a2
cf70a2
%pom_xpath_inject "pom:archive" "
cf70a2
    <manifestFile>\${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>"
cf70a2
cf70a2
%pom_xpath_inject pom:build/pom:plugins "
cf70a2
    <plugin>
cf70a2
      <groupId>org.apache.felix</groupId>
cf70a2
      <artifactId>maven-bundle-plugin</artifactId>
cf70a2
      <executions>
cf70a2
        <execution>
cf70a2
          <id>bundle-manifest</id>
cf70a2
          <phase>process-classes</phase>
cf70a2
          <goals>
cf70a2
            <goal>manifest</goal>
cf70a2
          </goals>
cf70a2
        </execution>
cf70a2
      </executions>
cf70a2
    </plugin>"
cf70a2
cf70a2
%pom_xpath_inject pom:build "
cf70a2
<pluginManagement>
cf70a2
  <plugins>
cf70a2
    <plugin>
cf70a2
      <groupId>org.apache.felix</groupId>
cf70a2
      <artifactId>maven-bundle-plugin</artifactId>
cf70a2
      <configuration>
cf70a2
        <instructions>
cf70a2
          <Export-Package>org.apache.http.*,!org.apache.http.param</Export-Package>
cf70a2
          <Private-Package></Private-Package>
cf70a2
          <_nouses>true</_nouses>
cf70a2
          <Import-Package>!org.apache.avalon.framework.logger,!org.apache.log,!org.apache.log4j,*</Import-Package>
cf70a2
        </instructions>
cf70a2
        <excludeDependencies>true</excludeDependencies>
cf70a2
      </configuration>
cf70a2
    </plugin>
cf70a2
  </plugins>
cf70a2
</pluginManagement>
cf70a2
" httpclient
cf70a2
cf70a2
# requires network
cf70a2
rm httpclient/src/test/java/org/apache/http/client/config/TestRequestConfig.java
cf70a2
cf70a2
%build
cf70a2
%mvn_file ":{*}" httpcomponents/@1
cf70a2
cf70a2
%mvn_build
cf70a2
cf70a2
%install
cf70a2
%mvn_install
cf70a2
cf70a2
%files -n %{?module_prefix}%{name} -f .mfiles
cf70a2
%license LICENSE.txt NOTICE.txt
cf70a2
%doc README.txt RELEASE_NOTES.txt
cf70a2
cf70a2
%changelog
cf70a2
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.13-5
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
cf70a2
cf70a2
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 4.5.13-4
cf70a2
- Rebuilt for java-17-openjdk as system jdk
cf70a2
cf70a2
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.13-3
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
cf70a2
cf70a2
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.13-2
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
cf70a2
cf70a2
* Wed Jun 23 2021 Marian Koncek <mkoncek@redhat.com> - 4.5.13-1
cf70a2
- Update to upstream version 4.5.13
cf70a2
cf70a2
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.11-3
cf70a2
- Bootstrap build
cf70a2
- Non-bootstrap build
cf70a2
cf70a2
* Wed Feb 17 2021 Fabio Valentini <decathorpe@gmail.com> - 4.5.10-6
cf70a2
- Build with -release 8 for better OpenJDK 8 compatibility.
cf70a2
cf70a2
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.10-5
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
cf70a2
cf70a2
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.10-4
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
cf70a2
cf70a2
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 4.5.10-3
cf70a2
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
cf70a2
cf70a2
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.10-2
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
cf70a2
cf70a2
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.11-2
cf70a2
- Build with OpenJDK 8
cf70a2
cf70a2
* Wed Jan 22 2020 Marian Koncek <mkoncek@redhat.com> - 4.5.11-1
cf70a2
- Update to upstream version 4.5.11
cf70a2
cf70a2
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.10-2
cf70a2
- Mass rebuild for javapackages-tools 201902
cf70a2
cf70a2
* Mon Sep 16 2019 Marian Koncek <mkoncek@redhat.com> - 4.5.10-1
cf70a2
- Update to upstream version 4.5.10
cf70a2
cf70a2
* Mon Sep 16 2019 Marian Koncek <mkoncek@redhat.com> - 4.5.10-1
cf70a2
- Update to upstream version 4.5.10
cf70a2
cf70a2
* Thu Aug 29 2019 Fabio Valentini <decathorpe@gmail.com> - 4.5.7-3
cf70a2
- Disable memcached and ehcache support.
cf70a2
cf70a2
* Mon Jul 29 2019 Marian Koncek <mkoncek@redhat.com> - 4.5.9-1
cf70a2
- Update to upstream version 4.5.9
cf70a2
cf70a2
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.7-2
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
cf70a2
cf70a2
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.8-2
cf70a2
- Mass rebuild for javapackages-tools 201901
cf70a2
cf70a2
* Mon May 13 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.8-1
cf70a2
- Update to upstream version 4.5.8
cf70a2
cf70a2
* Mon Feb 04 2019 Marian Koncek <mkoncek@redhat.com> - 4.5.7-1
cf70a2
- Update to upstream version 4.5.7
cf70a2
- Fixes: RHBZ #1669148
cf70a2
cf70a2
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.6-3
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
cf70a2
cf70a2
* Fri Dec 07 2018 Mat Booth <mat.booth@redhat.com> - 4.5.6-2
cf70a2
- Add a patch to allow building with mockito 2
cf70a2
- Don't package tests jars, the tests jars have the same OSGi metadata as the
cf70a2
  main jars, which can cause tycho to resolve the wrong one when building
cf70a2
  eclipse plugins
cf70a2
cf70a2
* Mon Oct  8 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.6-1
cf70a2
- Update to upstream version 4.5.6
cf70a2
cf70a2
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.5-5
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
cf70a2
cf70a2
* Mon Mar 19 2018 Michael Simacek <msimacek@redhat.com> - 4.5.5-4
cf70a2
- Fix FTBFS (weak crypto in test data)
cf70a2
cf70a2
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.5.5-3
cf70a2
- Escape macros in %%changelog
cf70a2
cf70a2
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.5-2
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
cf70a2
cf70a2
* Mon Jan 22 2018 Michael Simacek <msimacek@redhat.com> - 4.5.5-1
cf70a2
- Update to upstream version 4.5.5
cf70a2
cf70a2
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.3-4
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
cf70a2
cf70a2
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.3-3
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
cf70a2
cf70a2
* Thu Feb 02 2017 Michael Simacek <msimacek@redhat.com> - 4.5.3-2
cf70a2
- Add conditionals for memcached and ehcache
cf70a2
cf70a2
* Thu Jan 26 2017 Michael Simacek <msimacek@redhat.com> - 4.5.3-1
cf70a2
- Update to upstream version 4.5.3
cf70a2
cf70a2
* Fri Jun 24 2016 Michael Simacek <msimacek@redhat.com> - 4.5.2-4
cf70a2
- Fix build with httpcomponents-core-4.4.5
cf70a2
cf70a2
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.2-3
cf70a2
- Add missing build-requires
cf70a2
cf70a2
* Wed Mar 16 2016 Sopot Cela <scela@redhat.com> - 4.5.2-2
cf70a2
- Make the fluent API into a bundle
cf70a2
cf70a2
* Mon Feb 29 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.2-1
cf70a2
- Update to upstream version 4.5.2
cf70a2
cf70a2
* Wed Feb 10 2016 Mat Booth <mat.booth@redhat.com> - 4.5.1-4
cf70a2
- Enable the fluent API module
cf70a2
cf70a2
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.5.1-3
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
cf70a2
cf70a2
* Mon Jan 25 2016 Mat Booth <mat.booth@redhat.com> - 4.5.1-2
cf70a2
- Make client cache jar into a OSGi bundle
cf70a2
cf70a2
* Wed Sep 16 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.5.1-1
cf70a2
- Update to upstream version 4.5.1
cf70a2
cf70a2
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.5-2
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
cf70a2
cf70a2
* Thu Jun 04 2015 Michael Simacek <msimacek@redhat.com> - 4.5-1
cf70a2
- Update to upstream version 4.5
cf70a2
cf70a2
* Tue Mar 31 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.1-1
cf70a2
- Update to upstream version 4.4.1
cf70a2
cf70a2
* Wed Feb 18 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4-1
cf70a2
- Update to upstream version 4.4
cf70a2
cf70a2
* Thu Jan 22 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4-0.3.beta1
cf70a2
- Split httpclient-cache into subpackage
cf70a2
cf70a2
* Tue Jan 20 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4-0.2.beta1
cf70a2
- Unbundle publicsuffix-list
cf70a2
- Resolves: rhbz#1183782
cf70a2
cf70a2
* Mon Jan 19 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4-0.1.beta1
cf70a2
- Update to upstream version 4.4 beta1
cf70a2
- Remove tests subpackage
cf70a2
cf70a2
* Fri Jan  9 2015 Richard Fearn <richardfearn@gmail.com> - 4.3.5-3
cf70a2
- Also build HttpClient Cache (bug #1180696)
cf70a2
cf70a2
* Tue Dec 02 2014 Michael Simacek <msimacek@redhat.com> - 4.3.5-2
cf70a2
- Build and install tests artifact (needed by copr-java)
cf70a2
cf70a2
* Tue Aug  5 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.5-1
cf70a2
- Update to upstream version 4.3.5
cf70a2
cf70a2
* Mon Aug  4 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.4-2
cf70a2
- Fix build-requires on httpcomponents-project
cf70a2
cf70a2
* Fri Jun  6 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.4-1
cf70a2
- Update to upstream version 4.3.4
cf70a2
cf70a2
* Fri Feb 28 2014 Michael Simacek <msimacek@redhat.com> - 4.3.3-1
cf70a2
- Update to upstream version 4.3.3
cf70a2
cf70a2
* Mon Jan 20 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.2-1
cf70a2
- Update to upstream version 4.3.2
cf70a2
cf70a2
* Mon Jan 06 2014 Michael Simacek <msimacek@redhat.com> - 4.3.1-1
cf70a2
- Update to upstream version 4.3.1
cf70a2
- Temporarily disable tests due to bug in mockito
cf70a2
cf70a2
* Thu Oct  3 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3-2
cf70a2
- Don't try to remove maven-notice-plugin from POM
cf70a2
cf70a2
* Fri Sep 13 2013 Michal Srb <msrb@redhat.com> - 4.3-1
cf70a2
- Update to upstream version 4.3
cf70a2
- Drop group tag
cf70a2
cf70a2
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.5-3
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
cf70a2
cf70a2
* Mon Jun 10 2013 Michal Srb <msrb@redhat.com> - 4.2.5-2
cf70a2
- Enable tests on Fedora
cf70a2
cf70a2
* Thu Apr 25 2013 Michal Srb <msrb@redhat.com> - 4.2.5-1
cf70a2
- Update to upstream version 4.2.5
cf70a2
cf70a2
* Thu Apr 11 2013 Michal Srb <msrb@redhat.com> - 4.2.4-1
cf70a2
- Update to upstream version 4.2.4
cf70a2
cf70a2
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 4.2.3-3
cf70a2
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
cf70a2
- Replace maven BuildRequires with maven-local
cf70a2
cf70a2
* Fri Jan 25 2013 Michal Srb <msrb@redhat.com> - 4.2.3-2
cf70a2
- Build with xmvn
cf70a2
- Disable fluent-hc module
cf70a2
cf70a2
* Thu Jan 24 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.3-1
cf70a2
- Update to upstream version 4.2.3
cf70a2
cf70a2
* Thu Oct 25 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.2-1
cf70a2
- Update to upstream version 4.2.2
cf70a2
cf70a2
* Wed Aug  1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.1-3
cf70a2
- Fix OSGi manifest in httpmime
cf70a2
cf70a2
* Fri Jul 27 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.1-2
cf70a2
- Install NOTICE.txt file
cf70a2
- Fix javadir directory ownership
cf70a2
- Fix directory permissions
cf70a2
- Preserve timestamps
cf70a2
- Replace add_to_maven_depmap with add_maven_depmap
cf70a2
cf70a2
* Fri Jul 27 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.1-1
cf70a2
- Update to upstream version 4.2.1
cf70a2
- Convert patches to POM macros
cf70a2
cf70a2
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.3-4
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
cf70a2
cf70a2
* Wed May 2 2012 Alexander Kurtakov <akurtako@redhat.com> 4.1.3-3
cf70a2
- Do not export org.apache.http.param in osgi.
cf70a2
cf70a2
* Mon Mar 26 2012 Alexander Kurtakov <akurtako@redhat.com> 4.1.3-2
cf70a2
- Do not export * but only org.apache.http.* .
cf70a2
- Do not generate uses clauses in the manifest.
cf70a2
cf70a2
* Thu Mar  1 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> 4.1.3-1
cf70a2
- Update to latest upstream bugfix
cf70a2
cf70a2
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.2-2
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
cf70a2
cf70a2
* Tue Aug 16 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1.2-1
cf70a2
- Update to latest upstream (4.1.2)
cf70a2
- Minor tweaks according to guidelines
cf70a2
cf70a2
* Fri Jul 15 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1.1-3
cf70a2
- Fix for RH Bz#718830. Add instructions so as to not
cf70a2
  Import-Package optional dependencies.
cf70a2
cf70a2
* Thu Apr 7 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1.1-2
cf70a2
- Add BR/R apache-commons-codec, since httpcomponents-client's
cf70a2
  MANIFEST.MF has an Import-Package: org.apache.commons.codec
cf70a2
  header.
cf70a2
cf70a2
* Tue Mar 29 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1.1-1
cf70a2
- New upstream bugfix version (4.1.1)
cf70a2
cf70a2
* Tue Mar 15 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1-6
cf70a2
- Explicitly set PrivatePackage to the empty set, so as to
cf70a2
  export all packages.
cf70a2
cf70a2
* Thu Mar 10 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-5
cf70a2
- OSGi export more packages.
cf70a2
cf70a2
* Fri Feb 25 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-4
cf70a2
- Build httpmime module.
cf70a2
cf70a2
* Fri Feb 18 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-3
cf70a2
- Don't use basename as an identifier.
cf70a2
cf70a2
* Fri Feb 18 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-2
cf70a2
- OSGify properly.
cf70a2
- Install into %%{_javadir}/%%{basename}.
cf70a2
cf70a2
* Thu Feb 17 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-1
cf70a2
- Update to latest upstream version.
cf70a2
cf70a2
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.3-3
cf70a2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
cf70a2
cf70a2
* Wed Dec 22 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.0.3-2
cf70a2
- Added license to javadoc subpackage
cf70a2
cf70a2
* Mon Dec 20 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.0.3-1
cf70a2
- Initial version