forked from pool/aws-c-common
- Update to 0.12.4
* Remove clang-3 from CI by @sbSteveK in (#1203) * Fix signature of aws_backtrace_log by @TingDaoK in (#1206) * Remove Windows 2019 and add Windows 2025 with MSVC-17 by @TingDaoK in (#1209) * Fix byte helpers for mingw 32 bit by @DmitriyMusatkin in (#1210) * Add a python script to help pick up the latest cjson and libcbor by @TingDaoK in (#1211) * Add API for a more compact (no dashes) UUID-to-str by @bretambrose in (#1212) OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/aws-c-common?expand=0&rev=117
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
|
||||
1196
aws-c-common.changes
Normal file
1196
aws-c-common.changes
Normal file
File diff suppressed because it is too large
Load Diff
89
aws-c-common.spec
Normal file
89
aws-c-common.spec
Normal file
@@ -0,0 +1,89 @@
|
||||
#
|
||||
# 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.12.4
|
||||
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
|
||||
# https://github.com/awslabs/aws-c-common/issues/1175
|
||||
ExcludeArch: s390x
|
||||
|
||||
%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
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%define __builder ninja
|
||||
%cmake \
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
%make_jobs
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%check
|
||||
%ctest
|
||||
|
||||
%ldconfig_scriptlets -n lib%{name}%{library_soversion}
|
||||
|
||||
%files -n lib%{name}%{library_soversion}
|
||||
%doc NOTICE README.md
|
||||
%license LICENSE
|
||||
%{_libdir}/*.so.%{library_soversion}
|
||||
%{_libdir}/*.so.%{library_version}
|
||||
|
||||
%files devel
|
||||
%license LICENSE
|
||||
%{_libdir}/cmake/
|
||||
%{_libdir}/*.so
|
||||
%{_includedir}/*
|
||||
|
||||
%changelog
|
||||
3
v0.10.0.tar.gz
Normal file
3
v0.10.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1fc7dea83f1d5a4b6fa86e3c8458200ed6e7f69c65707aa7b246900701874ad1
|
||||
size 606374
|
||||
3
v0.10.3.tar.gz
Normal file
3
v0.10.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:15cc7282cfe4837fdaf1c3bb44105247da712ae97706a8717866f8e73e1d4fd9
|
||||
size 607496
|
||||
3
v0.10.5.tar.gz
Normal file
3
v0.10.5.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:368e4e9aa5fc31144bd93487c22d856684f9638c8a06b74b08946d0adf7a7dd3
|
||||
size 609045
|
||||
3
v0.10.6.tar.gz
Normal file
3
v0.10.6.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d0acbabc786035d41791c3a2f45dbeda31d9693521ee746dc1375d6380eb912b
|
||||
size 609037
|
||||
3
v0.10.8.tar.gz
Normal file
3
v0.10.8.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fb7ce3cf22aac2c70a7676cd8ceeea785bb6ee2e4fea7d6cfb225a12fdc62775
|
||||
size 610074
|
||||
3
v0.11.0.tar.gz
Normal file
3
v0.11.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:88115d6f3e4f79d8b2544ed8a95d8a9699985aed38aeb4779d7c9fffde1fee58
|
||||
size 609940
|
||||
3
v0.11.1.tar.gz
Normal file
3
v0.11.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b442cc59f507fbe232c0ae433c836deff83330270a58fa13bf360562efda368a
|
||||
size 611878
|
||||
3
v0.12.0.tar.gz
Normal file
3
v0.12.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:765ca1be2be9b62a63646cb1f967f2aa781071f7780fdb5bbc7e9acfea0a1f35
|
||||
size 612377
|
||||
3
v0.12.1.tar.gz
Normal file
3
v0.12.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:303505ed8770be88364c5fb7cac1843e5958ea1389cca8f1f0a84103d7660494
|
||||
size 612396
|
||||
3
v0.12.2.tar.gz
Normal file
3
v0.12.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ecea168ea974f2da73b5a0adc19d9c5ebca73ca4b9f733de7c37fc453ee7d1c2
|
||||
size 612289
|
||||
3
v0.12.3.tar.gz
Normal file
3
v0.12.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a4e7ac6c6f840cb6ab56b8ee0bcd94a61c59d68ca42570bca518432da4c94273
|
||||
size 619465
|
||||
3
v0.12.4.tar.gz
Normal file
3
v0.12.4.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0b7705a4d115663c3f485d353a75ed86e37583157585e5825d851af634b57fe3
|
||||
size 621057
|
||||
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.27.tar.gz
Normal file
3
v0.9.27.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0c0eecbd7aa04f85b1bdddf6342789bc8052737c6e9aa2ca35e26caed41d06ba
|
||||
size 605642
|
||||
3
v0.9.28.tar.gz
Normal file
3
v0.9.28.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bf265e9e409d563b0eddcb66e1cb00ff6b371170db3e119348478d911d054317
|
||||
size 606087
|
||||
Reference in New Issue
Block a user