2011-02-18 15:55:57 +00:00
|
|
|
%global base_name httpcomponents
|
2011-02-18 08:52:06 +00:00
|
|
|
|
2010-12-23 10:05:58 +00:00
|
|
|
Name: httpcomponents-core
|
|
|
|
Summary: Set of low level Java HTTP transport components for HTTP services
|
2014-05-12 05:13:15 +00:00
|
|
|
Version: 4.3.2
|
2014-06-07 20:30:58 +00:00
|
|
|
Release: 3%{?dist}
|
2013-06-10 12:47:07 +00:00
|
|
|
# The project is licensed under ASL 2.0, but it contains annotations
|
|
|
|
# in the package org.apache.http.annotation which are derived
|
|
|
|
# from JCIP-ANNOTATIONS project (CC-BY licensed)
|
|
|
|
License: ASL 2.0 and CC-BY
|
2010-12-23 10:05:58 +00:00
|
|
|
URL: http://hc.apache.org/
|
|
|
|
Source0: http://www.apache.org/dist/httpcomponents/httpcore/source/httpcomponents-core-%{version}-src.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
|
2013-02-25 16:07:31 +00:00
|
|
|
BuildRequires: maven-local
|
2010-12-23 10:05:58 +00:00
|
|
|
BuildRequires: httpcomponents-project
|
|
|
|
BuildRequires: java >= 1:1.6.0
|
|
|
|
BuildRequires: jpackage-utils
|
2012-07-23 10:49:12 +00:00
|
|
|
BuildRequires: apache-commons-logging
|
|
|
|
BuildRequires: junit
|
2013-09-09 06:53:37 +00:00
|
|
|
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
|
|
|
|
%if 0%{?fedora}
|
2012-07-23 10:49:12 +00:00
|
|
|
BuildRequires: mockito
|
2012-08-27 15:09:25 +00:00
|
|
|
%endif
|
2010-12-23 10:05:58 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
HttpCore is a set of low level HTTP transport components that can be
|
|
|
|
used to build custom client and server side HTTP services with a
|
|
|
|
minimal footprint. HttpCore supports two I/O models: blocking I/O
|
|
|
|
model based on the classic Java I/O and non-blocking, event driven I/O
|
|
|
|
model based on Java NIO.
|
|
|
|
|
|
|
|
The blocking I/O model may be more appropriate for data intensive, low
|
|
|
|
latency scenarios, whereas the non-blocking model may be more
|
|
|
|
appropriate for high latency scenarios where raw data throughput is
|
|
|
|
less important than the ability to handle thousands of simultaneous
|
|
|
|
HTTP connections in a resource efficient manner.
|
|
|
|
|
|
|
|
%package javadoc
|
|
|
|
Summary: API documentation for %{name}
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
%{summary}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2012-07-17 11:44:16 +00:00
|
|
|
|
2013-09-09 06:53:37 +00:00
|
|
|
%pom_remove_plugin :maven-checkstyle-plugin
|
2012-07-17 11:44:16 +00:00
|
|
|
|
2013-03-25 11:39:28 +00:00
|
|
|
# we don't need these artifacts right now
|
|
|
|
%pom_disable_module httpcore-osgi
|
|
|
|
%pom_disable_module httpcore-ab
|
|
|
|
|
2012-07-17 11:44:16 +00:00
|
|
|
# OSGify modules
|
|
|
|
for module in httpcore httpcore-nio; do
|
|
|
|
%pom_xpath_remove "pom:project/pom:packaging" $module
|
|
|
|
%pom_xpath_inject "pom:project" "<packaging>bundle</packaging>" $module
|
|
|
|
%pom_xpath_inject "pom:build/pom:plugins" "
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Export-Package>*</Export-Package>
|
2013-05-17 09:05:30 +00:00
|
|
|
<Private-Package></Private-Package>
|
|
|
|
<_nouses>true</_nouses>
|
2012-07-17 11:44:16 +00:00
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>" $module
|
|
|
|
done
|
2010-12-23 10:05:58 +00:00
|
|
|
|
2013-03-25 11:39:28 +00:00
|
|
|
# install JARs to httpcomponents/ for compatibility reasons
|
|
|
|
# several other packages expect to find the JARs there
|
|
|
|
%mvn_file ":{*}" httpcomponents/@1
|
|
|
|
|
2010-12-23 10:05:58 +00:00
|
|
|
%build
|
2013-09-09 06:53:37 +00:00
|
|
|
%mvn_build %{!?fedora -f}
|
2010-12-23 10:05:58 +00:00
|
|
|
|
2013-03-25 11:39:28 +00:00
|
|
|
%install
|
|
|
|
%mvn_install
|
2010-12-23 10:05:58 +00:00
|
|
|
|
2013-03-25 11:39:28 +00:00
|
|
|
%files -f .mfiles
|
|
|
|
%dir %{_javadir}/httpcomponents
|
2013-09-09 06:53:37 +00:00
|
|
|
%doc LICENSE.txt NOTICE.txt README.txt RELEASE_NOTES.txt
|
2010-12-23 10:05:58 +00:00
|
|
|
|
2013-03-25 11:39:28 +00:00
|
|
|
%files javadoc -f .mfiles-javadoc
|
2012-07-27 11:05:37 +00:00
|
|
|
%doc LICENSE.txt NOTICE.txt
|
2010-12-23 10:05:58 +00:00
|
|
|
|
|
|
|
%changelog
|
2014-06-07 20:30:58 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-26 06:16:18 +00:00
|
|
|
* Mon May 26 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.2-2
|
|
|
|
- Remove BuildRequires on maven-surefire-provider-junit4
|
|
|
|
|
2014-05-12 05:13:15 +00:00
|
|
|
* Mon May 12 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.2-1
|
|
|
|
- Update to upstream version 4.3.2
|
|
|
|
|
2013-09-09 06:53:37 +00:00
|
|
|
* Tue Sep 03 2013 Michal Srb <msrb@redhat.com> - 4.3-1
|
|
|
|
- Update to upstream version 4.3
|
|
|
|
|
2013-08-03 18:00:35 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.4-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-06-10 12:47:07 +00:00
|
|
|
* Mon Jun 10 2013 Michal Srb <msrb@redhat.com> - 4.2.4-4
|
|
|
|
- Fix license tag (CC-BY added)
|
|
|
|
|
2013-05-17 09:05:30 +00:00
|
|
|
* Fri May 17 2013 Alexander Kurtakov <akurtako@redhat.com> 4.2.4-3
|
|
|
|
- Fix bundle plugin configuration to produce sane manifest.
|
|
|
|
- Do not duplicate javadoc files list.
|
|
|
|
|
2013-03-25 11:39:28 +00:00
|
|
|
* Mon Mar 25 2013 Michal Srb <msrb@redhat.com> - 4.2.4-2
|
|
|
|
- Build with xmvn
|
|
|
|
|
2013-03-25 08:48:07 +00:00
|
|
|
* Mon Mar 25 2013 Michal Srb <msrb@redhat.com> - 4.2.4-1
|
|
|
|
- Update to upstream version 4.2.4
|
|
|
|
|
2013-02-25 16:07:31 +00:00
|
|
|
* Mon Feb 25 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.3-3
|
|
|
|
- Add missing BR: maven-local
|
|
|
|
|
2013-02-14 01:16:32 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-03 15:25:57 +00:00
|
|
|
* Mon Dec 3 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.3-1
|
|
|
|
- Update to upstream version 4.2.3
|
|
|
|
|
2012-10-05 00:56:15 +00:00
|
|
|
* Fri Oct 5 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.2-1
|
|
|
|
- Update to upstream version 4.2.2
|
|
|
|
|
2012-08-27 15:09:25 +00:00
|
|
|
* Mon Aug 27 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.2.1-3
|
|
|
|
- Remove mockito from Requires (not needed really)
|
|
|
|
- BR on mockito is now conditional on Fedora
|
|
|
|
|
2012-07-27 11:05:37 +00:00
|
|
|
* Fri Jul 27 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.1-2
|
|
|
|
- Install NOTICE.txt file
|
|
|
|
- Fix javadir directory ownership
|
|
|
|
- Preserve timestamps
|
|
|
|
|
2012-07-23 10:49:12 +00:00
|
|
|
* Mon Jul 23 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.1-1
|
|
|
|
- Update to upstream version 4.2.1
|
|
|
|
- Convert patches to POM macros
|
|
|
|
|
2012-07-19 13:15:29 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-03-23 13:27:46 +00:00
|
|
|
* Fri Mar 23 2012 Krzysztof Daniel <kdaniel@redhat.com> 4.1.4-1
|
|
|
|
- Update to latest upstream (4.1.4)
|
|
|
|
|
2012-01-13 05:01:20 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-08-16 12:04:19 +00:00
|
|
|
* Tue Aug 16 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1.3-1
|
|
|
|
- Update to latest upstream (4.1.3)
|
|
|
|
|
2011-07-26 17:21:29 +00:00
|
|
|
* Tue Jul 26 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1.2-1
|
|
|
|
- Update to latest upstream (4.1.2)
|
|
|
|
|
2011-07-04 12:56:36 +00:00
|
|
|
* Mon Jul 4 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1.1-2
|
|
|
|
- Fix forgotten add_to_maven_depmap
|
|
|
|
|
2011-07-01 11:18:03 +00:00
|
|
|
* Fri Jul 1 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1.1-1
|
|
|
|
- Update to latest upstream (4.1.1)
|
|
|
|
- Use new maven macros
|
|
|
|
- Tweaks according to new guidelines
|
|
|
|
- Enable tests again (seem to work OK even in koji now)
|
|
|
|
|
2011-03-15 14:31:03 +00:00
|
|
|
* Tue Mar 15 2011 Severin Gehwolf <sgehwolf@redhat.com> 4.1-6
|
|
|
|
- Explicitly set PrivatePackage to the empty set, so as to
|
|
|
|
export all packages.
|
|
|
|
|
2011-03-11 19:02:55 +00:00
|
|
|
* Fri Mar 11 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-5
|
|
|
|
- Bump release to fix my mistake with the release.
|
|
|
|
|
2011-03-10 19:21:04 +00:00
|
|
|
* Thu Mar 10 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-3
|
|
|
|
- Export all packages.
|
|
|
|
|
2011-02-18 15:55:57 +00:00
|
|
|
* Fri Feb 18 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-2
|
2011-07-01 11:18:03 +00:00
|
|
|
- Don't use basename it's part of coreutils.
|
2011-02-18 15:55:57 +00:00
|
|
|
|
2011-02-18 08:52:06 +00:00
|
|
|
* Fri Feb 18 2011 Alexander Kurtakov <akurtako@redhat.com> 4.1-4
|
|
|
|
- Install into %{_javadir}/httpcomponents. We will use it for client libs too.
|
|
|
|
- Proper osgi info.
|
|
|
|
|
2011-02-09 09:33:47 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-23 10:05:58 +00:00
|
|
|
* Wed Dec 22 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1-2
|
|
|
|
- Added license to javadoc subpackage
|
|
|
|
|
|
|
|
* Fri Dec 17 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 4.1-1
|
|
|
|
- Initial package
|