libnamespace-clean-perl 0.26-1 source package in Ubuntu

Changelog

libnamespace-clean-perl (0.26-1) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend

  [ gregor herrmann ]
  * Add debian/upstream/metadata.
  * Import upstream version 0.26.
  * Update years of packaging copyright.
  * Mark package as autopkgtest-able.
  * Declare compliance with Debian Policy 3.9.6.
  * Bump debhelper compatibility level to 9.

 -- gregor herrmann <email address hidden>  Sun, 18 Oct 2015 19:15:27 +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
Xenial release universe perl

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libnamespace-clean-perl_0.26-1.dsc 2.6 KiB 90cb8632f138adb57e019ce94ba8e1fd79160a6ccc3277873b55a549570f3e9e
libnamespace-clean-perl_0.26.orig.tar.gz 15.1 KiB 73986e19c4ad0e634e35f4f26e81437f152d8026eb1d91fe795725746ce13eca
libnamespace-clean-perl_0.26-1.debian.tar.xz 4.0 KiB f3dd9f4d4e25bfe197fab8cdd8ec538762a9c5f045910ea3bf448048ea44a28c

Available diffs

No changes file available.

Binary packages built by this source

libnamespace-clean-perl: module for keeping imports and functions out of the current namespace

 namespace::clean is a Perl pragma for keeping imported functions out of the
 current namespace. This is especially important because Perl functions are
 naturally available as methods, which can complicate subclassing.
 .
 Using the namespace::clean pragma will remove all previously declared or
 imported symbols at the end of the current package's compile cycle. This
 means that functions called in the package itself will still be bound by
 their name, but they won't show up as methods on your class or instances.