golang-github-alexflint-go-arg 1.3.0+ds-3 source package in Ubuntu

Changelog

golang-github-alexflint-go-arg (1.3.0+ds-3) unstable; urgency=medium

  * Team upload.
  * Reorder fields in debian/control and debian/copyright
  * Change Section from devel to golang
  * Bump Standards-Version to 4.7.0 (no change)
  * Mark library package with "Multi-Arch: foreign"
  * Remove unused dependencies which appear only in go.sum
  * Use dh-sequence-golang instead of dh-golang and --with=golang
  * Patch parse_test.go to fix TestFloat and TestMixed with testify v1.9.0;
    fixed by switching from float32 to float64 in the tests.
    See also https://github.com/stretchr/testify/issues/1576

 -- Anthony Fok <email address hidden>  Thu, 02 May 2024 08:53:05 -0600

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe golang

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-alexflint-go-arg_1.3.0+ds-3.dsc 2.3 KiB 94d86c30822427e1641bdc1ef47c1eb3ea961ef0b865f260fe5489059eae853b
golang-github-alexflint-go-arg_1.3.0+ds.orig.tar.xz 19.7 KiB 1969e761949b8b272c8396569cfcc4c6e157f52b79fd818826cc9d3841ca906d
golang-github-alexflint-go-arg_1.3.0+ds-3.debian.tar.xz 3.3 KiB fc32cc99c33823cc58b61b0f64d3a0931622a30d17e229df57dca4e1af620404

Available diffs

No changes file available.

Binary packages built by this source

golang-github-alexflint-go-arg-dev: Struct-based argument parsing in Go

 The idea behind go-arg is that Go already has an excellent way
 to describe data structures using structs, so there is no need to
 develop additional levels of abstraction. Instead of one API to specify
 which arguments a program accepts, and then another API to get the
 values of those arguments, go-arg replaces both with a single struct.