File: control

package info (click to toggle)
librsync 2.3.4-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,204 kB
  • sloc: ansic: 4,956; sh: 245; xml: 182; perl: 30; makefile: 21
file content (57 lines) | stat: -rw-r--r-- 2,374 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Source: librsync
Section: libs
Priority: optional
Maintainer: Andrey Rakhmatullin <wrar@debian.org>
Build-Depends: dpkg-dev (>= 1.22.5),
 debhelper-compat (= 13), cmake, libpopt-dev, libb2-dev
Standards-Version: 4.6.2
Homepage: https://github.com/librsync/librsync
Vcs-Git: https://salsa.debian.org/wrar/librsync.git
Vcs-Browser: https://salsa.debian.org/wrar/librsync
Rules-Requires-Root: no

Package: librsync2t64
Provides: ${t64:Provides}
Replaces: librsync2
Breaks: librsync2 (<< ${source:Version})
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: rsync remote-delta algorithm library
 librsync implements the rsync remote-delta algorithm, which allows for
 efficient remote updates of a file, without requiring the old and new versions
 to both be present at the transmitter. The library uses a stream-based designed
 so that it can be easily embedded into network applications.
 .
 librsync is used by rdiff-backup and duplicity backup applications.

Package: librsync-dev
Section: libdevel
Architecture: any
Depends:
 ${misc:Depends}, librsync2t64 (= ${binary:Version}), libpopt-dev
Conflicts: librsync1
Multi-Arch: same
Description: rsync remote-delta algorithm library (development)
 librsync implements the rsync remote-delta algorithm, which allows for
 efficient remote updates of a file, without requiring the old and new versions
 to both be present at the transmitter. The library uses a stream-based designed
 so that it can be easily embedded into network applications.
 .
 This package contains the development files.

Package: rdiff
Section: utils
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Binary diff tool for signature-based differences
 rdiff is a little like diff and patch all rolled into one, with support for
 binary files. Since it takes advantage of the rsync remote-delta algorithm, you
 do not need the source file in the same place as your destination file.
 .
 To use it, you generate a "signature" of the original file and copy the
 signature (which is very small) to the same location as the modified file. Then
 you generate a "delta" which describes the changes required to turn the source
 file into the modified file. The small delta file can then be used to "patch"
 the original file, to transform it into the modified file.