golang-github-mgutz-to 1.0.0-3 source package in Ubuntu

Changelog

golang-github-mgutz-to (1.0.0-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints.
    + golang-github-mgutz-to-dev: Add Multi-Arch: foreign.
  * Bump debhelper from old 12 to 13.
  * Set upstream metadata fields: Repository-Browse.
  * Update standards version to 4.6.1, no changes needed.
  * Set upstream metadata fields: Repository.

 -- Jelmer Vernooij <email address hidden>  Wed, 23 Nov 2022 23:50:48 +0000

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
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-mgutz-to_1.0.0-3.dsc 2.1 KiB c53270e124b99a17fbfbf15475a0b7323a31f36fc6999ca8e383b928a9bb5584
golang-github-mgutz-to_1.0.0.orig.tar.gz 7.9 KiB b4424468e08cc74efa6e6b91109fa6097a9344f3495904e9172ab89217b14d31
golang-github-mgutz-to_1.0.0-3.debian.tar.xz 2.6 KiB 9ad056f4d63de49b28649843f5be48c6cf9a4c938f6448165577ff62826dfb66

Available diffs

No changes file available.

Binary packages built by this source

golang-github-mgutz-to-dev: Convenient type conversion utilities for Go

 Convenient functions for converting values between common Go
 datatypes. For Go 1.1+.
 .
 This package ignores errors and allows quick-and-dirty conversions
 between Go datatypes. When any conversion seems unreasonable a zero value
 (http://golang.org/ref/spec#The_zero_value) is used as fallback.
 .
 If one is not working with human provided data, fuzzy input or
 if one would rather not ignore any error in your program, one should
 better use the standard Go packages for conversion, such as strconv
 (http://golang.org/pkg/strconv/), fmt (http://golang.org/pkg/fmt/)
 or even standard conversion (http://golang.org/ref/spec#Conversions)
 they may be better suited for the task.