2011-02-18 16:02:38 +00:00
|
|
|
%global base_name httpcomponents
|
2011-02-18 11:45:10 +00:00
|
|
|
|
2010-12-23 10:06:05 +00:00
|
|
|
Name: httpcomponents-client
|
|
|
|
Summary: HTTP agent implementation based on httpcomponents HttpCore
|
2012-03-01 11:06:16 +00:00
|
|
|
Version: 4.1.3
|
2012-07-19 13:14:52 +00:00
|
|
|
Release: 4%{?dist}
|
2010-12-23 10:06:05 +00:00
|
|
|
Group: Development/Libraries
|
|
|
|
License: ASL 2.0
|
|
|
|
URL: http://hc.apache.org/
|
|
|
|
Source0: http://www.apache.org/dist/httpcomponents/httpclient/source/httpcomponents-client-%{version}-src.tar.gz
|
|
|
|
# Remove optional build deps not available in Fedora
|
2011-07-15 21:33:46 +00:00
|
|
|
# and add proper Apache felix bundle plugin instructions
|
|
|
|
# so that we get a reasonable OSGi manifest.
|
2012-03-01 11:06:16 +00:00
|
|
|
Patch0: 0001-Remove-few-modules-and-deps.patch
|
|
|
|
Patch1: 0002-Make-httpmime-into-bundle.patch
|
|
|
|
Patch2: 0003-Make-httpclient-into-bundle.patch
|
|
|
|
|
|
|
|
|
2010-12-23 10:06:05 +00:00
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: httpcomponents-project
|
|
|
|
BuildRequires: httpcomponents-core
|
2011-02-25 18:29:58 +00:00
|
|
|
BuildRequires: apache-mime4j
|
2011-04-07 16:08:21 +00:00
|
|
|
BuildRequires: apache-commons-codec
|
2010-12-23 10:06:05 +00:00
|
|
|
|
|
|
|
Requires: java >= 1:1.6.0
|
|
|
|
Requires: jpackage-utils
|
|
|
|
Requires: httpcomponents-core
|
2011-02-25 18:29:58 +00:00
|
|
|
Requires: apache-mime4j
|
2011-04-07 16:08:21 +00:00
|
|
|
Requires: apache-commons-codec
|
2010-12-23 10:06:05 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
HttpClient is a HTTP/1.1 compliant HTTP agent implementation based on
|
|
|
|
httpcomponents HttpCore. It also provides reusable components for
|
|
|
|
client-side authentication, HTTP state management, and HTTP connection
|
|
|
|
management. HttpComponents Client is a successor of and replacement
|
|
|
|
for Commons HttpClient 3.x. Users of Commons HttpClient are strongly
|
|
|
|
encouraged to upgrade.
|
|
|
|
|
|
|
|
%package javadoc
|
|
|
|
Summary: API documentation for %{name}
|
|
|
|
Group: Documentation
|
|
|
|
Requires: jpackage-utils
|
|
|
|
|
|
|
|
%description javadoc
|
2011-02-18 11:45:10 +00:00
|
|
|
API docs for %{name}.
|
2010-12-23 10:06:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2012-03-01 11:06:16 +00:00
|
|
|
%patch0 -p1 -b .sav
|
|
|
|
%patch1 -p1 -b .sav
|
|
|
|
%patch2 -p1 -b .sav
|
2010-12-23 10:06:05 +00:00
|
|
|
|
|
|
|
%build
|
2011-02-25 18:29:58 +00:00
|
|
|
mvn-rpmbuild -Dmaven.test.skip=true install javadoc:aggregate
|
2010-12-23 10:06:05 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
# jars
|
2011-02-25 18:29:58 +00:00
|
|
|
install -D -m 0644 httpclient/target/httpclient-%{version}.jar %{buildroot}%{_javadir}/%{base_name}/httpclient.jar
|
|
|
|
install -D -m 0644 httpmime/target/httpmime-%{version}.jar %{buildroot}%{_javadir}/%{base_name}/httpmime.jar
|
2010-12-23 10:06:05 +00:00
|
|
|
|
2011-02-25 18:29:58 +00:00
|
|
|
# main pom
|
2010-12-23 10:06:05 +00:00
|
|
|
install -D -m 0644 pom.xml \
|
2011-02-25 18:29:58 +00:00
|
|
|
%{buildroot}/%{_mavenpomdir}/JPP.%{base_name}-httpcomponents-client.pom
|
|
|
|
%add_to_maven_depmap org.apache.httpcomponents httpcomponents-client %{version} JPP/%{base_name} httpcomponents-client
|
|
|
|
# pom
|
|
|
|
install -D -m 0644 httpclient/pom.xml \
|
2011-02-18 16:02:38 +00:00
|
|
|
%{buildroot}/%{_mavenpomdir}/JPP.%{base_name}-httpclient.pom
|
2011-08-16 12:44:44 +00:00
|
|
|
%add_maven_depmap JPP.%{base_name}-httpclient.pom %{base_name}/httpclient.jar
|
|
|
|
|
2011-02-25 18:29:58 +00:00
|
|
|
install -D -m 0644 httpmime/pom.xml \
|
|
|
|
%{buildroot}/%{_mavenpomdir}/JPP.%{base_name}-httpmime.pom
|
2011-08-16 12:44:44 +00:00
|
|
|
%add_maven_depmap JPP.%{base_name}-httpmime.pom %{base_name}/httpmime.jar
|
2010-12-23 10:06:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
# javadocs
|
|
|
|
install -dm 755 %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
cp -pr target/site/api*/* %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc README.txt LICENSE.txt RELEASE_NOTES.txt
|
2011-02-18 16:02:38 +00:00
|
|
|
%{_mavendepmapfragdir}/%{name}
|
|
|
|
%{_mavenpomdir}/JPP.%{base_name}*.pom
|
2011-02-18 11:45:10 +00:00
|
|
|
%{_javadir}/%{basename}
|
2010-12-23 10:06:05 +00:00
|
|
|
|
|
|
|
%files javadoc
|
|
|
|
%doc LICENSE.txt
|
2011-08-16 12:44:44 +00:00
|
|
|
%doc %{_javadocdir}/%{name}
|
2010-12-23 10:06:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2012-07-19 13:14:52 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-05-02 18:56:38 +00:00
|
|
|
* Wed May 2 2012 Alexander Kurtakov <akurtako@redhat.com> 4.1.3-3
|
|
|
|
- Do not export org.apache.http.param in osgi.
|
|
|
|
|
2012-03-26 12:13:26 +00:00
|
|
|
* Mon Mar 26 2012 Alexander Kurtakov <akurtako@redhat.com> 4.1.3-2
|
|
|
|
- Do not export * but only org.apache.http.* .
|
|
|
|
- Do not generate uses clauses in the manifest.
|
|
|
|
|
2012-03-01 11:06:16 +00:00
|
|
|
* Thu Mar 1 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> 4.1.3-1
|
|
|
|
- Update to latest upstream bugfix
|
|
|
|
|
2012-01-13 05:01:06 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-08-16 12:44:44 +00:00
|
|
|
* Tue Aug 16 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1.2-1
|
|
|
|
- Update to latest upstream (4.1.2)
|
|
|
|
- Minor tweaks according to guidelines
|
|
|
|
|
2011-07-15 21:33:46 +00:00
|
|
|
* Fri Jul 15 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1.1-3
|
|
|
|
- Fix for RH Bz#718830. Add instructions so as to not
|
|
|
|
Import-Package optional dependencies.
|
|
|
|
|
2011-04-07 16:08:21 +00:00
|
|
|
* Thu Apr 7 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1.1-2
|
|
|
|
- Add BR/R apache-commons-codec, since httpcomponents-client's
|
|
|
|
MANIFEST.MF has an Import-Package: org.apache.commons.codec
|
2011-08-16 12:44:44 +00:00
|
|
|
header.
|
2011-04-07 16:08:21 +00:00
|
|
|
|
2011-03-29 12:08:37 +00:00
|
|
|
* Tue Mar 29 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1.1-1
|
|
|
|
- New upstream bugfix version (4.1.1)
|
|
|
|
|
2011-03-15 14:47:58 +00:00
|
|
|
* Tue Mar 15 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1-6
|
2011-03-15 14:41:59 +00:00
|
|
|
- Explicitly set PrivatePackage to the empty set, so as to
|
|
|
|
export all packages.
|
|
|
|
|
2011-03-10 19:30:17 +00:00
|
|
|
* Thu Mar 10 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-5
|
|
|
|
- OSGi export more packages.
|
|
|
|
|
2011-02-25 18:29:58 +00:00
|
|
|
* Fri Feb 25 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-4
|
|
|
|
- Build httpmime module.
|
|
|
|
|
2011-02-18 16:02:38 +00:00
|
|
|
* Fri Feb 18 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-3
|
|
|
|
- Don't use basename as an identifier.
|
|
|
|
|
2011-02-18 11:45:10 +00:00
|
|
|
* Fri Feb 18 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-2
|
|
|
|
- OSGify properly.
|
|
|
|
- Install into %{_javadir}/%{basename}.
|
|
|
|
|
2011-02-17 20:09:45 +00:00
|
|
|
* Thu Feb 17 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-1
|
|
|
|
- Update to latest upstream version.
|
|
|
|
|
2011-02-09 09:33:15 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-23 10:06:05 +00:00
|
|
|
* Wed Dec 22 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.0.3-2
|
|
|
|
- Added license to javadoc subpackage
|
|
|
|
|
|
|
|
* Mon Dec 20 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.0.3-1
|
|
|
|
- Initial version
|