libapache2-reload-perl 0.14-1 source package in Ubuntu

Changelog

libapache2-reload-perl (0.14-1) unstable; urgency=medium

  * Import upstream version 0.14.
  * Drop spelling.patch, applied upstream.

 -- gregor herrmann <email address hidden>  Sun, 24 Sep 2023 18:38:48 +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
Oracular release main perl
Noble release main perl

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libapache2-reload-perl_0.14-1.dsc 2.5 KiB bc96fb12fdd8d5c941a3b08f2cc2a3ff407cab6b6bb8b5b36503088d6c7e04bc
libapache2-reload-perl_0.14.orig.tar.gz 18.9 KiB f4f56508e4a9fd8f9488aea6be8e7e7180774e820aa982b1afb7a2dd33c4ba61
libapache2-reload-perl_0.14-1.debian.tar.xz 4.3 KiB a1b73e9200a843daefc6e091ecb2ee9d86bcea956f123c6097a34d41b1079fb6

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.