File: control

package info (click to toggle)
golang-github-ssor-bom 0.0~git20170718.0.6386211-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, bullseye-backports, sid, trixie
  • size: 72 kB
  • sloc: makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,048 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
Source: golang-github-ssor-bom
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Aloïs Micard <alois@micard.lu>
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any
Standards-Version: 4.5.1
Homepage: https://github.com/ssor/bom
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-ssor-bom
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-ssor-bom.git
Testsuite: autopkgtest-pkg-go
XS-Go-Import-Path: github.com/ssor/bom
Rules-Requires-Root: no

Package: golang-github-ssor-bom-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends}
Multi-Arch: foreign
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))