golang-github-alecthomas-kong-hcl 1.0.1-1 source package in Ubuntu

Changelog

golang-github-alecthomas-kong-hcl (1.0.1-1) 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 ]
  * New upstream version 1.0.1
  * Change Section from devel to golang
  * Bump debhelper dependency to "Build-Depends: debhelper-compat (= 13)"
  * Bump Standards-Version to 4.6.0 (no change)
  * Mark library package with "Multi-Arch: foreign"
  * Update versioned dependencies as per go.mod
  * Refresh debian/watch
  * debian/rules: Add "export DH_GOLANG_EXCLUDES := v2" as v2 requires
    github.com/hashicorp/hcl/v2 which has yet to be packaged for Debian
  * Add 0001-skip-group-test.patch
    to sidestep TestHCL/FromResolver test error with groups.
    See https://github.com/alecthomas/kong-hcl/pull/7

 -- Anthony Fok <email address hidden>  Thu, 04 Nov 2021 05:18:32 -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
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-alecthomas-kong-hcl_1.0.1-1.dsc 2.4 KiB 99a7c9d137e5232877e1d5bdf12dce0c62a94514c9a2a0e901502b7ab7fefebf
golang-github-alecthomas-kong-hcl_1.0.1.orig.tar.gz 10.5 KiB 5908bcd949e2c6b4d668ae4878371eecb86232ac05ea632c2c86ee2871afde4d
golang-github-alecthomas-kong-hcl_1.0.1-1.debian.tar.xz 2.9 KiB c300d31731043d3774e4a79a5923277180c97fc818aeb9ab109f7fe85047de23

Available diffs

No changes file available.

Binary packages built by this source

golang-github-alecthomas-kong-hcl-dev: Kong configuration loader for HCL (Go library)

 github.com/alecthomas/kong-hcl is a Kong configuration loader for HCL
 implemented for the Go programming language.
 .
 It may be used like so:
 .
     var cli struct {
             Config kong.ConfigFlag `help:"Load configuration."`
     }
     parser, err := kong.New(&cli, kong.Configuration(konghcl.Loader,
             "/etc/myapp/config.hcl", "~/.myapp.hcl))