golang-github-ssor-bom 0.0~git20170718.0.6386211-5 source package in Ubuntu

Changelog

golang-github-ssor-bom (0.0~git20170718.0.6386211-5) unstable; urgency=medium

  [ Alexandre Viau ]
  * Point Vcs-* urls to salsa.debian.org.

  [ Jelmer Vernooij ]
  * Fix Debian QA group name.
  * Use secure copyright file specification URI.

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Change priority extra to priority optional.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Update standards version to 4.1.1, no changes needed.
  * Apply multi-arch hints.
    + golang-github-ssor-bom-dev: Add Multi-Arch: foreign.

  [ Aloïs Micard ]
  * Bump standards version to 4.5.1.
  * Bump debhelper from 12 to 13.
  * Add Rules-Requires-Root: no.
  * Add myself as uploader. (Closes: #889203)
  * Set Debian Go Team as maintainer.

 -- Aloïs Micard <email address hidden>  Mon, 25 Jan 2021 08:26:20 +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-github-ssor-bom_0.0~git20170718.0.6386211-5.dsc 2.3 KiB ec5a9d0fd59f9722c0f6968d54bbc25b29297d04acdd4594f5b78733527a35c3
golang-github-ssor-bom_0.0~git20170718.0.6386211.orig.tar.xz 1.7 KiB ebc9d78efa71dd4188e8ed69c602abd06dfa0d2f2e87fee5e47a797ef54c45fd
golang-github-ssor-bom_0.0~git20170718.0.6386211-5.debian.tar.xz 2.9 KiB 36dd2cc290809805305531754000eab50c5271a1ed6483d91ef58940cf97d1fb

No changes file available.

Binary packages built by this source

golang-github-ssor-bom-dev: 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))