fssync 1.7-1 source package in Ubuntu

Changelog

fssync (1.7-1) unstable; urgency=medium

  * New upstream release.
    - The test suite does not fail randomly anymore (Closes: #858253).
  * Update Standards-Version to 4.6.2:
    - d/copyright: update format URL to https form
    - priority-extra-is-replaced-by-priority-optional
  * Use debhelper 13:
    - replace d/compat with a debhelper-compat build-dep.
  * Update Homepage.
  * Other fixes:
    - custom-compression-in-debian-source-options
    - debian-rules-parses-dpkg-parsechangelog
    - silent-on-rules-requiring-root (root not required)

 -- Julien Muchembled <email address hidden>  Sun, 22 Oct 2023 01:39:34 +0200

Upload details

Uploaded by:
Julien Muchembled
Uploaded to:
Sid
Original maintainer:
Julien Muchembled
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
fssync_1.7-1.dsc 1.4 KiB 3c72d7ccc5ec23b3d0f6cafc03151336072bff1e67f82a02de520ebcc51e3ec1
fssync_1.7.orig.tar.xz 31.2 KiB aceeeaeef052a9be7ba4b912a0624760dc14dfe79253df6d26faf8b58a4cb925
fssync_1.7-1.debian.tar.xz 2.9 KiB 6019fe603e2af89017ed827f678e20fa87a38915f473674c50b47960b09405f3

Available diffs

No changes file available.

Binary packages built by this source

fssync: File system synchronization tool (1-way, over SSH)

 fssync is a 1-way file-synchronization tool that tracks inodes and maintains a
 local database of files that are on the remote side, making it able to:
  - handle efficiently a huge number of dirs/files
  - detect renames/moves and hard-links
 .
 It aims at minimizing network traffic and synchronizing every detail of a file
 system:
  - all types of inode: file, dir, block/character/fifo, socket, symlink
  - preserve hard links
  - modification time, ownership/permission/ACL, extended attributes
  - sparse files
 .
 Other features:
  - it can be configured to exclude files from synchronization
  - fssync can be interrupted and resumed at any time, making it tolerant to
    random failures (e.g. network error)
  - algorithm to synchronize file content is designed to handle big files
    like VM images efficiently, by updating fixed-size modified blocks in-place
 .
 Main usage of fssync is to prevent data loss in case of hardware failure,
 where RAID1 is not possible (e.g. in laptops).
 .
 On Btrfs file systems, fssync is an useful alternative to `btrfs send` (and
 `receive`) commands, thanks to filtering capabilities. This can be combined
 with Btrfs snapshotting at destination side for a full backup solution.