From 55636b23dc077361c4aad3eda95d9f8295a95a03 Mon Sep 17 00:00:00 2001 From: James Antill Date: Mon, 20 Feb 2023 01:59:02 -0500 Subject: [PATCH] Import rpm: 9879fd8575057bb4b33c1fd3e53e4d06b4bb7330 --- .gitignore | 1 + ...stem-copy-of-effective_tld_names.dat.patch | 31 ++ 0002-Port-to-mockito-2.patch | 104 +++++ ...ng-of-malformed-authority-component-.patch | 126 ++++++ gating.yaml | 8 + httpcomponents-client.spec | 374 ++++++++++++++++++ sources | 1 + 7 files changed, 645 insertions(+) create mode 100644 .gitignore create mode 100644 0001-Use-system-copy-of-effective_tld_names.dat.patch create mode 100644 0002-Port-to-mockito-2.patch create mode 100644 0003-Incorrect-handling-of-malformed-authority-component-.patch create mode 100644 gating.yaml create mode 100644 httpcomponents-client.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f2c833d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/httpcomponents-client-4.5.10-src.tar.gz diff --git a/0001-Use-system-copy-of-effective_tld_names.dat.patch b/0001-Use-system-copy-of-effective_tld_names.dat.patch new file mode 100644 index 0000000..aa8d09f --- /dev/null +++ b/0001-Use-system-copy-of-effective_tld_names.dat.patch @@ -0,0 +1,31 @@ +From e1c756ba18432e60600c57370076761bf4774ee7 Mon Sep 17 00:00:00 2001 +From: Mikolaj Izdebski +Date: Tue, 20 Jan 2015 16:04:31 +0100 +Subject: [PATCH 1/3] Use system copy of effective_tld_names.dat + +--- + .../apache/http/conn/util/PublicSuffixMatcherLoader.java | 7 +++---- + 1 file changed, 3 insertions(+), 4 deletions(-) + +diff --git a/httpclient/src/main/java/org/apache/http/conn/util/PublicSuffixMatcherLoader.java b/httpclient/src/main/java/org/apache/http/conn/util/PublicSuffixMatcherLoader.java +index 3d762c188..c7b5a7eb1 100644 +--- a/httpclient/src/main/java/org/apache/http/conn/util/PublicSuffixMatcherLoader.java ++++ b/httpclient/src/main/java/org/apache/http/conn/util/PublicSuffixMatcherLoader.java +@@ -82,11 +82,10 @@ public final class PublicSuffixMatcherLoader { + if (DEFAULT_INSTANCE == null) { + synchronized (PublicSuffixMatcherLoader.class) { + if (DEFAULT_INSTANCE == null){ +- final URL url = PublicSuffixMatcherLoader.class.getResource( +- "/mozilla/public-suffix-list.txt"); +- if (url != null) { ++ final File file = new File("/usr/share/publicsuffix/effective_tld_names.dat"); ++ if (file.exists()) { + try { +- DEFAULT_INSTANCE = load(url); ++ DEFAULT_INSTANCE = load(file); + } catch (final IOException ex) { + // Should never happen + final Log log = LogFactory.getLog(PublicSuffixMatcherLoader.class); +-- +2.31.1 + diff --git a/0002-Port-to-mockito-2.patch b/0002-Port-to-mockito-2.patch new file mode 100644 index 0000000..9b8eb05 --- /dev/null +++ b/0002-Port-to-mockito-2.patch @@ -0,0 +1,104 @@ +From e089dcee616e2fd37897e1a95492f581d1f6c939 Mon Sep 17 00:00:00 2001 +From: Mat Booth +Date: Fri, 7 Dec 2018 18:01:27 +0000 +Subject: [PATCH 2/3] Port to mockito 2 + +Gets it building, but disables tests that are caused by change in +behaviour of mockito that I didn't know how to fix +--- + .../http/impl/client/integration/TestAbortHandling.java | 1 + + .../http/impl/client/integration/TestSPNegoScheme.java | 2 ++ + .../org/apache/http/impl/execchain/TestMainClientExec.java | 3 ++- + .../apache/http/impl/execchain/TestMinimalClientExec.java | 1 + + .../org/apache/http/impl/execchain/TestRedirectExec.java | 5 ++--- + 5 files changed, 8 insertions(+), 4 deletions(-) + +diff --git a/httpclient/src/test/java/org/apache/http/impl/client/integration/TestAbortHandling.java b/httpclient/src/test/java/org/apache/http/impl/client/integration/TestAbortHandling.java +index 67f058ded..4a8cd1ab0 100644 +--- a/httpclient/src/test/java/org/apache/http/impl/client/integration/TestAbortHandling.java ++++ b/httpclient/src/test/java/org/apache/http/impl/client/integration/TestAbortHandling.java +@@ -288,6 +288,7 @@ public class TestAbortHandling extends LocalServerTestBase { + * properly released back to the connection manager. + */ + @Test ++ @org.junit.Ignore + public void testSocketConnectFailureReleasesConnection() throws Exception { + final HttpClientConnection conn = Mockito.mock(HttpClientConnection.class); + final ConnectionRequest connrequest = Mockito.mock(ConnectionRequest.class); +diff --git a/httpclient/src/test/java/org/apache/http/impl/client/integration/TestSPNegoScheme.java b/httpclient/src/test/java/org/apache/http/impl/client/integration/TestSPNegoScheme.java +index f6380313e..31799cbc1 100644 +--- a/httpclient/src/test/java/org/apache/http/impl/client/integration/TestSPNegoScheme.java ++++ b/httpclient/src/test/java/org/apache/http/impl/client/integration/TestSPNegoScheme.java +@@ -150,6 +150,7 @@ public class TestSPNegoScheme extends LocalServerTestBase { + * the server still keep asking for a valid ticket. + */ + @Test ++ @org.junit.Ignore + public void testDontTryToAuthenticateEndlessly() throws Exception { + this.serverBootstrap.registerHandler("*", new PleaseNegotiateService()); + final HttpHost target = start(); +@@ -180,6 +181,7 @@ public class TestSPNegoScheme extends LocalServerTestBase { + * if no token is generated. Client should be able to deal with this response. + */ + @Test ++ @org.junit.Ignore + public void testNoTokenGeneratedError() throws Exception { + this.serverBootstrap.registerHandler("*", new PleaseNegotiateService()); + final HttpHost target = start(); +diff --git a/httpclient/src/test/java/org/apache/http/impl/execchain/TestMainClientExec.java b/httpclient/src/test/java/org/apache/http/impl/execchain/TestMainClientExec.java +index 7de9921e2..07b6bfccc 100644 +--- a/httpclient/src/test/java/org/apache/http/impl/execchain/TestMainClientExec.java ++++ b/httpclient/src/test/java/org/apache/http/impl/execchain/TestMainClientExec.java +@@ -402,6 +402,7 @@ public class TestMainClientExec { + } + + @Test(expected=RequestAbortedException.class) ++ @org.junit.Ignore + public void testExecConnectionRequestFailed() throws Exception { + final HttpRoute route = new HttpRoute(target); + final HttpClientContext context = new HttpClientContext(); +@@ -808,4 +809,4 @@ public class TestMainClientExec { + mainClientExec.establishRoute(authState, managedConn, route, request, context); + } + +-} +\ No newline at end of file ++} +diff --git a/httpclient/src/test/java/org/apache/http/impl/execchain/TestMinimalClientExec.java b/httpclient/src/test/java/org/apache/http/impl/execchain/TestMinimalClientExec.java +index 9a96ba686..41eb0236f 100644 +--- a/httpclient/src/test/java/org/apache/http/impl/execchain/TestMinimalClientExec.java ++++ b/httpclient/src/test/java/org/apache/http/impl/execchain/TestMinimalClientExec.java +@@ -256,6 +256,7 @@ public class TestMinimalClientExec { + } + + @Test(expected=RequestAbortedException.class) ++ @org.junit.Ignore + public void testExecConnectionRequestFailed() throws Exception { + final HttpRoute route = new HttpRoute(target); + final HttpClientContext context = new HttpClientContext(); +diff --git a/httpclient/src/test/java/org/apache/http/impl/execchain/TestRedirectExec.java b/httpclient/src/test/java/org/apache/http/impl/execchain/TestRedirectExec.java +index a5d0591da..78b1af440 100644 +--- a/httpclient/src/test/java/org/apache/http/impl/execchain/TestRedirectExec.java ++++ b/httpclient/src/test/java/org/apache/http/impl/execchain/TestRedirectExec.java +@@ -349,7 +349,7 @@ public class TestRedirectExec { + } + } + +- static class HttpRequestWrapperMatcher extends ArgumentMatcher { ++ static class HttpRequestWrapperMatcher implements ArgumentMatcher { + + private final HttpRequest original; + +@@ -358,8 +358,7 @@ public class TestRedirectExec { + this.original = original; + } + @Override +- public boolean matches(final Object obj) { +- final HttpRequestWrapper wrapper = (HttpRequestWrapper) obj; ++ public boolean matches(final HttpRequestWrapper wrapper) { + return original == wrapper.getOriginal(); + } + +-- +2.31.1 + diff --git a/0003-Incorrect-handling-of-malformed-authority-component-.patch b/0003-Incorrect-handling-of-malformed-authority-component-.patch new file mode 100644 index 0000000..b4dd426 --- /dev/null +++ b/0003-Incorrect-handling-of-malformed-authority-component-.patch @@ -0,0 +1,126 @@ +From 0ac5caeaed1fa0354e02e0609f2c726b1b72eb8c Mon Sep 17 00:00:00 2001 +From: Oleg Kalnichevski +Date: Tue, 29 Sep 2020 09:37:38 +0200 +Subject: [PATCH 3/3] Incorrect handling of malformed authority component by + URIUtils#extractHost + +--- + .../apache/http/client/utils/URIUtils.java | 69 ++++++++----------- + .../http/client/utils/TestURIUtils.java | 6 +- + 2 files changed, 32 insertions(+), 43 deletions(-) + +diff --git a/httpclient/src/main/java/org/apache/http/client/utils/URIUtils.java b/httpclient/src/main/java/org/apache/http/client/utils/URIUtils.java +index 8eb7667e3..aa3431f6f 100644 +--- a/httpclient/src/main/java/org/apache/http/client/utils/URIUtils.java ++++ b/httpclient/src/main/java/org/apache/http/client/utils/URIUtils.java +@@ -419,56 +419,43 @@ public class URIUtils { + if (uri == null) { + return null; + } +- HttpHost target = null; + if (uri.isAbsolute()) { +- int port = uri.getPort(); // may be overridden later +- String host = uri.getHost(); +- if (host == null) { // normal parse failed; let's do it ourselves ++ if (uri.getHost() == null) { // normal parse failed; let's do it ourselves + // authority does not seem to care about the valid character-set for host names +- host = uri.getAuthority(); +- if (host != null) { ++ if (uri.getAuthority() != null) { ++ String content = uri.getAuthority(); + // Strip off any leading user credentials +- final int at = host.indexOf('@'); +- if (at >= 0) { +- if (host.length() > at+1 ) { +- host = host.substring(at+1); +- } else { +- host = null; // @ on its own +- } ++ int at = content.indexOf('@'); ++ if (at != -1) { ++ content = content.substring(at + 1); + } +- // Extract the port suffix, if present +- if (host != null) { +- final int colon = host.indexOf(':'); +- if (colon >= 0) { +- final int pos = colon + 1; +- int len = 0; +- for (int i = pos; i < host.length(); i++) { +- if (Character.isDigit(host.charAt(i))) { +- len++; +- } else { +- break; +- } +- } +- if (len > 0) { +- try { +- port = Integer.parseInt(host.substring(pos, pos + len)); +- } catch (final NumberFormatException ex) { +- } +- } +- host = host.substring(0, colon); ++ final String scheme = uri.getScheme(); ++ final String hostname; ++ final int port; ++ at = content.indexOf(":"); ++ if (at != -1) { ++ hostname = content.substring(0, at); ++ try { ++ final String portText = content.substring(at + 1); ++ port = !TextUtils.isEmpty(portText) ? Integer.parseInt(portText) : -1; ++ } catch (final NumberFormatException ex) { ++ return null; + } ++ } else { ++ hostname = content; ++ port = -1; ++ } ++ try { ++ return new HttpHost(hostname, port, scheme); ++ } catch (final IllegalArgumentException ex) { ++ return null; + } + } +- } +- final String scheme = uri.getScheme(); +- if (!TextUtils.isBlank(host)) { +- try { +- target = new HttpHost(host, port, scheme); +- } catch (final IllegalArgumentException ignore) { +- } ++ } else { ++ return new HttpHost(uri.getHost(), uri.getPort(), uri.getScheme()); + } + } +- return target; ++ return null; + } + + /** +diff --git a/httpclient/src/test/java/org/apache/http/client/utils/TestURIUtils.java b/httpclient/src/test/java/org/apache/http/client/utils/TestURIUtils.java +index 189966635..98a44bc1c 100644 +--- a/httpclient/src/test/java/org/apache/http/client/utils/TestURIUtils.java ++++ b/httpclient/src/test/java/org/apache/http/client/utils/TestURIUtils.java +@@ -273,14 +273,16 @@ public class TestURIUtils { + + Assert.assertEquals(new HttpHost("localhost",8080), + URIUtils.extractHost(new URI("http://localhost:8080/;sessionid=stuff/abcd"))); +- Assert.assertEquals(new HttpHost("localhost",8080), ++ Assert.assertEquals(null, + URIUtils.extractHost(new URI("http://localhost:8080;sessionid=stuff/abcd"))); +- Assert.assertEquals(new HttpHost("localhost",-1), ++ Assert.assertEquals(null, + URIUtils.extractHost(new URI("http://localhost:;sessionid=stuff/abcd"))); + Assert.assertEquals(null, + URIUtils.extractHost(new URI("http://:80/robots.txt"))); + Assert.assertEquals(null, + URIUtils.extractHost(new URI("http://some%20domain:80/robots.txt"))); ++ Assert.assertEquals(null, ++ URIUtils.extractHost(new URI("http://blah@goggle.com:80@google.com/"))); + } + + @Test +-- +2.31.1 + diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..d6b7694 --- /dev/null +++ b/gating.yaml @@ -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} diff --git a/httpcomponents-client.spec b/httpcomponents-client.spec new file mode 100644 index 0000000..10c7cee --- /dev/null +++ b/httpcomponents-client.spec @@ -0,0 +1,374 @@ +Name: httpcomponents-client +Summary: HTTP agent implementation based on httpcomponents HttpCore +Version: 4.5.10 +Release: 4%{?dist} +License: ASL 2.0 +URL: http://hc.apache.org/ +Source0: http://www.apache.org/dist/httpcomponents/httpclient/source/%{name}-%{version}-src.tar.gz +BuildArch: noarch + +Patch0: 0001-Use-system-copy-of-effective_tld_names.dat.patch +Patch1: 0002-Port-to-mockito-2.patch +Patch2: 0003-Incorrect-handling-of-malformed-authority-component-.patch + +BuildRequires: maven-local-openjdk8 +BuildRequires: %{?module_prefix}mvn(commons-codec:commons-codec) +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: %{?module_prefix}mvn(org.apache.httpcomponents:httpcore) +BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin) +BuildRequires: mvn(org.mockito:mockito-core) + +%if 0%{?module_prefix:1} +%package -n %{module_prefix}%{name} +Summary: %{summary} +%endif + +BuildRequires: publicsuffix-list +Requires: publicsuffix-list + +%if 0%{?module_prefix:1} +%description -n %{module_prefix}%{name} +%{summary}. +%endif + +%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. + +%{?javadoc_package} + +%prep +%setup -q -n %{name}-%{version} +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 + +%mvn_package :::tests: __noinstall + +# Change scope of commons-logging to provided +%pom_change_dep :commons-logging :::provided httpclient + +# Remove optional build deps not available in Fedora +%pom_disable_module httpclient-osgi +%pom_disable_module httpclient-win +%pom_disable_module fluent-hc +%pom_disable_module httpmime +%pom_disable_module httpclient-cache +%pom_remove_plugin :docbkx-maven-plugin +%pom_remove_plugin :clirr-maven-plugin +%pom_remove_plugin :maven-checkstyle-plugin +%pom_remove_plugin :apache-rat-plugin +%pom_remove_plugin :maven-source-plugin +%pom_remove_plugin :maven-javadoc-plugin +%pom_remove_plugin :animal-sniffer-maven-plugin + +# Fails due to strict crypto policy - uses DSA in test data +rm httpclient/src/test/java/org/apache/http/conn/ssl/TestSSLSocketFactory.java + +%pom_remove_plugin :download-maven-plugin httpclient + +%pom_xpath_inject "pom:archive" " + \${project.build.outputDirectory}/META-INF/MANIFEST.MF" + +%pom_xpath_inject pom:build/pom:plugins " + + org.apache.felix + maven-bundle-plugin + + + bundle-manifest + process-classes + + manifest + + + + " + +%pom_xpath_inject pom:build " + + + + org.apache.felix + maven-bundle-plugin + + + org.apache.http.*,!org.apache.http.param + + <_nouses>true + !org.apache.avalon.framework.logger,!org.apache.log,!org.apache.log4j,* + + true + + + + +" httpclient + +# requires network +rm httpclient/src/test/java/org/apache/http/client/config/TestRequestConfig.java + +%build +%mvn_file ":{*}" httpcomponents/@1 + +%mvn_build + +%install +%mvn_install + +%files -n %{?module_prefix}%{name} -f .mfiles +%license LICENSE.txt NOTICE.txt +%doc README.txt RELEASE_NOTES.txt + +%changelog +* Sat Sep 25 2021 Mikolaj Izdebski - 4.5.10-4 +- Fix incorrect handling of malformed authority component in request URIs +- Resolves: CVE-2020-13956 + +* Sat Jan 25 2020 Mikolaj Izdebski - 4.5.10-3 +- Build with OpenJDK 8 + +* Tue Nov 05 2019 Mikolaj Izdebski - 4.5.10-2 +- Mass rebuild for javapackages-tools 201902 + +* Mon Sep 16 2019 Marian Koncek - 4.5.10-1 +- Update to upstream version 4.5.10 + +* Mon Jul 29 2019 Marian Koncek - 4.5.9-1 +- Update to upstream version 4.5.9 + +* Fri May 24 2019 Mikolaj Izdebski - 4.5.8-2 +- Mass rebuild for javapackages-tools 201901 + +* Mon May 13 2019 Mikolaj Izdebski - 4.5.8-1 +- Update to upstream version 4.5.8 + +* Mon Feb 04 2019 Marian Koncek - 4.5.7-1 +- Update to upstream version 4.5.7 +- Fixes: RHBZ #1669148 + +* Fri Feb 01 2019 Fedora Release Engineering - 4.5.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Dec 07 2018 Mat Booth - 4.5.6-2 +- Add a patch to allow building with mockito 2 +- Don't package tests jars, the tests jars have the same OSGi metadata as the + main jars, which can cause tycho to resolve the wrong one when building + eclipse plugins + +* Mon Oct 8 2018 Mikolaj Izdebski - 4.5.6-1 +- Update to upstream version 4.5.6 + +* Fri Jul 13 2018 Fedora Release Engineering - 4.5.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Mon Mar 19 2018 Michael Simacek - 4.5.5-4 +- Fix FTBFS (weak crypto in test data) + +* Fri Feb 09 2018 Igor Gnatenko - 4.5.5-3 +- Escape macros in %%changelog + +* Wed Feb 07 2018 Fedora Release Engineering - 4.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Jan 22 2018 Michael Simacek - 4.5.5-1 +- Update to upstream version 4.5.5 + +* Wed Jul 26 2017 Fedora Release Engineering - 4.5.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 4.5.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Feb 02 2017 Michael Simacek - 4.5.3-2 +- Add conditionals for memcached and ehcache + +* Thu Jan 26 2017 Michael Simacek - 4.5.3-1 +- Update to upstream version 4.5.3 + +* Fri Jun 24 2016 Michael Simacek - 4.5.2-4 +- Fix build with httpcomponents-core-4.4.5 + +* Wed Jun 15 2016 Mikolaj Izdebski - 4.5.2-3 +- Add missing build-requires + +* Wed Mar 16 2016 Sopot Cela - 4.5.2-2 +- Make the fluent API into a bundle + +* Mon Feb 29 2016 Mikolaj Izdebski - 4.5.2-1 +- Update to upstream version 4.5.2 + +* Wed Feb 10 2016 Mat Booth - 4.5.1-4 +- Enable the fluent API module + +* Wed Feb 03 2016 Fedora Release Engineering - 4.5.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Jan 25 2016 Mat Booth - 4.5.1-2 +- Make client cache jar into a OSGi bundle + +* Wed Sep 16 2015 Mikolaj Izdebski - 4.5.1-1 +- Update to upstream version 4.5.1 + +* Wed Jun 17 2015 Fedora Release Engineering - 4.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Thu Jun 04 2015 Michael Simacek - 4.5-1 +- Update to upstream version 4.5 + +* Tue Mar 31 2015 Mikolaj Izdebski - 4.4.1-1 +- Update to upstream version 4.4.1 + +* Wed Feb 18 2015 Mikolaj Izdebski - 4.4-1 +- Update to upstream version 4.4 + +* Thu Jan 22 2015 Mikolaj Izdebski - 4.4-0.3.beta1 +- Split httpclient-cache into subpackage + +* Tue Jan 20 2015 Mikolaj Izdebski - 4.4-0.2.beta1 +- Unbundle publicsuffix-list +- Resolves: rhbz#1183782 + +* Mon Jan 19 2015 Mikolaj Izdebski - 4.4-0.1.beta1 +- Update to upstream version 4.4 beta1 +- Remove tests subpackage + +* Fri Jan 9 2015 Richard Fearn - 4.3.5-3 +- Also build HttpClient Cache (bug #1180696) + +* Tue Dec 02 2014 Michael Simacek - 4.3.5-2 +- Build and install tests artifact (needed by copr-java) + +* Tue Aug 5 2014 Mikolaj Izdebski - 4.3.5-1 +- Update to upstream version 4.3.5 + +* Mon Aug 4 2014 Mikolaj Izdebski - 4.3.4-2 +- Fix build-requires on httpcomponents-project + +* Fri Jun 6 2014 Mikolaj Izdebski - 4.3.4-1 +- Update to upstream version 4.3.4 + +* Fri Feb 28 2014 Michael Simacek - 4.3.3-1 +- Update to upstream version 4.3.3 + +* Mon Jan 20 2014 Mikolaj Izdebski - 4.3.2-1 +- Update to upstream version 4.3.2 + +* Mon Jan 06 2014 Michael Simacek - 4.3.1-1 +- Update to upstream version 4.3.1 +- Temporarily disable tests due to bug in mockito + +* Thu Oct 3 2013 Mikolaj Izdebski - 4.3-2 +- Don't try to remove maven-notice-plugin from POM + +* Fri Sep 13 2013 Michal Srb - 4.3-1 +- Update to upstream version 4.3 +- Drop group tag + +* Sat Aug 03 2013 Fedora Release Engineering - 4.2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Mon Jun 10 2013 Michal Srb - 4.2.5-2 +- Enable tests on Fedora + +* Thu Apr 25 2013 Michal Srb - 4.2.5-1 +- Update to upstream version 4.2.5 + +* Thu Apr 11 2013 Michal Srb - 4.2.4-1 +- Update to upstream version 4.2.4 + +* Wed Feb 06 2013 Java SIG - 4.2.3-3 +- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild +- Replace maven BuildRequires with maven-local + +* Fri Jan 25 2013 Michal Srb - 4.2.3-2 +- Build with xmvn +- Disable fluent-hc module + +* Thu Jan 24 2013 Mikolaj Izdebski - 4.2.3-1 +- Update to upstream version 4.2.3 + +* Thu Oct 25 2012 Mikolaj Izdebski - 4.2.2-1 +- Update to upstream version 4.2.2 + +* Wed Aug 1 2012 Mikolaj Izdebski - 4.2.1-3 +- Fix OSGi manifest in httpmime + +* Fri Jul 27 2012 Mikolaj Izdebski - 4.2.1-2 +- Install NOTICE.txt file +- Fix javadir directory ownership +- Fix directory permissions +- Preserve timestamps +- Replace add_to_maven_depmap with add_maven_depmap + +* Fri Jul 27 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.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed May 2 2012 Alexander Kurtakov 4.1.3-3 +- Do not export org.apache.http.param in osgi. + +* Mon Mar 26 2012 Alexander Kurtakov 4.1.3-2 +- Do not export * but only org.apache.http.* . +- Do not generate uses clauses in the manifest. + +* Thu Mar 1 2012 Stanislav Ochotnicky 4.1.3-1 +- Update to latest upstream bugfix + +* Fri Jan 13 2012 Fedora Release Engineering - 4.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Aug 16 2011 Stanislav Ochotnicky - 4.1.2-1 +- Update to latest upstream (4.1.2) +- Minor tweaks according to guidelines + +* Fri Jul 15 2011 Severin Gehwolf 4.1.1-3 +- Fix for RH Bz#718830. Add instructions so as to not + Import-Package optional dependencies. + +* Thu Apr 7 2011 Severin Gehwolf 4.1.1-2 +- Add BR/R apache-commons-codec, since httpcomponents-client's + MANIFEST.MF has an Import-Package: org.apache.commons.codec + header. + +* Tue Mar 29 2011 Stanislav Ochotnicky - 4.1.1-1 +- New upstream bugfix version (4.1.1) + +* Tue Mar 15 2011 Severin Gehwolf 4.1-6 +- Explicitly set PrivatePackage to the empty set, so as to + export all packages. + +* Thu Mar 10 2011 Alexander Kurtakov 4.1-5 +- OSGi export more packages. + +* Fri Feb 25 2011 Alexander Kurtakov 4.1-4 +- Build httpmime module. + +* Fri Feb 18 2011 Alexander Kurtakov 4.1-3 +- Don't use basename as an identifier. + +* Fri Feb 18 2011 Alexander Kurtakov 4.1-2 +- OSGify properly. +- Install into %%{_javadir}/%%{basename}. + +* Thu Feb 17 2011 Alexander Kurtakov 4.1-1 +- Update to latest upstream version. + +* Wed Feb 09 2011 Fedora Release Engineering - 4.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Dec 22 2010 Stanislav Ochotnicky - 4.0.3-2 +- Added license to javadoc subpackage + +* Mon Dec 20 2010 Stanislav Ochotnicky - 4.0.3-1 +- Initial version diff --git a/sources b/sources new file mode 100644 index 0000000..02a3acf --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA1 (httpcomponents-client-4.5.10-src.tar.gz) = c3e525345e474f457b85d074a96865eaf5d397ad