Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

s3backer-1.6.3-bp154.1.23 RPM for x86_64

From OpenSuSE Leap 15.4 for x86_64

Name: s3backer Distribution: SUSE Linux Enterprise 15 SP4
Version: 1.6.3 Vendor: openSUSE
Release: bp154.1.23 Build date: Thu May 12 02:28:40 2022
Group: System/Filesystems Build host: lamb51
Size: 201228 Source RPM: s3backer-1.6.3-bp154.1.23.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/archiecobbs/s3backer
Summary: FUSE-based single file backing store via Amazon S3
s3backer is a filesystem that contains a single file backed by the Amazon
Simple Storage Service (Amazon S3).  As a filesystem, it is very simple:
it provides a single normal file having a fixed size.  Underneath, the
file is divided up into blocks, and the content of each block is stored
in a unique Amazon S3 object.  In other words, what s3backer provides is
really more like an S3-backed virtual hard disk device, rather than a
filesystem.

In typical usage, a `normal' filesystem is mounted on top of the file
exported by the s3backer filesystem using a loopback mount (or disk image
mount on Mac OS X).

Provides

Requires

License

GPL-2.0-or-later

Changelog

* Wed Oct 27 2021 Archie Cobbs <archie.cobbs@gmail.com>
  - Run spec-cleaner on spec file
* Sat Oct 02 2021 Archie Cobbs <archie.cobbs@gmail.com>
  - Upgrade to release 1.6.3
    + Fixed bug with `--listBlocks' threads doing redundant overlapping queries
    + Refactor to support multiple different compression algorithms
    + Fixed mutex handling bug in block cache (issue #152)
    + Release mutexs prior to destruction (issue #151)
    + Fixed use-after-free bug in XML parser (pr #154)
* Mon Jun 14 2021 Archie Cobbs <archie.cobbs@gmail.com>
  - Upgrade to release 1.6.2
    + Require test directory to be absolute unless `-f' flag given (issue #143)
    + Show HTTP error response payload content when `--debug-http' flag given
    + List blocks in the background; added `--listBlocksThreads' (issue #24)
    + Don't let IAM credentials expire while listing blocks (issue #146)
    + Fixed bug parsing "--configFile" inside comma-separated option list
* Wed Dec 30 2020 Archie Cobbs <archie.cobbs@gmail.com>
  - Upgrade to release 1.6.1
    + Fixed integer overflow bug setting "x-amz-meta-s3backer-filesize" (issue #141)
* Wed Dec 23 2020 Archie Cobbs <archie.cobbs@gmail.com>
  - Upgrade to release 1.6.0
    + Added `--sse-key-id' flag (issue #137)
    + Log a more useful error message when IAM credentials not found (issue #136)
    + Warn on startup if disk space is insufficient for disk cache (issue #138)
    + Added zero block cache to better handle fstrim operations (issue #139)
* Fri Oct 30 2020 Archie Cobbs <archie.cobbs@gmail.com>
  - Upgrade to release 1.5.6
    + Fixed phantom write error when server-side-encryption used (issue #135)
    + Allow bucket names with "subdirectory" for prefix (issue #130)
    + Added `--configFile' flag (issue #129)
    + Added `--accessKeyEnv' flag (issue #128)
    + Removed deprecated `--rrs' flag
* Sat Aug 22 2020 Archie Cobbs <archie.cobbs@gmail.com>
  - Upgrade to release 1.5.5
    + Added `--no-vhost' flag (issue #117)
    + Added `--blockCacheNumProtected' flag (pr #119)
    + Added `--test-errors', `--test-delays', and `--test-discard'
    + Disallow stream encryption ciphers (issue #123)
* Tue Oct 08 2019 <archie.cobbs@gmail.com>
  - Upgrade to release 1.5.4
    + Only set "x-amz-server-side-encryption" header with PUT requests (issue #116)
    + Don't kill IAM thread unless actually started (issue #115).
* Fri Aug 09 2019 <archie.cobbs@gmail.com>
  - Update to release 1.5.3
    + Fixed bug where IAM update thread was killed after fork (issue #115)
    + Fixed use-after-free bug in block_cache_verified() (issue #113)
    + Fixed use-after-free bug when updating IAM credentials (pr #114)
    + Fixed bug in test mode that was causing bogus I/O errors
* Tue Jul 09 2019 <archie.cobbs@gmail.com>
  - Update to release 1.5.2
    + Fixed bug where block cache would not work when run in the background (issue #112)
    + Fixed bug where we were not parsing HTTP headers case-insensitively (pr #11)
    + Bail out during `--listBlocks' if we see an object name past our block range
    + Added `--blockHashPrefix' flag (issue #80)
* Mon Apr 15 2019 archie.cobbs@gmail.com
  - Update to release 1.5.1
    + Fixed a few places where fixed-sized buffers were too small (issue #108)
    + Don't claim cache hit if partial write required reading the block (pr #103)
    + Exit process with error code if s3backer store setup fails at startup
    + Reset statistics if stats file is unlinked (issue #106)
* Sat Jun 09 2018 archie.cobbs@gmail.com
  - Update to release 1.5.0
    + Add support for recovering dirty blocks in the disk cache (issue #87)
    + Replaced boolean 'mounted' flag with a unique 32-bit mount token (issue #87)
    + Wait for min_write_delay before access after write error (issue #76)
    + Configure TCP keep-alive on HTTP connections (issue #78)
    + Added support for server side encryption (pull #81)
* Wed Feb 01 2017 archie.cobbs@gmail.com
  - Update to release 1.4.4
    + Added `--defaultContentEncoding' for non-compliant backends (issue #68)
    + Fixed auth bug when prefix contains URL-encodable char (issue #69)
    + Remove restriction preventing streaming encryption modes (issue #70)
* Mon Jul 25 2016 archie.cobbs@gmail.com
  - Update to release 1.4.3
    + Add support for STANDARD_IA storage class (issue #59)
    + Set "Accept-Encoding" header appropriately (issue #48)
    + Fix build issue with OpenSSL 1.1.0 (issue #64)
* Tue Sep 01 2015 archie@dellroad.org
  - Update to release 1.4.2
    + Update license to fix OpenSSL vs. GPL conflict
* Mon May 04 2015 archie@dellroad.org
  - Update to release 1.4.1
    + Fix use-after-free bug configuring base URL (github issue #44)
* Fri Apr 17 2015 archie@dellroad.org
  - Update to release 1.4.0
    + Added support for authentication version 4 (issue #51)
    + Added support for credentials via IAM role from EC2 meta-data (issue #48)
    + Fixed bug where `--erase' did not clear the mounted flag
    + Moved from Google project hosting to GitHub
    + Fixed compile problem on FreeBSD

Files

/usr/bin/s3backer
/usr/share/doc/packages/s3backer
/usr/share/doc/packages/s3backer/CHANGES
/usr/share/doc/packages/s3backer/COPYING
/usr/share/doc/packages/s3backer/README
/usr/share/doc/packages/s3backer/TODO
/usr/share/man/man1/s3backer.1.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 17:13:04 2024