golang-github-gcla-deep 1.0.2-2 source package in Ubuntu

Changelog

golang-github-gcla-deep (1.0.2-2) unstable; urgency=medium

  * d/control: bump standards

 -- Dawid Dziurla <email address hidden>  Sun, 04 Aug 2019 12:19:48 +0200

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

Eoan: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gcla-deep_1.0.2-2.dsc 2.2 KiB 06655c32a41c66a39c6466747575d472917b7f4c97404c71b81bf912ac79b093
golang-github-gcla-deep_1.0.2.orig.tar.gz 7.8 KiB 6d038716f444b363f94a0ec923da5d8e47128a907089c5babfe558c1b1ea21cd
golang-github-gcla-deep_1.0.2-2.debian.tar.xz 2.5 KiB 1b47595b389ca8eb22c0aa1f8620868098e79eeee5c59c009b4106b14d9bae5b

Available diffs

No changes file available.

Binary packages built by this source

golang-github-gcla-deep-dev: Golang deep variable equality test that returns human-readable differences

 Deep Variable Equality for Humans.
 .
 This package provides a single function: deep.Equal. It's like
 reflect.DeepEqual (http://golang.org/pkg/reflect/#DeepEqual) but
 much friendlier to humans (or any sentient being) for two reason:
  • deep.Equal returns a list of differences
  • deep.Equal does not compare unexported fields (by default)
 .
 This is a fork of go-test/deep package with an additional feature.
 .
 Message from author about changes made in fork:
 Some packages may require Equal()'s parameters to be set in a
 particular way that is incompatible with other users within
 the same program. The global configuration parameters can be
 changed and restored, but this could lead to bugs due to race
 conditions. This commit makes the parameters that control
 Equal()'s operation part of a structure, Comparer, for which
 Equal() is now a method. Users can configure their own
 Comparer struct if desired. To preserve the existing package
 interface, the package-level Equals() method will use a
 default Comparer object that relies on pointers to the current
 global configuration parameters (pointers so that the
 operation of the global Equals() function will change
 immediately upon changing the value of any global
 configuration setting).