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

Changelog

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

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/*: update URLs from {search,www}.cpan.org to MetaCPAN.

  [ Debian Janitor ]
  * Use secure copyright file specification URI.

 -- Jelmer Vernooij <email address hidden>  Sun, 12 Jun 2022 23:12:28 +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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libdata-record-perl_0.02-5.dsc 2.1 KiB 354ffc01f0d32fb1fa7f883ad7146bea5541bc9e9cec32598b4c77ca8da91cba
libdata-record-perl_0.02.orig.tar.gz 6.9 KiB 1d6ae66da2767520c21fbf12c538f1007ab27445d92c8eac763653f2b8849ebf
libdata-record-perl_0.02-5.debian.tar.xz 3.3 KiB 3282fdf8ee0bf236afd202fdc2ecc5a792d9f84c5f58351074ed410ce995e102

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.