%global base_name httpcomponents Name: httpcomponents-core Summary: Set of low level Java HTTP transport components for HTTP services Version: 4.2.3 Release: 3%{?dist} Group: Development/Libraries License: ASL 2.0 URL: http://hc.apache.org/ Source0: http://www.apache.org/dist/httpcomponents/httpcore/source/httpcomponents-core-%{version}-src.tar.gz BuildArch: noarch BuildRequires: maven-local BuildRequires: httpcomponents-project BuildRequires: java >= 1:1.6.0 BuildRequires: jpackage-utils BuildRequires: maven-surefire-provider-junit4 BuildRequires: apache-commons-logging BuildRequires: junit %if 0%{?rhel} <= 0 BuildRequires: mockito %endif Requires: java >= 1:1.6.0 Requires: jpackage-utils Requires: apache-commons-logging Requires: junit %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} Group: Documentation Requires: jpackage-utils %description javadoc %{summary}. %prep %setup -q %pom_remove_plugin :maven-clover2-plugin httpcore-nio %pom_remove_plugin :maven-clover2-plugin httpcore %pom_remove_plugin :maven-notice-plugin %pom_remove_plugin :docbkx-maven-plugin # OSGify modules for module in httpcore httpcore-nio; do %pom_xpath_remove "pom:project/pom:packaging" $module %pom_xpath_inject "pom:project" "bundle" $module %pom_xpath_inject "pom:build/pom:plugins" " org.apache.felix maven-bundle-plugin true * " $module done %build mvn-rpmbuild \ %if 0%{?rhel} -Dmaven.test.skip=true \ %endif install javadoc:aggregate %install install -dm 755 %{buildroot}/%{_mavenpomdir} install -dm 755 %{buildroot}/%{_javadir}/%{base_name} for m in httpcore httpcore-nio; do # poms install -pm 644 $m/pom.xml %{buildroot}/%{_mavenpomdir}/JPP.%{base_name}-$m.pom # jars - osgi doesn't have one if [ -f $m/target/$m-%{version}.jar ];then install -m 644 $m/target/$m-%{version}.jar %{buildroot}%{_javadir}/%{base_name}/$m.jar fi %add_maven_depmap JPP.%{base_name}-$m.pom %{base_name}/$m.jar done # parent install -pm 644 pom.xml %{buildroot}/%{_mavenpomdir}/JPP.%{base_name}-%{name}.pom %add_maven_depmap JPP.%{base_name}-%{name}.pom # javadocs install -dm 755 %{buildroot}%{_javadocdir}/%{name} cp -pr target/site/api*/* %{buildroot}%{_javadocdir}/%{name} %files %doc LICENSE.txt NOTICE.txt %doc README.txt RELEASE_NOTES.txt %{_mavendepmapfragdir}/%{name} %{_mavenpomdir}/JPP.%{base_name}*.pom %{_javadir}/%{base_name} %files javadoc %doc LICENSE.txt NOTICE.txt %doc %{_javadocdir}/%{name} %changelog * Mon Feb 25 2013 Mikolaj Izdebski - 4.2.3-3 - Add missing BR: maven-local * Thu Feb 14 2013 Fedora Release Engineering - 4.2.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Mon Dec 3 2012 Mikolaj Izdebski - 4.2.3-1 - Update to upstream version 4.2.3 * Fri Oct 5 2012 Mikolaj Izdebski - 4.2.2-1 - Update to upstream version 4.2.2 * Mon Aug 27 2012 Stanislav Ochotnicky - 4.2.1-3 - Remove mockito from Requires (not needed really) - BR on mockito is now conditional on Fedora * Fri Jul 27 2012 Mikolaj Izdebski - 4.2.1-2 - Install NOTICE.txt file - Fix javadir directory ownership - Preserve timestamps * Mon Jul 23 2012 Mikolaj Izdebski - 4.2.1-1 - Update to upstream version 4.2.1 - Convert patches to POM macros * Thu Jul 19 2012 Fedora Release Engineering - 4.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Fri Mar 23 2012 Krzysztof Daniel 4.1.4-1 - Update to latest upstream (4.1.4) * Fri Jan 13 2012 Fedora Release Engineering - 4.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild * Tue Aug 16 2011 Stanislav Ochotnicky - 4.1.3-1 - Update to latest upstream (4.1.3) * Tue Jul 26 2011 Stanislav Ochotnicky - 4.1.2-1 - Update to latest upstream (4.1.2) * Mon Jul 4 2011 Stanislav Ochotnicky - 4.1.1-2 - Fix forgotten add_to_maven_depmap * Fri Jul 1 2011 Stanislav Ochotnicky - 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) * Tue Mar 15 2011 Severin Gehwolf 4.1-6 - Explicitly set PrivatePackage to the empty set, so as to export all packages. * Fri Mar 11 2011 Alexander Kurtakov 4.1-5 - Bump release to fix my mistake with the release. * Thu Mar 10 2011 Alexander Kurtakov 4.1-3 - Export all packages. * Fri Feb 18 2011 Alexander Kurtakov 4.1-2 - Don't use basename it's part of coreutils. * Fri Feb 18 2011 Alexander Kurtakov 4.1-4 - Install into %{_javadir}/httpcomponents. We will use it for client libs too. - Proper osgi info. * Wed Feb 09 2011 Fedora Release Engineering - 4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Wed Dec 22 2010 Stanislav Ochotnicky - 4.1-2 - Added license to javadoc subpackage * Fri Dec 17 2010 Stanislav Ochotnicky - 4.1-1 - Initial package