libaccessors-perl 1.01-4 source package in Ubuntu

Changelog

libaccessors-perl (1.01-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libaccessors-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 13 Oct 2022 23:13:56 +0100

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
Questing release universe perl
Plucky release universe perl
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libaccessors-perl_1.01-4.dsc 2.0 KiB 163ec3a791d11807dea7943da012a65b9104b491fc9876c5772740113380b50a
libaccessors-perl_1.01.orig.tar.gz 8.4 KiB 3a8db00f38148f3afadbe5330dc5490d9933f9cae137e842ec225a4d3adb2d9f
libaccessors-perl_1.01-4.debian.tar.xz 2.6 KiB 3bdd0bb1c16c5a3c6eb57d147e63841f5f6947144cd79a1a52aaef325eaf6d71

Available diffs

No changes file available.

Binary packages built by this source

libaccessors-perl: Perl module to create accessor methods in caller's package

 The accessors pragma lets you create simple accessors at compile-time.
 .
 This saves you from writing them by hand, which tends to result in
 cut-n-paste errors and a mess of duplicated code. It can also help you reduce
 the amount of unwanted direct-variable access that may creep into your
 codebase when you're feeling lazy. accessors was designed with laziness in
 mind.
 .
 Method-chaining accessors are generated by default. Note that you can still
 use accessors::chained directly for reasons of backwards compatibility.
 .
 See accessors::classic for accessors that always return the current value if
 you don't like method chaining.