php-console-commandline 1.2.1-1ubuntu1 source package in Ubuntu

Changelog

php-console-commandline (1.2.1-1ubuntu1) impish; urgency=medium

  * d/p/fix-incorrect-arg-order-for-implode.patch: Fix FTBFS due to
    inverted argument order for implode() call, no longer supported in
    PHP 8.0.
    + Per https://www.php.net/manual/en/function.implode.php the separator is
      the first argument.  The inverse order was supported up to PHP 7.4 but
      removed as of PHP 8.0.

 -- Bryce Harrington <email address hidden>  Tue, 15 Jun 2021 19:34:08 +0000

Upload details

Uploaded by:
Bryce Harrington
Uploaded to:
Impish
Original maintainer:
Debian PHP PEAR Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Impish: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
php-console-commandline_1.2.1.orig.tar.gz 39.7 KiB a436c55d12c90125d2e69becb125d327f38d5fc6a75c93501213b2bc83956837
php-console-commandline_1.2.1-1ubuntu1.debian.tar.xz 2.4 KiB 2559befe070e3ef9a85e9f338dc6dd8b0f8076c4cb7e82e62bb67c7254b1e13b
php-console-commandline_1.2.1-1ubuntu1.dsc 2.1 KiB 3f0a1620ca7e5193db300cb86d42f35c71ea7774df927171243c4d713b9aec93

View changes file

Binary packages built by this source

php-console-commandline: Full featured command line options and arguments parser

 Console_CommandLine is a full featured package for managing command-line
 options and arguments highly inspired from Python's optparse module. It allows
 the developer to easily build complex command line interfaces.
 .
 Main features
  * handles sub commands (ie. $ myscript.php -q subcommand -f file),
  * can be completely built from an XML definition file,
  * generate --help and --version options automatically,
  * can be completely customized,
  * builtin support for i18n,
  * and much more...