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

Changelog

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

  [ Alexandre Viau ]
  * Team upload.
  * Mova to salsa.debian.org.
  * Change my email to @debian.org.
  * Priority extra -> optional.
  * Testsuite: autopkgtest-pkg-go.
  * Use XS-Go-Import-Path.
  * New upstream snapshot.

 -- Michael Stapelberg <email address hidden>  Sat, 10 Feb 2018 23:46:59 +0100

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
Bionic release universe misc

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-mitchellh-cli_0.0~git20171129.33edc47-1.dsc 2.4 KiB fe104a4f53e967ad1ee9d5fda925dcab6edc3d8269da25204c3e1345e1f4adde
golang-github-mitchellh-cli_0.0~git20171129.33edc47.orig.tar.xz 20.3 KiB 86d7ff42019966a822bf85ee10a2955093f1fa60cfe47f18bea2ef33911a0b10
golang-github-mitchellh-cli_0.0~git20171129.33edc47-1.debian.tar.xz 6.8 KiB 63715c18af58a5bd81d3d80f3c7679199ac34a85a67c4d7066ee4b1fcb21b3a3

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.