~ubuntu-branches/ubuntu/utopic/libcgi-application-plugin-stream-perl/utopic

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2013-12-23 20:13:46 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20131223201346-x6gy06702g1judoc
Tags: 2.11-1
* Team upload.
* New upstream release.
* Drop 0001-Fix-a-test-failure-due-triggered-by-hash-randomizati.patch.
  Merged  upstream.
* Update build dependencies.
* Declare compliance with Debian Policy 3.9.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Source: libcgi-application-plugin-stream-perl
 
2
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
 
3
Uploaders: Nicholas Bamber <nicholas@periapt.co.uk>,
 
4
           Jaldhar H. Vyas <jaldhar@debian.org>
2
5
Section: perl
3
6
Priority: optional
4
 
Build-Depends: debhelper (>= 8)
5
 
Build-Depends-Indep: perl, libcgi-application-perl, libfile-mmagic-perl,
6
 
 libtest-pod-perl, libtest-pod-coverage-perl
7
 
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
8
 
Uploaders: Nicholas Bamber <nicholas@periapt.co.uk>,
9
 
 Jaldhar H. Vyas <jaldhar@debian.org>
10
 
Standards-Version: 3.9.4
 
7
Build-Depends: debhelper (>= 8),
 
8
               perl (>= 5.13.11) | libmodule-build-perl (>= 0.380000)
 
9
Build-Depends-Indep: perl,
 
10
                     libcgi-application-perl,
 
11
                     libfile-mmagic-perl,
 
12
                     libtest-pod-perl,
 
13
                     libtest-pod-coverage-perl
 
14
Standards-Version: 3.9.5
 
15
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libcgi-application-plugin-stream-perl.git
 
16
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libcgi-application-plugin-stream-perl.git
11
17
Homepage: https://metacpan.org/release/CGI-Application-Plugin-Stream/
12
 
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libcgi-application-plugin-stream-perl.git
13
 
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libcgi-application-plugin-stream-perl.git
14
18
 
15
19
Package: libcgi-application-plugin-stream-perl
16
20
Architecture: all
17
 
Depends: ${misc:Depends}, ${perl:Depends}, libcgi-application-perl,
18
 
 libfile-mmagic-perl
 
21
Depends: ${misc:Depends},
 
22
         ${perl:Depends},
 
23
         libcgi-application-perl,
 
24
         libfile-mmagic-perl
19
25
Breaks: libcgi-application-basic-plugin-bundle-perl (<< 0.6),
20
 
 libcgi-application-plugins-perl (<< 0.11)
 
26
        libcgi-application-plugins-perl (<< 0.11)
21
27
Replaces: libcgi-application-basic-plugin-bundle-perl (<< 0.6),
22
 
 libcgi-application-plugins-perl (<< 0.11)
 
28
          libcgi-application-plugins-perl (<< 0.11)
23
29
Description: plugin that adds file streaming support to CGI::Application
24
30
 CGI::Application::Plugin::Stream provides a way to stream a file back to the
25
31
 user from a CGI::Application module. This is useful if you are creating a PDF
26
32
 or Spreadsheet document dynamically to deliver to the user. The file is read
27
33
 and printed in small chunks to keep memory consumption down. If you pass
28
34
 along a filehandle it will be automatically closed on completion.
29