golang-github-lucasb-eyer-go-colorful 1.0.3-1 source package in Ubuntu

Changelog

golang-github-lucasb-eyer-go-colorful (1.0.3-1) unstable; urgency=medium

  [ Paride Legovini ]
  * New upstream version 1.0.3.
  * d/control:
    - bump Standards-Version to 4.5.0, no changes needed.
    - bump dh compat level to 13 via debhelper-compat; drop d/compat.
    - add Rules-Requires-Root: no.
  * debian/*: use the <email address hidden> email alias.
  * d/copyright: update copyright years.

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.

 -- Paride Legovini <email address hidden>  Mon, 24 Aug 2020 22:38:22 +0000

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

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-lucasb-eyer-go-colorful_1.0.3-1.dsc 2.0 KiB b269083296994e6356b3c36c07599237e936b87d9d7a36c33c5079bf3e4d954e
golang-github-lucasb-eyer-go-colorful_1.0.3.orig.tar.gz 420.1 KiB 40c8c7e03a4eeaaabd44273e9b6a992933f554f17225aadd0b225ffc67e1e7db
golang-github-lucasb-eyer-go-colorful_1.0.3-1.debian.tar.xz 3.4 KiB 00821e6eaf03c50cd154b85e29180b6059bd20c7c5c423e281dd57d164eee5d7

Available diffs

No changes file available.

Binary packages built by this source

golang-github-lucasb-eyer-go-colorful-dev: Library for handling color spaces in Go

 Colorful is a library for handling color spaces in Go by implementing the
 color.Color interface. Colorful stores colors in RGB and provides methods from
 converting these to various color spaces. Currently supported colorspaces are:
 .
   RGB: All three of Red, Green and Blue in [0..1].
   HSL: Hue in [0..360], Saturation and Luminance in [0..1].
   HSV: Hue in [0..360], Saturation and Value in [0..1].
   Hex RGB: The "internet" color format, as in #FF00FF.
   Linear RGB (read about Gamma-Correct Rendering).
   CIE-XYZ: CIE's standard color space, almost in [0..1].
   CIE-xyY: encodes chromacity in x and y and luminance in Y, all in [0..1]
   CIE-L*a*b*: Perceptually uniform. L* in [0..1] and a*, b* almost in [-1..1].
   CIE-L*u*v*: Very similar to CIE-L*a*b*.
   CIE-L*C*h° (HCL): CIE-L*a*b* space in polar coordinates.
 .
 For the colorspaces where it makes sense (XYZ, Lab, Luv, HCl), the D65 is used
 as reference white by default but methods for using your own reference white
 are provided.