File: control

package info (click to toggle)
golang-github-ssor-bom 0.0~git20170718.0.6386211-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 64 kB
  • sloc: makefile: 2
file content (28 lines) | stat: -rw-r--r-- 943 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
Source: golang-github-ssor-bom
Section: devel
Priority: extra
Maintainer: QA Group <packages@qa.debian.org>
Build-Depends: debhelper (>= 10),
               dh-golang,
               golang-any
Standards-Version: 4.1.0
Homepage: https://github.com/ssor/bom
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-ssor-bom.git
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-ssor-bom.git
Testsuite: autopkgtest-pkg-go
XS-Go-Import-Path: github.com/ssor/bom

Package: golang-github-ssor-bom-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: small Go library to clean bom from byte array or reader
 This golang library implements a utility to clean bom from a byte array
 or byte reader.
 .
 Example(s):
 .
   bs := []byte{bom0, bom1, bom2, 0x11} result := CleanBom(bs)
 .
   bs := []byte{bom0, bom1, bom2, 0x11} result :=
   NewReaderWithoutBom(bytes.NewReader(bs))