10 Commits

Author SHA256 Message Date
223a889e6c Accepting request 1271849 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1271849
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-checksums?expand=0&rev=8
2025-04-22 15:30:26 +00:00
e207acabbb aws-checksums 0.2.7
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-checksums?expand=0&rev=31
2025-04-22 11:32:18 +00:00
00ec406ee8 Accepting request 1268429 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1268429
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-checksums?expand=0&rev=7
2025-04-10 20:00:07 +00:00
8c3eaa9992 - Update to version 0.2.5
* Add missing extern c to new header by @DmitriyMusatkin in (#103)
- from version 0.2.4
  * Add init functions to support thread safe init of impls
    by @DmitriyMusatkin in (#102)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-checksums?expand=0&rev=29
2025-04-10 14:11:02 +00:00
83dff62023 Accepting request 1243448 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1243448
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-checksums?expand=0&rev=6
2025-02-06 21:05:17 +00:00
09cbd75a90 - Update to version 0.2.3
* Switch CI to use roles by @DmitriyMusatkin in (#100)
  * A bunch of CMake fixes by @graebm in (#101)
- Drop ac_fix-cmake-modules-path.patch, fixed upstream

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-checksums?expand=0&rev=27
2025-02-05 16:01:29 +00:00
992e6430c6 Accepting request 1225587 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1225587
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-checksums?expand=0&rev=5
2024-11-21 14:19:37 +00:00
363347391e - Update to version 0.2.2
* Fix predefines for bswap for old compilers by @DmitriyMusatkin in (#99)
- from version 0.2.1
  * chore: Modified bug issue template to add checkbox to
    report potential regression. by @ashishdhingra in (#95)
  * CRC big endian support by @DmitriyMusatkin in (#97)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-checksums?expand=0&rev=25
2024-11-21 12:14:23 +00:00
440daa787b Accepting request 1218380 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1218380
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-checksums?expand=0&rev=4
2024-10-27 10:25:09 +00:00
7aa7dba81a - Update to version 0.2.0
* Update CMake to 3.9 by @waahm7 in (#98)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-checksums?expand=0&rev=23
2024-10-25 15:09:02 +00:00
5 changed files with 50 additions and 51 deletions

View File

@@ -1,42 +0,0 @@
diff -Nru aws-checksums-0.1.20.orig/CMakeLists.txt aws-checksums-0.1.20/CMakeLists.txt
--- aws-checksums-0.1.20.orig/CMakeLists.txt 2024-09-13 18:19:34.000000000 +0000
+++ aws-checksums-0.1.20/CMakeLists.txt 2024-09-17 10:59:10.258664608 +0000
@@ -16,17 +16,10 @@
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)
+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(AwsSIMD)
include(AwsCFlags)
@@ -151,7 +144,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)
@@ -160,7 +153,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)

View File

@@ -1,3 +1,42 @@
-------------------------------------------------------------------
Sun Apr 20 12:53:24 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
- update to 0.2.7:
* remove thread unsafe false positives
-------------------------------------------------------------------
Mon Apr 7 07:21:26 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.2.5
* Add missing extern c to new header by @DmitriyMusatkin in (#103)
- from version 0.2.4
* Add init functions to support thread safe init of impls
by @DmitriyMusatkin in (#102)
-------------------------------------------------------------------
Thu Jan 30 12:44:02 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.2.3
* Switch CI to use roles by @DmitriyMusatkin in (#100)
* A bunch of CMake fixes by @graebm in (#101)
- Drop ac_fix-cmake-modules-path.patch, fixed upstream
-------------------------------------------------------------------
Thu Nov 21 11:06:51 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.2.2
* Fix predefines for bswap for old compilers by @DmitriyMusatkin in (#99)
- from version 0.2.1
* chore: Modified bug issue template to add checkbox to
report potential regression. by @ashishdhingra in (#95)
* CRC big endian support by @DmitriyMusatkin in (#97)
-------------------------------------------------------------------
Thu Oct 24 12:11:32 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 0.2.0
* Update CMake to 3.9 by @waahm7 in (#98)
-------------------------------------------------------------------
Tue Sep 17 11:05:10 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@@ -2,6 +2,7 @@
# spec file for package aws-checksums
#
# 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
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,15 +20,14 @@
%define library_version 1.0.0
%define library_soversion 1
Name: aws-checksums
Version: 0.1.20
Version: 0.2.7
Release: 0
Summary: Checksums package for AWS SDK for C
License: Apache-2.0
Group: Development/Libraries/C and C++
URL: https://github.com/awslabs/aws-checksums
Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz
Patch0: ac_fix-cmake-modules-path.patch
Patch1: ac_re-add-so-version.patch
Patch0: ac_re-add-so-version.patch
BuildRequires: cmake
BuildRequires: fdupes
BuildRequires: ninja
@@ -76,7 +76,8 @@ This package contains the development files.
%build
%define __builder ninja
%cmake \
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_BUILD_TYPE=Release \
%{nil}
%make_jobs
%check
@@ -86,10 +87,10 @@ export LD_LIBRARY_PATH=%{_builddir}/%{name}-%{version}/build
%install
%cmake_install
%post -n lib%{name}%{library_soversion} -p /sbin/ldconfig
%postun -n lib%{name}%{library_soversion} -p /sbin/ldconfig
%ldconfig_scriptlets -n lib%{name}%{library_soversion}
%files -n %{name}-bin
%license LICENSE
%{_bindir}/checksum-profile
%files -n lib%{name}%{library_soversion}
@@ -99,6 +100,7 @@ export LD_LIBRARY_PATH=%{_builddir}/%{name}-%{version}/build
%{_libdir}/*.so.%{library_version}
%files -n lib%{name}-devel
%license LICENSE
%{_libdir}/cmake/%{name}/
%{_libdir}/*.so
%{_includedir}/*

View File

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

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

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