golang-github-flynn-json5 0.0~git20160717.7620272-2 source package in Ubuntu

Changelog

golang-github-flynn-json5 (0.0~git20160717.7620272-2) unstable; urgency=medium

  * Update d/control wrt cme
  * Add d/upstream/metadata
  * Update patch metadata
  * Update d/copyright

 -- Utkarsh Gupta <email address hidden>  Sat, 28 Dec 2019 20:49:21 +0530

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

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-flynn-json5_0.0~git20160717.7620272-2.dsc 2.4 KiB cdb858fe75fb61e6e94f3309255a10a2b9ab23ac722721f73cc8cf741478bcee
golang-github-flynn-json5_0.0~git20160717.7620272.orig.tar.xz 33.9 KiB 63384c7e115d2e1431aaee7fd4e9045aa5d6307f33b73cfd06b0a1c6df41465d
golang-github-flynn-json5_0.0~git20160717.7620272-2.debian.tar.xz 3.8 KiB ae439afda8a85b49bf3d5a40ebd179f0257983e356cb0e64149fa64d89d46aa4

No changes file available.

Binary packages built by this source

golang-github-flynn-json5-dev: Go JSON5 decoder package based on encoding/json

 This is a Go package that implements decoding of JSON5 values.
 It provides various functions like Unmarshal, NewDecoder, Buffered,
 Decode, UseNumber, Error, Float64, Int64, String, UnmarshalJSON.
 The description of the various functions it supports is as following
 .
 Unmarshal - Itparses the JSON-encoded data and stores the result in the value
 pointed to by v.
 Decoder - Itreads and decodes JSON values from an input stream.
 NewDecoder - Itreturns a new decoder that reads from r.
 Buffered - It returns a reader of the data remaining in the Decoder's
 buffer. The reader is valid until the next call to Decode.
 Decode - Itreads the next JSON-encoded value from its input and stores it in
 the value pointed to by v.
 UseNumber - Itcauses the Decoder to unmarshal a number into an interface{}
 as a Number instead of as a float64.
 Float64 - Itreturns the number as a float64.
 Int64 - Itreturns the number as an int64.
 String - Itreturns the literal text of the number.
 UnmarshalJSON - It sets *m to a copy of data.