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

Changelog

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

  * Team upload.
  * Remove generated test logs via debian/clean. (Closes: #1049270)
  * Declare compliance with Debian Policy 4.6.2.
  * Set Rules-Requires-Root: no.
  * Refresh lintian override (formatting).
  * d/copyright: update URL pointing to third-party license.

 -- gregor herrmann <email address hidden>  Tue, 05 Mar 2024 18:03:54 +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

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libdata-validate-perl_0.09-4.dsc 2.2 KiB 1149eb5fcef5ccbe57483656e4a598c91d8362f71db9e3afc8cce4a607b4834f
libdata-validate-perl_0.09.orig.tar.gz 12.4 KiB ff55c4a993af203482748806d5210189f4f32e1c939fa13d82ad32cbc379c7eb
libdata-validate-perl_0.09-4.debian.tar.xz 2.5 KiB ee13c5cc6136ecd630d6170aa9ef529e3a4ff027875555aa2f9d9eec166051d5

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))