libapache2-reload-perl 0.12-3 source package in Ubuntu

Changelog

libapache2-reload-perl (0.12-3) unstable; urgency=medium


  * debian/control: remove Nicholas Bamber from Uploaders on request of
    the MIA team.
  * Strip trailing slash from metacpan URLs.
  * Add patch from mod_perl upstream to fix build failure with Perl 5.20.
    Thanks to Niko Tyni for digging out the patch. (Closes: #754999)
  * Update years of packaging copyright.
  * Declare compliance with Debian Policy 3.9.5.

 -- gregor herrmann <email address hidden>  Thu, 17 Jul 2014 23:52:00 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Utopic: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libapache2-reload-perl_0.12-3.dsc 2.3 KiB d3c95b461dcc51d2f87ec1c2770a5bf35e725ff1e2b126e69e83297dca957ab7
libapache2-reload-perl_0.12.orig.tar.gz 18.6 KiB f688ab7ab8f5d315d1ade235111fc475ebeb98bb688cd9f1bc0ccd88a6dda219
libapache2-reload-perl_0.12-3.debian.tar.xz 3.6 KiB 9ecb9d57a516105c4fdb0d0eb75be1c4c986218b89a2f6dd089aa5afe419d678

Available diffs

No changes file available.

Binary packages built by this source

libapache2-reload-perl: 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.