golang-github-svent-go-flags 1-2 source package in Ubuntu

Changelog

golang-github-svent-go-flags (1-2) unstable; urgency=medium

  * Team upload.
  * Use debhelper v11
  * Use golang-any instead of golang-go
  * Update team name and address
  * Update to Standards-Version 4.2.1
    - Use Priority: optional
  * Remove Built-Using field from -dev package
  * Remove Vcs-Fields, the git repository does not exist on salsa.

 -- Dr. Tobias Quathamer <email address hidden>  Thu, 29 Nov 2018 22:05:57 +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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc
Focal release universe misc

Builds

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-svent-go-flags_1-2.dsc 2.0 KiB 82f4af469db47ac4b2ca70a7747d410004d4695c9af3632010773c64819c9a22
golang-github-svent-go-flags_1.orig.tar.gz 20.8 KiB be27029beb4f37b922c4e68725067e0f91442d3c4a6e0385461d0bb800cd23fc
golang-github-svent-go-flags_1-2.debian.tar.xz 3.1 KiB a082f939f9a9020a504cf02c4b45712c9fbc1a23e8a55f56346e8502ce17887b

Available diffs

No changes file available.

Binary packages built by this source

golang-github-svent-go-flags-dev: go library for parsing command line arguments

 This library provides similar functionality to the builtin flag library
 of go, but provides much more functionality and nicer formatting.
 Supported features are:
 .
  * Options with short names (-v)
  * Options with long names (--verbose)
  * Options with and without arguments (bool v.s. other type)
  * Options with optional arguments and default values
  * Multiple option groups each containing a set of options
  * Generate and print well-formatted help message
  * Passing remaining command line arguments after -- (optional)
  * Ignoring unknown command line options (optional)
  * Supports -I/usr/include -I=/usr/include -I /usr/include option
    argument specification
  * Supports multiple short options -aux
  * Supports all primitive go types (string, int{8..64}, uint{8..64},
    float)
  * Supports same option multiple times (can store in slice or last option
    counts)
  * Supports maps
  * Supports function callbacks
  * Supports namespaces for (nested) option groups