golang-github-mitchellh-cli 1.1.1-1 source package in Ubuntu

Changelog

golang-github-mitchellh-cli (1.1.1-1) unstable; urgency=medium

  * New upstream release
  * Rules-Requires-Root: no
  * Standards-Version: 4.5.0

 -- Dmitry Smirnov <email address hidden>  Tue, 06 Oct 2020 20:57:32 +1100

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-mitchellh-cli_1.1.1-1.dsc 2.4 KiB d17007edd88278f9a88efcf70163b5d21763d233156f12e2a497dfef56194134
golang-github-mitchellh-cli_1.1.1.orig.tar.xz 21.7 KiB 0f3900db51a60f1c346f281becb35772c0cf4d22787d1e6e3637e93494b963d7
golang-github-mitchellh-cli_1.1.1-1.debian.tar.xz 7.9 KiB a789c74b9ecd9b08e8d19e1a4ab68ece44148d0d5edcc0a059a46e84d36f1045

Available diffs

No changes file available.

Binary packages built by this source

golang-github-mitchellh-cli-dev: library for implementing command-line interfaces

 cli is a library for implementing powerful command-line interfaces in
 Go. cli is the library that powers the CLI for Packer, Serf, and Consul.
 .
 Features:
  - Easy sub-command based CLIs: cli foo, cli bar, etc.
  - Optional support for default subcommands so cli does something other
    than error.
  - Automatic help generation for listing subcommands
  - Automatic help flag recognition of -h, --help, etc.
  - Automatic version flag recognition of -v, --version.
  - Helpers for interacting with the terminal, such as outputting information,
    asking for input, etc. These are optional, you can always interact with
    the terminal however you choose.
  - Use of Go interfaces/types makes augmenting various parts of the library a
    piece of cake.