libstruct-dumb-perl 0.14-1 source package in Ubuntu

Changelog

libstruct-dumb-perl (0.14-1) unstable; urgency=medium

  * Import upstream version 0.14.
  * Update test dependencies.
  * Update years of upstream and packaging copyright.
  * Declare compliance with Debian Policy 4.6.2.

 -- gregor herrmann <email address hidden>  Tue, 14 Feb 2023 22:41:45 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libstruct-dumb-perl_0.14-1.dsc 2.4 KiB aa18f7ffa7bfc7f622084865144d49eb12537d60d343d361b0134086865dae56
libstruct-dumb-perl_0.14.orig.tar.gz 17.9 KiB 13c148536b10e28c6e0b4e132f29e4ca6e69b5749059c44157a27e84a5459436
libstruct-dumb-perl_0.14-1.debian.tar.xz 2.6 KiB 4860a6d4c3436d211eea951f60bc6770196ebbebcdaa122353f4aab2d7b95db9

Available diffs

No changes file available.

Binary packages built by this source

libstruct-dumb-perl: module to create simple lightweight record-like structures

 Struct::Dumb creates record-like structure types, similar to the struct
 keyword in C, C++ or C#, or Record in Pascal. An invocation of this module
 will create a construction function which returns new object references with
 the given field values. These references all respond to lvalue methods that
 access or modify the values stored.
 .
 It's specifically and intentionally not meant to be an object class. You
 cannot subclass it. You cannot provide additional methods. You cannot apply
 roles or mixins or metaclasses or traits or antlers or whatever else is in
 fashion this week.
 .
 On the other hand, it is tiny, creates cheap lightweight array-backed
 structures, uses nothing outside of core. It's intended simply to be a
 slightly nicer way to store data structures, where otherwise you might be
 tempted to abuse a hash, complete with the risk of typoing key names. The
 constructor will croak if passed the wrong number of arguments, as will
 attempts to refer to fields that don't exist.