libclass-virtual-perl 0.08-3 source package in Ubuntu

Changelog

libclass-virtual-perl (0.08-3) unstable; urgency=medium

  * Team upload.
  * Reupload with tarball from the archive.
  * Update debian/upstream/metadata.
  * Declare compliance with Debian Policy 4.6.1.
  * Set Rules-Requires-Root: no.
  * Annotate test-only build dependencies with <!nocheck>.
  * Update short and long description.

 -- gregor herrmann <email address hidden>  Sun, 12 Jun 2022 13:58:28 +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 universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libclass-virtual-perl_0.08-3.dsc 2.4 KiB 197c18dea9068f70d7f40098f3ac9be5d6ad109cbf298c718d6feccbb6d114bd
libclass-virtual-perl_0.08.orig.tar.gz 6.7 KiB c6499b42d3b4e5c6488a5e82fbc28698e6c9860165072dddfa6749355a9cfbb2
libclass-virtual-perl_0.08-3.debian.tar.xz 2.5 KiB f840ebc2811abf71b7c06fe8d1dec9fbe18cd5925fbb70c914650b9d5f90dcee

Available diffs

No changes file available.

Binary packages built by this source

libclass-virtual-perl: base class for virtual base classes

 Class::Virtual is a base class for implementing virtual base classes (what
 some people call an abstract class). Kinda kooky. It allows you to explicitly
 declare what methods are virtual and that must be implemented by subclasses.
 This might seem silly, since your program will halt and catch fire when an
 unimplemented virtual method is hit anyway, but there's some benefits.
 .
 The error message is more informative. Instead of the usual "Can't locate
 object method" error, you'll get one explaining that a virtual method was
 left unimplemented.
 .
 Subclass authors can explicitly check to make sure they've implemented all
 the necessary virtual methods. When used as part of a regression test, it
 will shield against the virtual method requirements changing out from under
 the subclass.