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