golang-github-hashicorp-go-multierror 1.1.0-1 source package in Ubuntu

Changelog

golang-github-hashicorp-go-multierror (1.1.0-1) unstable; urgency=medium

  * Team upload.

  [ Debian Janitor ]
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Update standards version to 4.5.0, no changes needed.

  [ Shengjing Zhu ]
  * Update uscan watch file to version 4
  * New upstream version 1.1.0
  * Update Section to golang
  * Bump debhelper-compat to 13
  * Update Standards-Version to 4.5.1 (no changes)
  * Add Rules-Requires-Root
  * Use /usr/share/common-licenses/MPL-2.0 in copyright

 -- Shengjing Zhu <email address hidden>  Sun, 31 Jan 2021 01:38:22 +0800

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

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-hashicorp-go-multierror_1.1.0-1.dsc 1.8 KiB 8afe5fc3d715002276c2f1428ac475dae30b9e79f975f878d5d485e105928b82
golang-github-hashicorp-go-multierror_1.1.0.orig.tar.gz 11.8 KiB 466a1f3596417a35b407d06d2dc2cb87dba46b025af4f77d30f82aa6e0e6d4d4
golang-github-hashicorp-go-multierror_1.1.0-1.debian.tar.xz 2.8 KiB 0505b3d1c6272c4e28a1a8b219042337f7321c29188da092914dc32047acceb0

Available diffs

No changes file available.

Binary packages built by this source

golang-github-hashicorp-go-multierror-dev: Go package for representing a list of errors as a single error

 go-multierror is a package for Go that provides a mechanism for representing a
 list of error values as a single error.
 .
 This allows a function in Go to return an error that might actually be a list
 of errors. If the caller knows this, they can unwrap the list and access the
 errors. If the caller doesn't know, the error formats to a nice human-readable
 format.
 .
 go-multierror implements the errwrap interface so that it can be used with that
 library, as well.
 .
 This package contains the source.