387cfa68cf
export all packages.
120 lines
3.7 KiB
RPMSpec
120 lines
3.7 KiB
RPMSpec
%global base_name httpcomponents
|
|
|
|
Name: httpcomponents-client
|
|
Summary: HTTP agent implementation based on httpcomponents HttpCore
|
|
Version: 4.1
|
|
Release: 5%{?dist}
|
|
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
|
|
Patch0: 0001-Cleanup-pom.patch
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: httpcomponents-project
|
|
BuildRequires: httpcomponents-core
|
|
BuildRequires: apache-mime4j
|
|
|
|
Requires: java >= 1:1.6.0
|
|
Requires: jpackage-utils
|
|
Requires: httpcomponents-core
|
|
Requires: apache-mime4j
|
|
|
|
Requires(post): jpackage-utils
|
|
Requires(postun): jpackage-utils
|
|
|
|
%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
|
|
API docs for %{name}.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -b .sav
|
|
|
|
%build
|
|
mvn-rpmbuild -Dmaven.test.skip=true install javadoc:aggregate
|
|
|
|
%install
|
|
# jars
|
|
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
|
|
|
|
# main pom
|
|
install -D -m 0644 pom.xml \
|
|
%{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 \
|
|
%{buildroot}/%{_mavenpomdir}/JPP.%{base_name}-httpclient.pom
|
|
%add_to_maven_depmap org.apache.httpcomponents httpclient %{version} JPP/%{base_name} httpclient
|
|
install -D -m 0644 httpmime/pom.xml \
|
|
%{buildroot}/%{_mavenpomdir}/JPP.%{base_name}-httpmime.pom
|
|
%add_to_maven_depmap org.apache.httpcomponents httpmime %{version} JPP/%{base_name} httpmime
|
|
|
|
|
|
# javadocs
|
|
install -dm 755 %{buildroot}%{_javadocdir}/%{name}
|
|
cp -pr target/site/api*/* %{buildroot}%{_javadocdir}/%{name}
|
|
|
|
|
|
%post
|
|
%update_maven_depmap
|
|
|
|
%postun
|
|
%update_maven_depmap
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc README.txt LICENSE.txt RELEASE_NOTES.txt
|
|
%{_mavendepmapfragdir}/%{name}
|
|
%{_mavenpomdir}/JPP.%{base_name}*.pom
|
|
%{_javadir}/%{basename}
|
|
|
|
%files javadoc
|
|
%defattr(-,root,root,-)
|
|
%doc LICENSE.txt
|
|
%doc %{_javadocdir}/*
|
|
|
|
|
|
%changelog
|
|
* Tue Mar 15 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1-5
|
|
- Explicitly set PrivatePackage to the empty set, so as to
|
|
export all packages.
|
|
|
|
* Fri Feb 25 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-4
|
|
- Build httpmime module.
|
|
|
|
* Fri Feb 18 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-3
|
|
- Don't use basename as an identifier.
|
|
|
|
* Fri Feb 18 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-2
|
|
- OSGify properly.
|
|
- Install into %{_javadir}/%{basename}.
|
|
|
|
* Thu Feb 17 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-1
|
|
- Update to latest upstream version.
|
|
|
|
* 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
|
|
|
|
* 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
|