Accepting request 1177904 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1177904 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aws-c-s3?expand=0&rev=5
This commit is contained in:
commit
65d9af6714
@ -1,3 +1,34 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu May 23 10:35:18 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 0.5.9
|
||||
* Buffer-pool allows "forced" buffers, which don't count
|
||||
against memory limit by @graebm in (#429)
|
||||
* Improve async write (fewer copies, polling API)
|
||||
by @graebm in (#430)
|
||||
- Add Provides and Obsoletes for lib%{name}%{library_soversion}
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 13 10:48:17 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 0.5.8
|
||||
* Allow disabling upload checksums while using upload review
|
||||
by @jamesbornholt in (#421)
|
||||
* Remove Dashboard and S3 Benchmark Stack by @waahm7 in (#427)
|
||||
* Make test_s3_range_requests less flaky by @waahm7 in #423
|
||||
* Add 'Content-Length: 0' header on multipart upload creation
|
||||
by @waahm7 in #428
|
||||
- from version 0.5.7
|
||||
* Add async write() function - fixes "stalled" uploads deadlocking
|
||||
S3 Client by @graebm in (#418)
|
||||
- from version 0.5.6
|
||||
* Adds Connection Pool Destroy Delay Take 2 by @waahm7 in (#419)
|
||||
- from version 0.5.5
|
||||
* Set fail-fast to false in CI by @waahm7 in (#420)
|
||||
* Small buffer by @DmitriyMusatkin in (#422)
|
||||
- Rename shared librar package from lib%{name}%{library_soversion}
|
||||
to lib%{name}-%{library_soversion} to fix rpmlint error
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 28 10:10:46 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
%define library_version 1.0.0
|
||||
%define library_soversion 0unstable
|
||||
Name: aws-c-s3
|
||||
Version: 0.5.4
|
||||
Version: 0.5.9
|
||||
Release: 0
|
||||
Summary: AWS Cross-Platform, C99 wrapper for cryptography primitives
|
||||
License: Apache-2.0
|
||||
@ -29,25 +29,25 @@ Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz
|
||||
Patch0: acs_fix-cmake-modules-path.patch
|
||||
BuildRequires: cmake
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: ninja
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: cmake(aws-c-auth)
|
||||
BuildRequires: cmake(aws-c-cal)
|
||||
BuildRequires: cmake(aws-c-common)
|
||||
BuildRequires: cmake(aws-c-compression)
|
||||
BuildRequires: cmake(aws-checksums)
|
||||
BuildRequires: cmake(aws-c-http)
|
||||
BuildRequires: cmake(aws-c-io)
|
||||
BuildRequires: cmake(aws-c-sdkutils)
|
||||
BuildRequires: cmake(aws-checksums)
|
||||
BuildRequires: cmake(s2n)
|
||||
BuildRequires: pkgconfig(numa)
|
||||
BuildRequires: pkgconfig(libssl)
|
||||
BuildRequires: ninja
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(numa)
|
||||
|
||||
%description
|
||||
AWS Crypto Abstraction Layer: Cross-Platform, C99 wrapper for cryptography primitives.
|
||||
|
||||
%package -n %{name}-bin
|
||||
Summary: aws-c-s3 binary files
|
||||
Summary: Binary files for aws-c-s3 library
|
||||
Group: Development/Libraries/C and C++
|
||||
# both provide /usr/bin/s3
|
||||
Conflicts: libs3-tools
|
||||
@ -57,11 +57,13 @@ AWS Crypto Abstraction Layer: Cross-Platform, C99 wrapper for cryptography primi
|
||||
|
||||
This package contains the command line utilities.
|
||||
|
||||
%package -n lib%{name}%{library_soversion}
|
||||
%package -n lib%{name}-%{library_soversion}
|
||||
Summary: Shared library files for aws-c-s3 library
|
||||
Group: Development/Libraries/C and C++
|
||||
Provides: lib%{name}%{library_soversion} = %{version}
|
||||
Obsoletes: lib%{name}%{library_soversion} < %{version}
|
||||
|
||||
%description -n lib%{name}%{library_soversion}
|
||||
%description -n lib%{name}-%{library_soversion}
|
||||
AWS Crypto Abstraction Layer: Cross-Platform, C99 wrapper for cryptography primitives.
|
||||
|
||||
This package contains the dynamically linked library.
|
||||
@ -69,7 +71,7 @@ This package contains the dynamically linked library.
|
||||
%package devel
|
||||
Summary: Development files for aws-c-s3 library
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: lib%{name}%{library_soversion} = %{version}
|
||||
Requires: lib%{name}-%{library_soversion} = %{version}
|
||||
|
||||
%description devel
|
||||
AWS Crypto Abstraction Layer: Cross-Platform, C99 wrapper for cryptography primitives.
|
||||
@ -93,13 +95,13 @@ This package contains the development files.
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%post -n lib%{name}%{library_soversion} -p /sbin/ldconfig
|
||||
%postun -n lib%{name}%{library_soversion} -p /sbin/ldconfig
|
||||
%post -n lib%{name}-%{library_soversion} -p /sbin/ldconfig
|
||||
%postun -n lib%{name}-%{library_soversion} -p /sbin/ldconfig
|
||||
|
||||
%files -n %{name}-bin
|
||||
%{_bindir}/s3
|
||||
|
||||
%files -n lib%{name}%{library_soversion}
|
||||
%files -n lib%{name}-%{library_soversion}
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{_libdir}/*.so.%{library_soversion}
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c4294d34afc56a754ac69b96c2bb738f135b20c24a5bc94e9ba874f2c11c188e
|
||||
size 337854
|
3
v0.5.9.tar.gz
Normal file
3
v0.5.9.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7a337195b295406658d163b6dac64ff81f7556291b8a8e79e58ebaa2d55178ee
|
||||
size 335313
|
Loading…
Reference in New Issue
Block a user