1
0

Compare commits

...

8 Commits

Author SHA256 Message Date
Ana Guerrero
d87c0c8543 Accepting request 1243442 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1243442
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-c-sdkutils?expand=0&rev=9
2025-02-06 21:05:03 +00:00
428db7eeeb - Update to version 0.2.3
* A bunch of CMake fixes by @graebm in (#50)
- Drop acs_fix-cmake-modules-path.patch, fixed upstream

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-sdkutils?expand=0&rev=29
2025-02-05 15:58:55 +00:00
Ana Guerrero
7253369b6a Accepting request 1236874 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1236874
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-c-sdkutils?expand=0&rev=8
2025-01-12 10:21:16 +00:00
d507ef5711 - Update to version 0.2.2
* Switch CI to use Roles by @DmitriyMusatkin in (#49)
  * Update Config File Parsing Logic to Parse Services
    Section by @waahm7 in (#51)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-sdkutils?expand=0&rev=27
2025-01-10 13:29:35 +00:00
Ana Guerrero
d10bcc15c3 Accepting request 1223943 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1223943
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-c-sdkutils?expand=0&rev=7
2024-11-14 15:08:22 +00:00
6238617bb7 - Update to version 0.2.1
* chore: Modified bug issue template to add checkbox to
    report potential regression. by @ashishdhingra in (#45)
  * Add cxx support by @subdiox in (#48)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-sdkutils?expand=0&rev=25
2024-11-13 12:49:55 +00:00
Ana Guerrero
51c6a559ff Accepting request 1218377 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1218377
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-c-sdkutils?expand=0&rev=6
2024-10-27 10:25:06 +00:00
19f2a7ed54 - Update to version 0.2.0
* Update CMake to 3.9 by @waahm7 in (#47)

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

View File

@ -1,41 +0,0 @@
diff -Nru aws-c-sdkutils-0.1.2.orig/CMakeLists.txt aws-c-sdkutils-0.1.2/CMakeLists.txt
--- aws-c-sdkutils-0.1.2.orig/CMakeLists.txt 2022-02-07 21:12:21.000000000 +0000
+++ aws-c-sdkutils-0.1.2/CMakeLists.txt 2022-04-28 13:37:14.026977223 +0000
@@ -16,18 +16,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()
-
-# 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})
+find_package(aws-c-common REQUIRED)
+set(CMAKE_MODULE_PATH ${aws-c-common_DIR})
+
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake/modules")
+include(GNUInstallDirs)
include(AwsCFlags)
include(AwsCheckHeaders)
@@ -94,12 +87,12 @@
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)
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)
install(FILES ${EXPORT_MODULES}

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Thu Jan 30 12:20:14 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.2.3
* A bunch of CMake fixes by @graebm in (#50)
- Drop acs_fix-cmake-modules-path.patch, fixed upstream
-------------------------------------------------------------------
Thu Jan 9 10:39:28 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.2.2
* Switch CI to use Roles by @DmitriyMusatkin in (#49)
* Update Config File Parsing Logic to Parse Services
Section by @waahm7 in (#51)
-------------------------------------------------------------------
Tue Nov 12 12:50:34 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.2.1
* chore: Modified bug issue template to add checkbox to
report potential regression. by @ashishdhingra in (#45)
* Add cxx support by @subdiox in (#48)
-------------------------------------------------------------------
Thu Oct 24 12:39:30 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.2.0
* Update CMake to 3.9 by @waahm7 in (#47)
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Aug 7 13:37:56 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com> Wed Aug 7 13:37:56 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@ -20,14 +20,13 @@
%define library_pkg 1_0_0 %define library_pkg 1_0_0
%define library_soversion 1 %define library_soversion 1
Name: aws-c-sdkutils Name: aws-c-sdkutils
Version: 0.1.19 Version: 0.2.3
Release: 0 Release: 0
Summary: AWS C SDK Utils Summary: AWS C SDK Utils
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-sdkutils URL: https://github.com/awslabs/aws-c-sdkutils
Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz
Patch0: acs_fix-cmake-modules-path.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:66bd7a8679703386aec1539407aaed0942a78032fe340ab44e810a3cf6d7e505
size 79159

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

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