liberror-perl 0.17024-1 source package in Ubuntu

Changelog

liberror-perl (0.17024-1) unstable; urgency=medium

  * Take over for the Debian Perl Group after talking to the security team
    which has talked to the MIA team before.
  * debian/control: Added: Vcs-Git field (source stanza); Vcs-Browser field
    (source stanza); Homepage field (source stanza); ${misc:Depends} to
    Depends: field. Changed: Maintainer set to Debian Perl Group
    <email address hidden> (was: Clint Burfoot
    <email address hidden>). Removed: Section/Priority from binary package
    stanza. Added: /me to Uploaders.
  * debian/watch: use metacpan-based URL.
  * Mark package as autopkgtest-able.
  * Declare compliance with Debian Policy 3.9.8.
  * Switch to source format "3.0 (quilt)".
  * Add explicit build dependency on libmodule-build-perl.
  * debian/rules: switch to dh(1).
  * debian/copyright: switch formatting to Copyright-Format 1.0.
  * Don't install README anymore. Just a text version of the POD/manpage.
  * Revert direct changes to the code.
    Both set of changes are not required anymore:
    - The problem from #180784 doesn't appear if the line is removed. Probably
      as a fix for CPAN RT#20643 in 0.17009.
    - The changes to the POD (minus in manpages) seem unncessary, at least
      nothing complains.

  * Import upstream version 0.17024.
  * Install new examples.
  * Update long description.

 -- gregor herrmann <email address hidden>  Sun, 17 Jul 2016 17:03:13 +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

Builds

Yakkety: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
liberror-perl_0.17024-1.dsc 2.1 KiB 3d269abc34facfde4e4caf5d2eac38dbce07739d3fe2167ff982140af513d17e
liberror-perl_0.17024.orig.tar.gz 30.5 KiB 074db7c783a67b0667eca64a4f6a0c3de94998afc92c01d6453163eb04b9150d
liberror-perl_0.17024-1.debian.tar.xz 3.9 KiB 7b490f3655df007a1153883608161822036837eaf49f7d6014d3a096be4a65cb

Available diffs

No changes file available.

Binary packages built by this source

liberror-perl: Perl module for error/exception handling in an OO-ish way

 The Error module provides two interfaces. Firstly "Error" provides a
 procedural interface to exception handling. Secondly "Error" is a base class
 for errors/exceptions that can either be thrown, for subsequent catch, or can
 simply be recorded.
 .
 Errors in the class "Error" should not be thrown directly, but the user
 should throw errors from a sub-class of "Error".
 .
 Warning: Using the "Error" module is no longer recommended due to the
 black-magical nature of its syntactic sugar, which often tends to break. Its
 maintainers have stopped actively writing code that uses it, and discourage
 people from doing so.
 .
 Recommended alternatives are Exception::Class (libexception-class-perl),
 Error::Exception (not packaged), TryCatch (libtrycatch-perl), and Try::Tiny
 (libtry-tiny-perl).