golang-layeh-gopher-luar 1.0.4-1.1 source package in Ubuntu

Changelog

golang-layeh-gopher-luar (1.0.4-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Sat, 09 Jan 2021 12:28:39 +0100

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
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-layeh-gopher-luar_1.0.4-1.1.dsc 2.2 KiB 308d67658ff252748c526dcab153ea1590a104fc7baa8ed999039c38817f0141
golang-layeh-gopher-luar_1.0.4.orig.tar.gz 22.7 KiB f417579eaf92ab4245597b14fef5d3e6da7d929dedbe29be96f8aec1f0eea10d
golang-layeh-gopher-luar_1.0.4-1.1.debian.tar.xz 1.8 KiB b809f801f3a0fe6f0f73f3b4b54eab13cd73a0bbf8a0d769903e8e07a6511f15

Available diffs

No changes file available.

Binary packages built by this source

golang-layeh-gopher-luar-dev: Simplifies data passing between Go and GopherLua

 A gopher-luar simplifies data passing to and from GopherLua.
 .
 This package provides the library for converting and passing the data
 types between Go and GopherLua.
 .
 Go type values are converted to GopherLua type:
  * Boolean values are converted to lua.LBool.
  * Numeric values are converted to lua.LNumber.
  * String values are converted to lua.LString.
  * A nil value is converted to lua.LNil.
  * Functions are converted to *lua.LFunction.
  * Arrays, channels, maps, pointers, slices, and structs are all
    converted to *lua.LUserData.
 .
 GopherLua type values are converted to Go type:
  * lua.LBool values are converted to bool.
  * lua.LNumber values are converted to float64.
  * lua.LString values are converted to string.
  * lua.LNil can be converted to any channel, func, interface, map,
    pointer, slice, unsafe pointer, or uintptr value.