File: control

package info (click to toggle)
libplack-middleware-deflater-perl 0.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192 kB
  • sloc: perl: 150; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 1,675 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
Source: libplack-middleware-deflater-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Florian Schlichting <fsfs@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
               libmodule-build-tiny-perl,
               perl
Build-Depends-Indep: libfurl-perl <!nocheck>,
                     libio-compress-perl <!nocheck>,
                     libio-handle-util-perl <!nocheck>,
                     libplack-perl <!nocheck>,
                     libtest-requires-perl <!nocheck>,
                     libtest-simple-perl <!nocheck>
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-deflater-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libplack-middleware-deflater-perl.git
Homepage: https://metacpan.org/release/Plack-Middleware-Deflater
Rules-Requires-Root: no

Package: libplack-middleware-deflater-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libio-compress-perl,
         libplack-perl
Description: middleware to compress response body with gzip or deflate
 Plack::Middleware::Deflater is a middleware to encode your response body in
 gzip or deflate, based on the Accept-Encoding HTTP request header. While
 saving a little bandwidth it will increase the Plack server load, so ideally
 you should handle this on the frontend reverse proxy servers.
 .
 This middleware removes Content-Length and streams encoded content, which
 means the server should support HTTP/1.1 chunked response or downgrade to
 HTTP/1.0 and close the connection.