golang-github-bep-tmc 0.5.1-3 source package in Ubuntu

Changelog

golang-github-bep-tmc (0.5.1-3) unstable; urgency=medium

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

  [ Anthony Fok ]
  * Reorder fields in debian/control
  * Change Section from devel to golang
  * Bump debhelper dependency to "Build-Depends: debhelper-compat (= 13)"
  * Use dh-sequence-golang instead of dh-golang and --with=golang
  * Mark library package with "Multi-Arch: foreign"
  * Bump Standards-Version to 4.6.1 (no change)

 -- Anthony Fok <email address hidden>  Thu, 29 Sep 2022 01:03:36 -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 misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-bep-tmc_0.5.1-3.dsc 2.2 KiB 390a1a788affd87d486c881f55dd7cac4d7c99299a8bd43cde471135ba8cb259
golang-github-bep-tmc_0.5.1.orig.tar.gz 8.2 KiB c3625517e38d4504541f405f4c960d5d0bb7593d0be2aaf22a88894308ec1a2f
golang-github-bep-tmc_0.5.1-3.debian.tar.xz 2.7 KiB aa62f3816db4567b9889e3391cb10a54b4ac0a55565de218fa51c86ad54da474

Available diffs

No changes file available.

Binary packages built by this source

golang-github-bep-tmc-dev: provides round-trip serialization of typed Go maps

 Codec for a Typed Map
 .
 bep/tmc provides basic roundtrip JSON etc. encoding/decoding of a
 map[string]interface{} with custom type adapters.
 .
 Text based serialization formats like JSON and YAML are convenient, but
 when used with Go maps, most type information gets lost in translation.
 For structs, one can work around some of the limitations with custom
 MarshalJSON, UnmarshalJSON, MarshalText and UnmarshalText.
 For the commonly used flexible and schema-less "map[string]interface {}",
 this is, as the author is aware of, not an option.
 This library provides a solution to this problem.
 .
 See the GoDoc at https://godoc.org/github.com/bep/tmc for some
 basic examples and how to configure custom codec, adapters, etc.