libclass-prototyped-perl 1.11-3 source package in Ubuntu

Changelog

libclass-prototyped-perl (1.11-3) unstable; urgency=low

  * Team upload.

  [ gregor herrmann ]
  * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
    (source stanza).
  * debian/control: Added: ${misc:Depends} to Depends: field.
  * Change my email address.

  [ Salvatore Bonaccorso ]
  * debian/control: Changed: Replace versioned (build-)dependency on
    perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as
    permitted by Debian Policy 3.8.3).

  [ Russ Allbery ]
  * Remove myself from uploaders.
  * Update debhelper compatibility level to V8.
    - Switch from CDBS to pure dh debhelper.
    - Use debhelper rule minimization with overrides.
  * Install upstream example.
  * Change Debian source format to 3.0 (quilt).
  * Update debian/copyright to proposed DEP-5 format.
  * Merge Build-Depends and Build-Depends-Indep.  The separation is
    pointless for a source package that only builds arch-independent
    binary packages.
  * Fix a spelling error in the POD documentation reported by Lintian.
  * Rephrase the profile() method description to avoid long, unwrappable
    lines.
  * Rewrite the package long description to digest and summarize the
    information and avoid long quotes from the module documentation.
  * Add Suggests for libgraphviz-perl, used by Class::Prototyped::Graph.
  * Update standards version to 3.9.1 (no changes required).
 -- Ubuntu Archive Auto-Sync <email address hidden>   Sat,  30 Apr 2011 13:02:10 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Oneiric
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe perl

Builds

Oneiric: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libclass-prototyped-perl_1.11.orig.tar.gz 58.1 KiB bb15bf76f65e7cfe87557ac38de44a1b6b719acfc485a43c979fbd6a0b02308d
libclass-prototyped-perl_1.11-3.debian.tar.gz 4.1 KiB af03aa1513e1f184c7686b2385822af9a877a4972d9a087ad34a9c764e9bbcde
libclass-prototyped-perl_1.11-3.dsc 1.7 KiB 58bc2c98c36642fea182f2e33cce41251c4aa34970e61268a69385dceff1259d

Available diffs

View changes file

Binary packages built by this source

libclass-prototyped-perl: module for fast prototype-based OO programming in Perl

 Class:Prototyped provides for efficient and simple prototype-based
 programming in Perl. You can provide different subroutines for each
 object, and also have objects inherit their behavior and state from
 another object.
 .
 Class::Prototyped borrows heavily from the programming language Self.
 The structure of an object is inspected and modified through mirrors,
 which are created by calling "reflect" on an object or class that
 inherits from Class::Prototyped.
 .
 Prototype-based programming is most useful when the cleanest way for code
 to use a module is to subclass it, or when one finds oneself avoiding
 this by passing anonymous subroutines as parameters to "new".
 Prototype-based programming is also useful in situations that otherwise
 require storing anonymous subroutines in databases, configuration files,
 or text files, or when users of a module are expected to override
 subroutines to change its behabior.