libdata-record-perl 0.02-6 source package in Ubuntu

Changelog

libdata-record-perl (0.02-6) unstable; urgency=medium

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

 -- Jelmer Vernooij <email address hidden>  Sat, 19 Nov 2022 18:02:46 +0000

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
libdata-record-perl_0.02-6.dsc 2.1 KiB a118eaa063cc54f51b5a4e3c59882dc9235727770e74e30ce1cac71cad8fa285
libdata-record-perl_0.02.orig.tar.gz 6.9 KiB 1d6ae66da2767520c21fbf12c538f1007ab27445d92c8eac763653f2b8849ebf
libdata-record-perl_0.02-6.debian.tar.xz 3.4 KiB eae65cacaa95aeab554bd48971d1fc4b19d0e1d041c1fe614ad1eff9d86cff2a

Available diffs

No changes file available.

Binary packages built by this source

libdata-record-perl: "split" on steroids

 Sometimes we need data split into records and a simple split on the
 input record separator (C<$/>) or some other value fails because the
 values we're splitting on may allowed in other parts of the data.
 Perhaps they're quoted. Perhaps they're embedded in other data which
 should not be split up.
 .
 Data::Record allows you to specify what you wish to split the data on,
 but also speficy an "unless" regular expression. If the text in
 question matches the "unless" regex, it will not be split there. This
 allows us to do things like split on newlines unless newlines are
 embedded in quotes.