golang-github-philhofer-fwd 1.1.1-1 source package in Ubuntu

Changelog

golang-github-philhofer-fwd (1.1.1-1) unstable; urgency=medium

  * Team upload.

  [ Paul Tagliamonte ]
  * Use a secure transport for the Vcs-Git and Vcs-Browser URL

  [ Tim Potter ]
  * New upstream snapshot for Docker 17.05.0-ce.
  * Standards-Version: 3.9.8

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

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit.
  * Apply multi-arch hints. + golang-github-philhofer-fwd-dev: Add Multi-Arch:
    foreign.

  [ Arnaud Rebillout ]
  * Add watch file
  * Update gitlab-ci.yml
  * Update upstream/metadata
  * Update Go Team email address
  * Bump debhelper compat
  * Section = golang
  * Standards-Version = 4.5.1
  * Testsuite = autopkgtest-pkg-go
  * Rules-Requires-Root = no
  * Drop shlibs:Depends from -dev package
  * Build-Depends on golang-any instead of golang-go
  * Nitpick, reorder some fields in d/control
  * New upstream version 1.1.1

 -- Arnaud Rebillout <email address hidden>  Fri, 08 Jan 2021 14:31:32 +0700

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-philhofer-fwd_1.1.1-1.dsc 1.6 KiB 7ad6120d63c47a890fd8bab9431c5520f4e61750ee6fe518727559c08a611c09
golang-github-philhofer-fwd_1.1.1.orig.tar.gz 9.6 KiB f8a9e7bc2fffb117eec31666b8aa61bfb3d46e858b0b50fa90d98a6f1f0ebf18
golang-github-philhofer-fwd_1.1.1-1.debian.tar.xz 3.1 KiB f5e6f13944cf624b83d81da425bae582a59ad7d3feec13d40c7c05bcb39d6f62

No changes file available.

Binary packages built by this source

golang-github-philhofer-fwd-dev: Buffered Reader/Writer

 The fwd package provides a buffered reader and writer. Each has methods that
 help improve the encoding/decoding performance of some binary protocols.
 .
 The fwd.Writer and fwd.Reader type provide similar functionality to their
 counterparts in bufio, plus a few extra utility methods that simplify
 read-ahead and write-ahead. I wrote this package to improve serialization
 performance for http://github.com/philhofer/msgp, where it provided about a 2x
 speedup over bufio. However, care must be taken to understand the semantics of
 the extra methods provided by this package, as they allow the user to access
 and manipulate the buffer memory directly.