File: control

package info (click to toggle)
patiencediff 0.2.13-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 264 kB
  • sloc: ansic: 922; python: 711; makefile: 6; sh: 1
file content (33 lines) | stat: -rw-r--r-- 1,288 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
Source: patiencediff
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Jelmer Vernooij <jelmer@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-python,
               python3,
               python3-all-dev,
               python3-setuptools
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/python-team/packages/patiencediff
Vcs-Git: https://salsa.debian.org/python-team/packages/patiencediff.git
Homepage: https://github.com/breezy-team/patiencediff
Rules-Requires-Root: no

Package: python3-patiencediff
Architecture: any
Depends: ${misc:Depends},
         ${python3:Depends},
         ${shlibs:Depends}
Description: diff implementation with balanced performance, output and implementation
 This package contains the implementation of the ``patiencediff`` algorithm, as
 first described by Bram Cohen.
 .
 Like Python's ``difflib``, this module provides both a convience
 ``unified_diff`` function for the generation of unified diffs of text files as
 well as a SequenceMatcher that can be used on arbitrary lists.
 .
 Patiencediff provides a good balance of performance, nice output for humans,
 and implementation simplicity.
 .
 This package contains the Python 3 version of the library.