libsub-delete-perl 1.00002-4 source package in Ubuntu

Changelog

libsub-delete-perl (1.00002-4) unstable; urgency=medium

  * Team upload.
  * Add patch from CPAN RT to fix deprecation warnings. (Closes: #1050447)
  * Declare compliance with Debian Policy 4.6.2.
  * Set Rules-Requires-Root: no.

 -- gregor herrmann <email address hidden>  Fri, 25 Aug 2023 17:54:18 +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
Plucky release universe perl
Oracular release universe perl
Noble release universe perl

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libsub-delete-perl_1.00002-4.dsc 2.3 KiB b38587862639b5b7d7f69048cdc4327f6d25babc5213ae6ac7f8f60f759dcc5b
libsub-delete-perl_1.00002.orig.tar.gz 30.7 KiB 4435a70b01a80d6e91dd3749f29734cf2c36207e7aeb537d8c96d231fe2951ee
libsub-delete-perl_1.00002-4.debian.tar.xz 3.2 KiB 376924fda208e7a8dd61a7151e709976e701700995a6d1bc66d7b541f95e083a

Available diffs

No changes file available.

Binary packages built by this source

libsub-delete-perl: Perl module to delete subroutines

 Sub::Delete provides one function, delete_sub, that deletes the subroutine
 whose name is passed to it. (To load the module without importing the
 function, write use Sub::Delete();.)
 .
 This does more than simply undefine the subroutine in the manner of undef
 &foo, which leaves a stub that can trigger AUTOLOAD (and, consequently, won't
 work for deleting methods). The subroutine is completely obliterated from the
 symbol table (though there may be references to it elsewhere, including in
 compiled code).