libapache2-reload-perl 0.13-5 source package in Ubuntu

Changelog

libapache2-reload-perl (0.13-5) unstable; urgency=medium

  * Fix clean target.
  * Update years of packaging copyright.
  * Declare compliance with Debian Policy 4.6.2.
  * Set Rules-Requires-Root: no.

 -- gregor herrmann <email address hidden>  Sun, 06 Aug 2023 02:53:20 +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
Mantic release main perl

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libapache2-reload-perl_0.13-5.dsc 2.5 KiB be23090893b227a1abd81ce29d9a00d16e8f14e5b8b0b9ebdc4d22521169b27d
libapache2-reload-perl_0.13.orig.tar.gz 18.5 KiB c8d0bfc1c18f0f0de39f4ad7f374f1a66a22daa3d1120f6deac2b8c550aa296a
libapache2-reload-perl_0.13-5.debian.tar.xz 4.6 KiB 529db982fc6efaf631d33be693e10f9e1a355175a93120c0550b335908a8e4dc

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.