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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
Source: pysendfile
Section: python
Priority: optional
Maintainer: Ghe Rivero <ghe@debian.org>
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Standards-Version: 3.9.6
Build-Depends: debhelper (>= 8.1.0~),
python-all-dev (>=2.6.6~3),
python-all-dbg,
python3-all-dev,
python3-all-dbg,
dh-python,
debhelper (>= 11)
Vcs-Browser: https://salsa.debian.org/python-team/modules/pysendfile
Vcs-Git: https://salsa.debian.org/python-team/modules/pysendfile.git
Homepage: https://github.com/giampaolo/pysendfile
Package: python-sendfile
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends},
${python:Depends}
Description: Python interface to sendfile(2)
Python library which provides a "zero-copy" way of copying data from one
file descriptor to another (a socket). The phrase "zero-copy" refers to
the fact that all of the copying of data between the two descriptors is
done entirely by the kernel, with no copying of data into userspace buffers.
This is particularly useful when sending a file over a socket (e.g. FTP).
Package: python-sendfile-dbg
Section: debug
Architecture: any
Multi-Arch: same
Depends: python-sendfile (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends},
${python:Depends}
Recommends: python-dbg
Provides: ${python:Provides}
Description: Python interface to sendfile(2) (debug)
Python library which provides a "zero-copy" way of copying data from one
file descriptor to another (a socket). The phrase "zero-copy" refers to
the fact that all of the copying of data between the two descriptors is
done entirely by the kernel, with no copying of data into userspace buffers.
This is particularly useful when sending a file over a socket (e.g. FTP).
.
This package contains the extension built for the Python 2 debug interpreter.
Package: python3-sendfile
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends},
${python3:Depends}
Description: Python interface to sendfile(2)
Python library which provides a "zero-copy" way of copying data from one
file descriptor to another (a socket). The phrase "zero-copy" refers to
the fact that all of the copying of data between the two descriptors is
done entirely by the kernel, with no copying of data into userspace buffers.
This is particularly useful when sending a file over a socket (e.g. FTP).
Package: python3-sendfile-dbg
Section: debug
Architecture: any
Multi-Arch: same
Depends: python3-sendfile (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends},
${python3:Depends}
Recommends: python3-dbg
Provides: ${python3:Provides}
Description: Python interface to sendfile(2) (debug)
Python library which provides a "zero-copy" way of copying data from one
file descriptor to another (a socket). The phrase "zero-copy" refers to
the fact that all of the copying of data between the two descriptors is
done entirely by the kernel, with no copying of data into userspace buffers.
This is particularly useful when sending a file over a socket (e.g. FTP).
.
This package contains the extension built for the Python 3 debug interpreter.
|