cstream 2.7.6-1 source package in Ubuntu

Changelog

cstream (2.7.6-1) unstable; urgency=low

  * New upstream release.
  * Stop build-depending on autotools-dev (config.{guess,sub} no longer
    used so no longer needs overriding).
  * Bump debhelper to compat level 6. Tighten build-dependency on
    debhelper to version 6 or newer.
  * Add README.source. Drop custom hints about CDBS.
  * Add git-buildpackage configfile, enabling signed tags pristine-tar.
  * Update local CDBS snippets:
    + Move dependency cleanup to new local snippet package-relations.mk.
    + Restructure copyright-check.mk hint output to use machine-readable
      draft DEP5 format.
    + Several minor improvements to upstream-tarball.mk.
    + Compact simple licenses (those without ' or later') in
      copyright-check.mk
    + Fix use underscore (not dash) in internal variable
  * Add proper licensing header to debian/rules.
  * Rewrite debian/copyright:
    + use draft DEP5 machine-readable format
    + include licensing of automade files and Debian packaging (GPL-2+)
  * Add DEB_MAINTAINER_MODE in debian/rules (thanks to Romain Beauxis).
  * Bump policy compliance to standards-version 3.8.2.
  * Enable regression tests.

 -- Ubuntu Archive Auto-Sync <email address hidden>   Thu,  05 Nov 2009 05:55:18 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Lucid
Original maintainer:
Jonas Smedegaard
Architectures:
any
Section:
utils
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe utils

Downloads

File Size SHA-256 Checksum
cstream_2.7.6.orig.tar.gz 89.9 KiB f8c33be315e29e4fb20918ad379c5924f5d6f8e665204c49a2c06fa46cd4674a
cstream_2.7.6-1.diff.gz 13.6 KiB c69fa63b100220973764609a3cc3158d01cc37632c930e71037b704516b1f8ba
cstream_2.7.6-1.dsc 1.2 KiB adceaa9cd0cbc29fa417af51ce8d2c7f2d367f6b8bc0be9935111077819000c9

Available diffs

View changes file

Binary packages built by this source

cstream: general-purpose stream-handling tool similar to dd

 cstream is a general-purpose stream-handling tool like UNIX' dd,
 usually used in commandline-constructed pipes.
 .
 Features:
  - Sane commandline switch syntax.
  - Exact throughput limiting, on the incoming side. Timing variance in
    previous reads are counterbalanced in the following reads.
  - Precise throughput reporting. Either at the end of the transmission
    or everytime SIGUSR1 is received. Quite useful to ask lengthy
    operations how much data has been transferred yet, i.e. when
    writing tapes. Reports are done in bytes/sec and if appropriate in
    KB/sec or MB/sec, where 1K = 1024.
  - SIGUSR2 causes a clean shutdown before EOF on input, timing
    information is displayed.
  - Build-in support to write its PID to a file, for painless sending of
    these signals.
  - Build-in support for fifos. Example usage is a 'pseudo-device',
    something that sinks or delivers data at an appropriate rate, but
    looks like a file, i.e. if you test soundcard software. See the
    manpage for examples.
  - Built-in data creation and sink, no more redirection of /dev/null
    and /dev/zero. These special devices speed varies greatly among
    operating systems, redirecting from it isn't appropriate
    benchmarking and a waste of resources anyway.
  - Accepts 'k', 'm' and 'g' character after number for "kilo, mega, giga"
    bytes for overall data size limit.
  - "gcc -Wall" clean source code, serious effort taken to avoid
    undefined behaviour in ANSI C or POSIX, except long long is
    required. Limiting and reporting works on data amounts > 4 GB.