Compare commits
No commits in common. "c8-stream-3.6" and "c9s" have entirely different histories.
c8-stream-
...
c9s
25
.gitignore
vendored
25
.gitignore
vendored
@ -1 +1,24 @@
|
||||
SOURCES/httpcomponents-core-4.4.12-src.tar.gz
|
||||
/httpcomponents-core-4.1-src.tar.gz
|
||||
/httpcomponents-core-4.1.1-src.tar.gz
|
||||
/httpcomponents-core-4.1.2-src.tar.gz
|
||||
/httpcomponents-core-4.1.3-src.tar.gz
|
||||
httpcomponents-core-4.1.4-src.tar.gz
|
||||
/httpcomponents-core-4.2.1-src.tar.gz
|
||||
/httpcomponents-core-4.2.3-src.tar.gz
|
||||
/httpcomponents-core-4.2.4-src.tar.gz
|
||||
/httpcomponents-core-4.3-src.tar.gz
|
||||
/httpcomponents-core-4.3.2-src.tar.gz
|
||||
/httpcomponents-core-4.4-src.tar.gz
|
||||
/httpcomponents-core-4.4.1-src.tar.gz
|
||||
/httpcomponents-core-4.4.2-src.tar.gz
|
||||
/httpcomponents-core-4.4.3-src.tar.gz
|
||||
/httpcomponents-core-4.4.4-src.tar.gz
|
||||
/httpcomponents-core-4.4.5-src.tar.gz
|
||||
/httpcomponents-core-4.4.6-src.tar.gz
|
||||
/httpcomponents-core-4.4.7-src.tar.gz
|
||||
/httpcomponents-core-4.4.8-src.tar.gz
|
||||
/httpcomponents-core-4.4.9-src.tar.gz
|
||||
/httpcomponents-core-4.4.10-src.tar.gz
|
||||
/httpcomponents-core-4.4.11-src.tar.gz
|
||||
/httpcomponents-core-4.4.12-src.tar.gz
|
||||
/httpcomponents-core-4.4.13-src.tar.gz
|
||||
|
@ -1 +0,0 @@
|
||||
c29457872eabc280f17f66d51cd76a6e079d7308 SOURCES/httpcomponents-core-4.4.12-src.tar.gz
|
8
gating.yaml
Normal file
8
gating.yaml
Normal file
@ -0,0 +1,8 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
decision_contexts:
|
||||
- osci_compose_gate
|
||||
rules:
|
||||
# https://docs.engineering.redhat.com/display/RHELPLAN/Maven+Bootstrap+manual+gating+test
|
||||
- !PassingTestCaseRule {test_case_name: manual.sst_cs_apps.maven.bootstrap}
|
@ -1,21 +1,27 @@
|
||||
%bcond_with bootstrap
|
||||
|
||||
Name: httpcomponents-core
|
||||
Summary: Set of low level Java HTTP transport components for HTTP services
|
||||
Version: 4.4.12
|
||||
Release: 3%{?dist}
|
||||
Version: 4.4.13
|
||||
Release: 9%{?dist}
|
||||
License: ASL 2.0
|
||||
URL: http://hc.apache.org/
|
||||
Source0: http://www.apache.org/dist/httpcomponents/httpcore/source/httpcomponents-core-%{version}-src.tar.gz
|
||||
Source0: https://www.apache.org/dist/httpcomponents/httpcore/source/httpcomponents-core-%{version}-src.tar.gz
|
||||
Patch0: 0001-Port-to-mockito-2.patch
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: maven-local-openjdk8
|
||||
%if %{with bootstrap}
|
||||
BuildRequires: javapackages-bootstrap
|
||||
%else
|
||||
BuildRequires: mvn(commons-logging:commons-logging)
|
||||
BuildRequires: mvn(junit:junit)
|
||||
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
||||
BuildRequires: mvn(org.apache.httpcomponents:httpcomponents-parent:pom:)
|
||||
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
|
||||
BuildRequires: mvn(org.mockito:mockito-core)
|
||||
%endif
|
||||
|
||||
%description
|
||||
HttpCore is a set of low level HTTP transport components that can be
|
||||
@ -30,12 +36,11 @@ 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.
|
||||
|
||||
%{?module_package}
|
||||
%{?javadoc_package}
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
%patch -P 0 -p1
|
||||
|
||||
# Random test failures on ARM -- 100 ms sleep is not eneough on this
|
||||
# very performant arch, lets make it 2 s
|
||||
@ -46,6 +51,10 @@ sed -i '/Thread.sleep/s/100/2000/' httpcore-nio/src/test/java/org/apache/http/ni
|
||||
%pom_remove_plugin :maven-source-plugin
|
||||
%pom_remove_plugin :maven-javadoc-plugin
|
||||
|
||||
# We don't have conscrypt for testing
|
||||
%pom_remove_dep :conscrypt-openjdk-uber httpcore-nio
|
||||
rm httpcore-nio/src/test/java/org/apache/http/nio/integration/TestJSSEProviderIntegration.java
|
||||
|
||||
# we don't need these artifacts right now
|
||||
%pom_disable_module httpcore-osgi
|
||||
%pom_disable_module httpcore-ab
|
||||
@ -81,14 +90,52 @@ done
|
||||
%install
|
||||
%mvn_install
|
||||
|
||||
%files -n %{?module_prefix}%{name} -f .mfiles
|
||||
%files -f .mfiles
|
||||
%license LICENSE.txt NOTICE.txt
|
||||
%doc README.txt RELEASE_NOTES.txt
|
||||
|
||||
%changelog
|
||||
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.12-3
|
||||
* Thu Nov 21 2024 Marián Konček <mkoncek@redhat.com> - 4.4.13-9
|
||||
- Fix patch usage
|
||||
|
||||
* Wed Nov 20 2024 Marián Konček <mkoncek@redhat.com> - 4.4.13-8
|
||||
- Rebuild with regenerated Requires on Java
|
||||
|
||||
* Mon Jan 30 2023 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.13-7
|
||||
- Rebuild to regenerate auto-requires
|
||||
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 4.4.13-6
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Wed Jun 09 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.13-5
|
||||
- Rebuild to workaround DistroBaker issue
|
||||
|
||||
* Tue Jun 08 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.13-4
|
||||
- Bootstrap Maven for CentOS Stream 9
|
||||
|
||||
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.13-3
|
||||
- Bootstrap build
|
||||
- Non-bootstrap build
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.12-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.12-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 4.4.12-3
|
||||
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.13-2
|
||||
- Build with OpenJDK 8
|
||||
|
||||
* Wed Jan 22 2020 Marian Koncek <mkoncek@redhat.com> - 4.4.13-1
|
||||
- Update to upstream version 4.4.13
|
||||
|
||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.12-2
|
||||
- Mass rebuild for javapackages-tools 201902
|
||||
|
Loading…
Reference in New Issue
Block a user