libshell-posix-select-perl 0.09-1 source package in Ubuntu

Changelog

libshell-posix-select-perl (0.09-1) unstable; urgency=medium

  * Import upstream version 0.09.
  * Update years of packaging copyright.
  * Declare compliance with Debian Policy 4.6.2.
  * Set Rules-Requires-Root: no.
  * Remove unneeded debian/source/include-binaries.
  * Fix permissions of example README.

 -- gregor herrmann <email address hidden>  Fri, 18 Aug 2023 13:38:42 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

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

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libshell-posix-select-perl_0.09-1.dsc 2.4 KiB db01f34e465fce1534b9ae06e4af79ffab06ff346ffe8a9222744022e9d92a13
libshell-posix-select-perl_0.09.orig.tar.gz 64.9 KiB 1c6ee6375b4fbd57386a164f70a60613f740638a4e7e9a4474cb0d43f2007aa7
libshell-posix-select-perl_0.09-1.debian.tar.xz 3.4 KiB a99473c946256b2a8d2dce1b75ec5fc48ad4b48484ca7bedfd7acfe1496049ec

Available diffs

No changes file available.

Binary packages built by this source

libshell-posix-select-perl: POSIX Shell's "select" loop for Perl

 Shell::POSIX::Select implements the select loop of the "POSIX" shells (Bash,
 Korn, and derivatives) for Perl. That loop is unique in two ways: it's by far
 the friendliest feature of any UNIX shell, and it's the only UNIX shell loop
 that's missing from the Perl language. Until now!
 .
 What's so great about this loop? It automates the generation of a numbered
 menu of choices, prompts for a choice, proofreads that choice and complains if
 it's invalid (at least in this enhanced implementation), and executes a
 code-block with a variable set to the chosen value. That saves a lot of coding
 for interactive programs -- especially if the menu consists of many values!
 .
 The benefit of bringing this loop to Perl is that it obviates the need for
 future programmers to reinvent the Choose-From-A-Menu wheel.