libtest-bits-perl 0.02-3 source package in Ubuntu

Changelog

libtest-bits-perl (0.02-3) unstable; urgency=medium

  [ gregor herrmann ]
  * debian/copyright: replace tabs with spaces / remove trailing
    whitespace.
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 11 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Remove obsolete fields Contact, Name from debian/upstream/metadata (already
    present in machine-readable debian/copyright).
  * Update standards version to 4.5.0, no changes needed.
  * Remove constraints unnecessary since buster:
    + Build-Depends-Indep: Drop versioned constraint on perl.
  * Bump debhelper from old 12 to 13.
  * Update standards version to 4.5.1, no changes needed.
  * Update standards version to 4.6.1, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Sun, 20 Nov 2022 11:59:12 +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
libtest-bits-perl_0.02-3.dsc 2.1 KiB 491841f8954f9b2fb5be10e0ef824b18b613d2f9f64b3de2f2aa8ee2bb18b3b7
libtest-bits-perl_0.02.orig.tar.gz 9.4 KiB a9826f56483a27e2c63156590f328a3633e30375c10dfc89f6690e3929de0bc3
libtest-bits-perl_0.02-3.debian.tar.xz 4.9 KiB a992075e87b4aaff8abc6312ca55e6dc87ab0ca9de904132f64664d0a705c470

Available diffs

No changes file available.

Binary packages built by this source

libtest-bits-perl: Perl module for testing binary data

 Test::Bits provides a single subroutine, bits_is(), for testing binary data.
 .
 This module is quite similar to Test::BinaryData and Test::HexString in
 concept. The difference is that this module shows failure diagnostics in a
 different way, and has a slightly different calling style. Depending on the
 nature of the data you're working with, this module may be easier to work
 with.
 .
 In particular, when you're doing a lot of bit twiddling, this module's
 diagnostic output may make it easier to diagnose failures. A typical failure
 diagnostic will look like this:
 .
 The two pieces of binary data are not the same length (got 2, expected 3).
 .
 Binary data begins differing at byte 1.
 .
 Got: 01111000
 .
 Expect: 01111001