Compare commits
21 Commits
Author | SHA256 | Date | |
---|---|---|---|
f30fea2a84 | |||
a16962d0a0 | |||
71c77f132e | |||
0c5adbab40 | |||
08fcd308dd | |||
fa8ea7b394 | |||
726428162f | |||
ff7cec1ef6 | |||
751bdd1f49 | |||
d9b1c0e9e7 | |||
47b54085eb | |||
69b83be1a1 | |||
a94657684d | |||
35ad61bdc8 | |||
4f3839e3fb | |||
6c6809d12b | |||
67a8e469c7 | |||
01b657e5cc | |||
21371b1725 | |||
7efb9388e5 | |||
774f62c729 |
@@ -1,44 +0,0 @@
|
|||||||
diff -Nru aws-c-http-0.6.7.orig/CMakeLists.txt aws-c-http-0.6.7/CMakeLists.txt
|
|
||||||
--- aws-c-http-0.6.7.orig/CMakeLists.txt 2021-09-22 20:39:33.000000000 +0000
|
|
||||||
+++ aws-c-http-0.6.7/CMakeLists.txt 2021-10-12 09:52:05.904419768 +0000
|
|
||||||
@@ -15,17 +15,12 @@
|
|
||||||
file(TO_CMAKE_PATH "${CMAKE_INSTALL_PREFIX}" CMAKE_INSTALL_PREFIX)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
-if (UNIX AND NOT APPLE)
|
|
||||||
- include(GNUInstallDirs)
|
|
||||||
-elseif(NOT DEFINED CMAKE_INSTALL_LIBDIR)
|
|
||||||
- set(CMAKE_INSTALL_LIBDIR "lib")
|
|
||||||
-endif()
|
|
||||||
+find_package(aws-c-common REQUIRED)
|
|
||||||
+find_package(aws-checksums REQUIRED)
|
|
||||||
+set(CMAKE_MODULE_PATH ${aws-c-common_DIR})
|
|
||||||
|
|
||||||
-# This is required in order to append /lib/cmake to each element in CMAKE_PREFIX_PATH
|
|
||||||
-set(AWS_MODULE_DIR "/${CMAKE_INSTALL_LIBDIR}/cmake")
|
|
||||||
-string(REPLACE ";" "${AWS_MODULE_DIR};" AWS_MODULE_PATH "${CMAKE_PREFIX_PATH}${AWS_MODULE_DIR}")
|
|
||||||
-# Append that generated list to the module search path
|
|
||||||
-list(APPEND CMAKE_MODULE_PATH ${AWS_MODULE_PATH})
|
|
||||||
+list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake/modules")
|
|
||||||
+include(GNUInstallDirs)
|
|
||||||
|
|
||||||
include(AwsCFlags)
|
|
||||||
include(AwsCheckHeaders)
|
|
||||||
@@ -83,7 +78,7 @@
|
|
||||||
endif()
|
|
||||||
|
|
||||||
install(EXPORT "${PROJECT_NAME}-targets"
|
|
||||||
- DESTINATION "${LIBRARY_DIRECTORY}/${PROJECT_NAME}/cmake/${TARGET_DIR}/"
|
|
||||||
+ DESTINATION "${LIB_INSTALL_DIR}/cmake/${CMAKE_PROJECT_NAME}/${TARGET_DIR}/"
|
|
||||||
NAMESPACE AWS::
|
|
||||||
COMPONENT Development)
|
|
||||||
|
|
||||||
@@ -92,7 +87,7 @@
|
|
||||||
@ONLY)
|
|
||||||
|
|
||||||
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config.cmake"
|
|
||||||
- DESTINATION "${LIBRARY_DIRECTORY}/${PROJECT_NAME}/cmake/"
|
|
||||||
+ DESTINATION "${LIB_INSTALL_DIR}/cmake/${CMAKE_PROJECT_NAME}"
|
|
||||||
COMPONENT Development)
|
|
||||||
|
|
||||||
include(CTest)
|
|
@@ -1,3 +1,93 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 10 07:03:55 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.10.2
|
||||||
|
* Remove clang-3 from CI by @sbSteveK in (#518)
|
||||||
|
* Stop sending empty data frame when input stream ends but
|
||||||
|
the request stream is not ending. by @TingDaoK in (#520)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 14 08:51:46 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.10.1
|
||||||
|
* Fix mock server window update on 0 length body by @TingDaoK in (#517)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 7 11:32:42 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.10.0
|
||||||
|
* Fix initial settings for h2 by @TingDaoK in (#513)
|
||||||
|
* Update h2 windowing algo and http client benchmark by @TingDaoK in (#388)
|
||||||
|
+ Batching up the window update frame until the window size drops
|
||||||
|
below the threshold for both manual and auto window management
|
||||||
|
+ Initial window size now be required for HTTP/2 connection on
|
||||||
|
manual window management now.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Apr 20 12:48:14 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||||
|
|
||||||
|
- update to 0.9.7:
|
||||||
|
* fix: H2 manual write triggers the stream complete test
|
||||||
|
* make exports more consistent
|
||||||
|
* report the error back to write complete
|
||||||
|
- minor spec file tweaks
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 2 14:55:22 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.9.6
|
||||||
|
* Fix Error Handling For Connection Manager by @waahm7 in (#507)
|
||||||
|
* h1_decoder error on multiple content-length headers by @quinnj in (#509)
|
||||||
|
* Apple Network Framework Support by @xiazhvera in (#502)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 18 08:27:02 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.9.5
|
||||||
|
* HTTP/1: Support streaming requests of unknown length
|
||||||
|
by @graebm in (#506)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 12 06:54:32 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.9.4
|
||||||
|
* Some trivial fixup on tests by @graebm in (#503)
|
||||||
|
* Move h1_stream variables, to make thread usage more explicit
|
||||||
|
by @graebm in (#504)
|
||||||
|
* Supprt response_first_byte_timeout_ms in ConnectionManagerOptions
|
||||||
|
by @waahm7 in (#505)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 30 11:43:07 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.9.3
|
||||||
|
* Switch CI to use roles by @DmitriyMusatkin in (#494)
|
||||||
|
* Fix CI for GCC-13 on Ubuntu-18 by @waahm7 in (#496)
|
||||||
|
* A bunch of CMake fixes by @graebm in (#497)
|
||||||
|
- Drop ach_fix-cmake-modules-path.patch, fixed upstream
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 14 12:36:20 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.9.2
|
||||||
|
* Update for event loop API changes by @bretambrose in (#491)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 12 12:59:30 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.9.1
|
||||||
|
* chore: Modified bug issue template to add checkbox to
|
||||||
|
report potential regression. by @ashishdhingra in (#486)
|
||||||
|
* Add cxx support by @subdiox in (#490)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 24 12:41:21 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.9.0
|
||||||
|
* Tweak error message for AWS_ERROR_HTTP_RESPONSE_FIRST_BYTE_TIMEOUT
|
||||||
|
by @graebm in (#488)
|
||||||
|
* Update CMake to 3.9 by @waahm7 in (#489)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 17 10:38:23 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
Tue Sep 17 10:38:23 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
@@ -2,6 +2,7 @@
|
|||||||
# spec file for package aws-c-http
|
# spec file for package aws-c-http
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
|
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -19,25 +20,23 @@
|
|||||||
%define library_version 1.0.0
|
%define library_version 1.0.0
|
||||||
%define library_soversion 1_0_0
|
%define library_soversion 1_0_0
|
||||||
Name: aws-c-http
|
Name: aws-c-http
|
||||||
Version: 0.8.10
|
Version: 0.10.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C99 implementation of the HTTP/1.1 and HTTP/2 specifications
|
Summary: C99 implementation of the HTTP/1.1 and HTTP/2 specifications
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
URL: https://github.com/awslabs/aws-c-http
|
URL: https://github.com/awslabs/aws-c-http
|
||||||
Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz
|
Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz
|
||||||
Patch0: ach_fix-cmake-modules-path.patch
|
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: cmake(aws-checksums)
|
BuildRequires: ninja
|
||||||
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: cmake(aws-c-cal)
|
BuildRequires: cmake(aws-c-cal)
|
||||||
BuildRequires: cmake(aws-c-common)
|
BuildRequires: cmake(aws-c-common)
|
||||||
BuildRequires: cmake(aws-c-compression)
|
BuildRequires: cmake(aws-c-compression)
|
||||||
BuildRequires: cmake(aws-c-io)
|
BuildRequires: cmake(aws-c-io)
|
||||||
BuildRequires: cmake(s2n)
|
BuildRequires: cmake(s2n)
|
||||||
BuildRequires: pkgconfig(libcrypto)
|
BuildRequires: pkgconfig(libcrypto)
|
||||||
BuildRequires: ninja
|
|
||||||
BuildRequires: pkgconfig
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
C99 implementation of the HTTP/1.1 and HTTP/2 specifications.
|
C99 implementation of the HTTP/1.1 and HTTP/2 specifications.
|
||||||
@@ -68,21 +67,17 @@ This package contains the development files.
|
|||||||
%define __builder ninja
|
%define __builder ninja
|
||||||
%cmake \
|
%cmake \
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
-DCMAKE_MODULE_PATH=%{_libdir}/cmake
|
-DCMAKE_MODULE_PATH=%{_libdir}/cmake \
|
||||||
%make_jobs
|
%{nil}
|
||||||
|
%cmake_build
|
||||||
# Testsuite currently fails
|
|
||||||
#%%check
|
|
||||||
#export LD_LIBRARY_PATH=%{_builddir}/%{name}-%{version}/build
|
|
||||||
#%%ctest
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%cmake_install
|
%cmake_install
|
||||||
|
|
||||||
%post -n lib%{name}%{library_soversion} -p /sbin/ldconfig
|
%ldconfig_scriptlets -n lib%{name}%{library_soversion}
|
||||||
%postun -n lib%{name}%{library_soversion} -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
%license LICENSE
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
|
|
||||||
%files -n lib%{name}%{library_soversion}
|
%files -n lib%{name}%{library_soversion}
|
||||||
@@ -91,6 +86,7 @@ This package contains the development files.
|
|||||||
%{_libdir}/*.so.%{library_version}
|
%{_libdir}/*.so.%{library_version}
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
|
%license LICENSE
|
||||||
%{_libdir}/cmake/
|
%{_libdir}/cmake/
|
||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
%{_includedir}/*
|
%{_includedir}/*
|
||||||
|
3
v0.10.2.tar.gz
Normal file
3
v0.10.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:048d9d683459ade363fd7cc448c2b6329c78f67a2a0c0cb61c16de4634a2fc6b
|
||||||
|
size 489715
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f878802a4e0bcefadce9959ce443acaf77607a68d138f9d3db04a5a878f1a871
|
|
||||||
size 476172
|
|
Reference in New Issue
Block a user