libtest-memory-cycle-perl 1.06-2 source package in Ubuntu

Changelog

libtest-memory-cycle-perl (1.06-2) unstable; urgency=medium

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * Remove Ryan Niebur from Uploaders. Thanks for your work!

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 9 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright).

 -- Jelmer Vernooij <email address hidden>  Fri, 17 Jun 2022 12:24:11 +0100

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 universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtest-memory-cycle-perl_1.06-2.dsc 2.2 KiB 27574f741ddb47a0c04575016489165f779b5b1a44636f44ea49e2b48b6e2e03
libtest-memory-cycle-perl_1.06.orig.tar.gz 8.7 KiB 9d53ddfdc964cd8454cb0da4c695b6a3ae47b45839291c34cb9d8d1cfaab3202
libtest-memory-cycle-perl_1.06-2.debian.tar.xz 5.4 KiB f762a5d31b8a79d09831441362fc6779c898460fb9aae401e2c2d0ca29210bc9

Available diffs

No changes file available.

Binary packages built by this source

libtest-memory-cycle-perl: Perl module that verifies code hasn't left circular references

 Test::Memory::Cycle checks for memory leaks and circular memory
 references. It's a thin Test::More-compatible wrapper around Lincoln
 Stein's Devel::Cycle module.
 .
 Perl's garbage collection has one big problem: Circular references
 can't get cleaned up. A circular reference can be as simple as two
 reference that refer to each other. Test::Memory::Cycle is built on
 top of Devel::Cycle to give you an easy way to check for these
 circular references. You can also use memory_cycle_exists() to make
 sure that you have a cycle where you expect to have one.