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

Changelog

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

  * Team upload.

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * debian/upstream/metadata: change GitHub/CPAN URL(s) to HTTPS.

  [ Lucas Kanashiro ]
  * Import upstream version 0.27
  * Update debian/upstream/metadata
  * Declare compliance with Debian policy 3.9.8
  * debian/control: update dependencies

  [ gregor herrmann ]
  * Remove debian/tests/pkg-perl/use-name. Not needed anymore.

 -- Lucas Kanashiro <email address hidden>  Fri, 03 Jun 2016 17:06:44 -0300

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
Jammy release main perl
Focal release main perl
Bionic release main perl

Builds

Yakkety: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libnamespace-clean-perl_0.27-1.dsc 2.6 KiB 7431837d97805b9adb276a46d18f9f9556b93df513a19b941bd35e5af8bdbd75
libnamespace-clean-perl_0.27.orig.tar.gz 17.4 KiB 8a10a83c3e183dc78f9e7b7aa4d09b47c11fb4e7d3a33b9a12912fd22e31af9d
libnamespace-clean-perl_0.27-1.debian.tar.xz 4.1 KiB 55c033282b1d025dcbaa717f0c637be5d8d85542d5c8f6ab89aa6e6376adb895

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.