sleepenh 1.7-2 source package in Ubuntu

Changelog

sleepenh (1.7-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * Bump debhelper from old 11 to 13.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Repository.

  [ Helmut Grohne ]
  * Fix FTCBFS: Let dh_auto_build pass a CC to make. (Closes: #1029271)

  [ Nicolas Schier ]
  * Bump standards version to 4.6.2 (no changes required)
  * Add Changelog and Repository-Browse to upstream metadata

 -- Nicolas Schier <email address hidden>  Wed, 27 Sep 2023 13:21:27 +0200

Upload details

Uploaded by:
Nicolas Schier
Uploaded to:
Sid
Original maintainer:
Nicolas Schier
Architectures:
any
Section:
utils
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe utils
Noble release universe utils

Downloads

File Size SHA-256 Checksum
sleepenh_1.7-2.dsc 1.7 KiB c977cf61cc45460fcdfc166d95e518b2174888860f05d96e6b941506780c9ec0
sleepenh_1.7.orig.tar.xz 4.6 KiB 96400b2a9722ff7c37269a38689514e2894bbe980107f24dad475e6bb215548e
sleepenh_1.7-2.debian.tar.xz 3.2 KiB 558f02d61f4fb305fcbcf498ced1e7092430da37cfc39aedb704bb3e6d1cd9ce

Available diffs

No changes file available.

Binary packages built by this source

sleepenh: Sleep until a given date with subsecond resolution

 sleepenh is a sleep program for shell scripts that need to
 perform a loop that repeats at a regular time interval, without
 cumulative errors.
 .
 It supports microsecond resolution.
 .
 You can also specify the time you need between two calls
 of sleepenh.
 .
 Here follows an usage example to clarify its purpose. This
 example sends 'A' to ttyS0 every 1.2 seconds.
   #!/bin/sh
   # does not wait (or wait 0), just to get initial timestamp
   TIMESTAMP=$(sleepenh 0)
   while true; do
     # send the byte to ttyS0
     echo -n "A" > /dev/ttyS0;
     # wait until the required time
     TIMESTAMP=$(sleepenh $TIMESTAMP 1.200);
   done
 .
 For more details, please read the manpage.

sleepenh-dbgsym: debug symbols for sleepenh