golang-github-mitchellh-cli 0.0~git20171129.33edc47-2 source package in Ubuntu

Changelog

golang-github-mitchellh-cli (0.0~git20171129.33edc47-2) unstable; urgency=medium

  * Update VCS-* urls.
  * Use https copyright format url.

 -- Alexandre Viau <email address hidden>  Sun, 15 Apr 2018 12:40:02 -0400

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

Builds

Cosmic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-mitchellh-cli_0.0~git20171129.33edc47-2.dsc 2.5 KiB e14bb33e04b26249444b0a55e668065da5b446d516fca31ed34d0bcad0d87e3d
golang-github-mitchellh-cli_0.0~git20171129.33edc47.orig.tar.xz 20.3 KiB 86d7ff42019966a822bf85ee10a2955093f1fa60cfe47f18bea2ef33911a0b10
golang-github-mitchellh-cli_0.0~git20171129.33edc47-2.debian.tar.xz 7.4 KiB fda6ddb9d19908b1a10d844b859f65196aea3212583c6f239a7f2bca921e82c1

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.