libdevel-autoflush-perl 0.06-2 source package in Ubuntu

Changelog

libdevel-autoflush-perl (0.06-2) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/*: update URLs from {search,www}.cpan.org to MetaCPAN.
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Use secure URI in Homepage field.
  * Bump debhelper from deprecated 8 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.

 -- Jelmer Vernooij <email address hidden>  Mon, 13 Jun 2022 15:45:36 +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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libdevel-autoflush-perl_0.06-2.dsc 2.1 KiB 6c6c4e4355bc3103e4f379560b3917dacb7c5ffa66dc37ad741220ba80a4a4ba
libdevel-autoflush-perl_0.06.orig.tar.gz 12.6 KiB 6ff145cecdeabc7f3527653356795af4230df695b7d8704f96987a7f95443ed4
libdevel-autoflush-perl_0.06-2.debian.tar.xz 2.4 KiB a85955988a0bae94f62331e6ecd756f89ae43895a86183f62375aabed55d04de

Available diffs

No changes file available.

Binary packages built by this source

libdevel-autoflush-perl: module for setting autoflush from the command line

 Devel::Autoflush is a hack to set autoflush for STDOUT and STDERR from the
 command line or from "PERL5OPT" for code that needs it but doesn't have it.
 .
 This often happens when prompting:
 .
   # guess.pl
   print "Guess a number: ";
   $n = <STDIN>;
 .
 As long as the output is going to a terminal, the prompt is flushed when STDIN
 is read. However, if the output is being piped, the print statement will
 not automatically be flushed, no prompt will be seen and the program will
 silently appear to hang while waiting for input.