libdata-validate-perl 0.09-3 source package in Ubuntu

Changelog

libdata-validate-perl (0.09-3) unstable; urgency=medium

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

 -- Jelmer Vernooij <email address hidden>  Fri, 14 Oct 2022 00:32:25 +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
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libdata-validate-perl_0.09-3.dsc 2.1 KiB 9dc7eb557d71d2839f514f7fab1d7ffb7499d22a739f80b25104ca76f1a99d6e
libdata-validate-perl_0.09.orig.tar.gz 12.4 KiB ff55c4a993af203482748806d5210189f4f32e1c939fa13d82ad32cbc379c7eb
libdata-validate-perl_0.09-3.debian.tar.xz 2.3 KiB bc433f1885325438c99894e7829f1d8e62b1fce0f7cbf024e89226aa511f38b2

Available diffs

No changes file available.

Binary packages built by this source

libdata-validate-perl: module providing common data validation routines for strings/numbers

 Data::Validate collects common validation routines to make input validation,
 and untainting easier and more readable. Most of the functions are not much
 shorter than their direct perl equivalent (and are much longer in some
 cases), but their names make it clear what you're trying to test for (e.g.
 is_integer(), is_hex(), is_alphanumeric()...).
 .
 Almost all functions return an untainted value if the test passes, and undef
 if it fails. This means that you should always check for a defined status
 explicitly. Don't assume the return will be true. (e.g. is_integer(0))