File: control

package info (click to toggle)
golang-github-ghodss-yaml 1.0.0%2Bgit20220118.d8423dc-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 1,330 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Source: golang-github-ghodss-yaml
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Tim Potter <tpot@hpe.com>,
           Anthony Fok <foka@debian.org>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any,
               golang-gopkg-yaml.v2-dev (>= 2.2.2)
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.6.1
Homepage: https://github.com/ghodss/yaml
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-ghodss-yaml
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-ghodss-yaml.git
XS-Go-Import-Path: github.com/ghodss/yaml

Package: golang-github-ghodss-yaml-dev
Architecture: all
Multi-Arch: foreign
Depends: golang-gopkg-yaml.v2-dev (>= 2.2.2),
         ${misc:Depends}
Description: better way to marshal and unmarshal YAML in Golang
 This package is a wrapper around go-yaml designed to enable a
 better way of handling YAML when marshaling to and from structs.
 .
 In short, this library first converts YAML to JSON using
 go-yaml and then uses json.Marshal and json.Unmarshal to
 convert to or from the struct. This means that it effectively
 reuses the JSON struct tags as well as the custom JSON methods
 MarshalJSON and UnmarshalJSON unlike go-yaml.