forked from pool/aws-c-common
- Update to version 0.9.25
* Run proofs with CBMC 6.1.0 by @graebm in (#1140) * Avoiding allocating a handle in the Windows RNG by @teo-tsirpanis in (#1046) * Add no copy api variants to json interface by @DmitriyMusatkin in (#1138) * Allocate error space for aws-crt-swift by @xiazhvera in (#1129) OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-common?expand=0&rev=84
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.osc
|
||||||
1036
aws-c-common.changes
Normal file
1036
aws-c-common.changes
Normal file
File diff suppressed because it is too large
Load Diff
94
aws-c-common.spec
Normal file
94
aws-c-common.spec
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
#
|
||||||
|
# spec file for package aws-c-common
|
||||||
|
#
|
||||||
|
# Copyright (c) 2024 SUSE LLC
|
||||||
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define library_version 1.0.0
|
||||||
|
%define library_soversion 1
|
||||||
|
Name: aws-c-common
|
||||||
|
Version: 0.9.25
|
||||||
|
Release: 0
|
||||||
|
Summary: Core C99 package for AWS SDK for C
|
||||||
|
License: Apache-2.0
|
||||||
|
Group: Development/Libraries/C and C++
|
||||||
|
URL: https://github.com/awslabs/aws-c-common
|
||||||
|
Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: ninja
|
||||||
|
|
||||||
|
%description
|
||||||
|
Core C99 package for AWS SDK for C. It includes cross-platform primitives,
|
||||||
|
configuration, data structures, and error handling.
|
||||||
|
|
||||||
|
%package -n lib%{name}%{library_soversion}
|
||||||
|
Summary: Core C99 package for AWS SDK for C
|
||||||
|
Group: System/Libraries
|
||||||
|
|
||||||
|
%description -n lib%{name}%{library_soversion}
|
||||||
|
Core C99 package for AWS SDK for C. It includes cross-platform primitives,
|
||||||
|
configuration, data structures, and error handling.
|
||||||
|
|
||||||
|
This package contains the dynamically linked library.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for aws-c-common library
|
||||||
|
Group: Development/Libraries/C and C++
|
||||||
|
Requires: lib%{name}%{library_soversion} = %{version}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
Core C99 package for AWS SDK for C. It includes cross-platform primitives,
|
||||||
|
configuration, data structures, and error handling.
|
||||||
|
|
||||||
|
This package contains the development files.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
%define __builder ninja
|
||||||
|
%cmake \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release
|
||||||
|
%make_jobs
|
||||||
|
|
||||||
|
%check
|
||||||
|
export LD_LIBRARY_PATH=%{_builddir}/%{name}-%{version}/build
|
||||||
|
%ctest
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cmake_install
|
||||||
|
|
||||||
|
# Move cmake files to correct installation path
|
||||||
|
mkdir -p %{buildroot}%{_libdir}/cmake/aws-c-common
|
||||||
|
mv %{buildroot}%{_libdir}/aws-c-common/cmake/* %{buildroot}%{_libdir}/cmake/aws-c-common/
|
||||||
|
mv %{buildroot}%{_libdir}/cmake/Aws* %{buildroot}%{_libdir}/cmake/aws-c-common/
|
||||||
|
rm -rf %{buildroot}%{_libdir}/aws-c-common
|
||||||
|
|
||||||
|
%post -n lib%{name}%{library_soversion} -p /sbin/ldconfig
|
||||||
|
%postun -n lib%{name}%{library_soversion} -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files -n lib%{name}%{library_soversion}
|
||||||
|
%doc NOTICE README.md
|
||||||
|
%license LICENSE
|
||||||
|
%{_libdir}/*.so.%{library_soversion}
|
||||||
|
%{_libdir}/*.so.%{library_version}
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_libdir}/cmake/
|
||||||
|
%{_libdir}/*.so
|
||||||
|
%{_includedir}/*
|
||||||
|
|
||||||
|
%changelog
|
||||||
3
v0.9.23.tar.gz
Normal file
3
v0.9.23.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:adf838daf6a60aa31268522105b03262d745f529bc981d3ac665424133d6f91b
|
||||||
|
size 603920
|
||||||
3
v0.9.24.tar.gz
Normal file
3
v0.9.24.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:715a15399fe6dce2971c222ecabea4276e42ba3465a63c175724fc0c80d7a888
|
||||||
|
size 604225
|
||||||
3
v0.9.25.tar.gz
Normal file
3
v0.9.25.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:443f3268387715e6e2c417a87114a6b42873aeeebc793d3f6f631323e7c48a80
|
||||||
|
size 604565
|
||||||
Reference in New Issue
Block a user