File: control

package info (click to toggle)
libapache2-reload-perl 0.13-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 152 kB
  • ctags: 26
  • sloc: perl: 327; makefile: 19
file content (32 lines) | stat: -rw-r--r-- 1,478 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
Source: libapache2-reload-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>,
           gregor herrmann <gregoa@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: perl,
                     apache2-dev,
                     libapache2-mod-perl2,
                     libapache2-mod-perl2-dev
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libapache2-reload-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libapache2-reload-perl.git
Homepage: https://metacpan.org/release/Apache-Reload

Package: libapache2-reload-perl
Architecture: all
Depends: ${perl:Depends},
         ${misc:Depends},
         libapache2-mod-perl2
Description: module for reloading Perl modules when changed on disk
 Apache2::Reload reloads modules that change on the disk.
 .
 When Perl pulls a file via "require", it stores the filename in the global
 hash %INC. The next time Perl tries to "require" the same file, it sees the
 file in %INC and does not reload from disk. This module's handler can be
 configured to iterate over the modules in %INC and reload those that have
 changed on disk. It can also monitor only specific modules that have
 registered themselves with Apache2::Reload. It is possible to trigger the
 check only when a special touch-file has been modified, minimizing the number
 of stat() calls per request.