libaccessors-perl 1.01-3 source package in Ubuntu

Changelog

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

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

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from deprecated 8 to 12.
  * Set debhelper-compat version in Build-Depends.

 -- Salvatore Bonaccorso <email address hidden>  Sun, 05 Jun 2022 17:57:57 +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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libaccessors-perl_1.01-3.dsc 2.0 KiB 757f8dfca01d4fc50963692ed0a125d812d581d9bc3bb74f182b9adf74d435a1
libaccessors-perl_1.01.orig.tar.gz 8.4 KiB 3a8db00f38148f3afadbe5330dc5490d9933f9cae137e842ec225a4d3adb2d9f
libaccessors-perl_1.01-3.debian.tar.xz 2.5 KiB f761569b1d5ee6689201319d595e99c812e8c72a8e14e994b924654fcaac6bb8

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.