7
0

10 Commits

Author SHA256 Message Date
fbdab174b1 Accepting request 1293094 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1293094
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-c-event-stream?expand=0&rev=7
2025-07-15 14:43:44 +00:00
9e059812aa - Update to version 0.5.5
* Make exports consistent by @DmitriyMusatkin in (#126)
  * Fix path for diagram in README by @sfod in (#127)
  * Remove Windows 2019 and add Windows 2025 with MSVC-17 by @TingDaoK in (#129)
  * Continuation termination callback support by @bretambrose in (#128)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-event-stream?expand=0&rev=37
2025-07-14 09:46:02 +00:00
e2015649bd Accepting request 1252414 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1252414
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-c-event-stream?expand=0&rev=6
2025-03-13 14:06:11 +00:00
6c30ebedbe - Update to version 0.5.4
* Reduce Max Message Size to 24MB by @waahm7 in (#125)
- from version 0.5.3
  * Bump AWS_EVENT_STREAM_MAX_HEADERS_SIZE by @graebm in (#123)
  * Adapt to aws_base64_encode() no longer adding a null terminator
    by @graebm in (#124)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-event-stream?expand=0&rev=35
2025-03-12 11:48:26 +00:00
09b793cee0 Accepting request 1247336 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1247336
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-c-event-stream?expand=0&rev=5
2025-02-20 15:41:36 +00:00
283db7e541 - Update to version 0.5.2
* Bump AWS_EVENT_STREAM_MAX_MESSAGE_SIZE to 256MB by @waahm7 in (#122)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-event-stream?expand=0&rev=33
2025-02-20 09:38:27 +00:00
95b5fa83c6 Accepting request 1243449 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1243449
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-c-event-stream?expand=0&rev=4
2025-02-06 21:05:20 +00:00
ed618296e9 - Update to version 0.5.1
* chore: Modified bug issue template to add checkbox to
    report potential regression. by @ashishdhingra in (#116)
  * Switch CI to use roles by @DmitriyMusatkin in (#118)
  * A bunch of CMake fixes by @graebm in (#119)
- Drop aces_fix-cmake-modules-path.patch, fixed upstream

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-event-stream?expand=0&rev=31
2025-02-05 16:01:46 +00:00
dcc1dfb932 Accepting request 1218379 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1218379
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-c-event-stream?expand=0&rev=3
2024-10-27 10:25:08 +00:00
bd73a452f6 - Update to version 0.5.0
* Update CMake to 3.9 by @waahm7 in (#117)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-event-stream?expand=0&rev=29
2024-10-25 15:08:53 +00:00
5 changed files with 46 additions and 49 deletions

View File

@@ -1,43 +0,0 @@
diff -Nru aws-c-event-stream-0.1.6.orig/CMakeLists.txt aws-c-event-stream-0.1.6/CMakeLists.txt
--- aws-c-event-stream-0.1.6.orig/CMakeLists.txt 2020-07-24 02:06:45.000000000 +0200
+++ aws-c-event-stream-0.1.6/CMakeLists.txt 2020-08-25 13:17:04.469790864 +0200
@@ -11,17 +11,11 @@
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})
+include(GNUInstallDirs)
include(AwsCFlags)
include(AwsSharedLibSetup)
@@ -92,7 +86,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)
@@ -101,7 +95,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)

View File

@@ -1,3 +1,44 @@
-------------------------------------------------------------------
Fri Jul 11 10:50:04 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.5.5
* Make exports consistent by @DmitriyMusatkin in (#126)
* Fix path for diagram in README by @sfod in (#127)
* Remove Windows 2019 and add Windows 2025 with MSVC-17 by @TingDaoK in (#129)
* Continuation termination callback support by @bretambrose in (#128)
-------------------------------------------------------------------
Wed Mar 12 07:08:50 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.5.4
* Reduce Max Message Size to 24MB by @waahm7 in (#125)
- from version 0.5.3
* Bump AWS_EVENT_STREAM_MAX_HEADERS_SIZE by @graebm in (#123)
* Adapt to aws_base64_encode() no longer adding a null terminator
by @graebm in (#124)
-------------------------------------------------------------------
Wed Feb 19 11:32:16 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.5.2
* Bump AWS_EVENT_STREAM_MAX_MESSAGE_SIZE to 256MB by @waahm7 in (#122)
-------------------------------------------------------------------
Thu Jan 30 12:22:51 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.5.1
* chore: Modified bug issue template to add checkbox to
report potential regression. by @ashishdhingra in (#116)
* Switch CI to use roles by @DmitriyMusatkin in (#118)
* A bunch of CMake fixes by @graebm in (#119)
- Drop aces_fix-cmake-modules-path.patch, fixed upstream
-------------------------------------------------------------------
Thu Oct 24 12:13:55 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.5.0
* Update CMake to 3.9 by @waahm7 in (#117)
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 21 11:22:18 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org> Tue May 21 11:22:18 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>

View File

@@ -21,15 +21,14 @@
%define library_version 1.0.0 %define library_version 1.0.0
%define library_soversion 1 %define library_soversion 1
Name: aws-c-event-stream Name: aws-c-event-stream
Version: 0.4.2 Version: 0.5.5
Release: 0 Release: 0
Summary: C99 implementation of the vnd.amazon.eventstream content-type Summary: C99 implementation of the vnd.amazon.eventstream content-type
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-event-stream URL: https://github.com/awslabs/aws-c-event-stream
Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz
Patch0: aces_fix-cmake-modules-path.patch Patch0: aces_re-add-so-version.patch
Patch1: aces_re-add-so-version.patch
BuildRequires: cmake BuildRequires: cmake
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: ninja BuildRequires: ninja

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c98b8fa05c2ca10aacfce7327b92a84669c2da95ccb8e7d7b3e3285fcec8beee
size 71455

3
v0.5.5.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f6e55c8fd6afd7f904e08d36c3210e199ece5dc838f0f8457b43b72ec4d818e9
size 99105