golang-github-svent-go-nbreader 0~20150201-4 source package in Ubuntu

Changelog

golang-github-svent-go-nbreader (0~20150201-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Bump debhelper from old 11 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.

 -- Jelmer Vernooij <email address hidden>  Tue, 29 Nov 2022 15:35:41 +0000

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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-svent-go-nbreader_0~20150201-4.dsc 2.2 KiB fbe6f2ce4f6f8b8f79078ff87df24dc1cb1d8bc94ec5645fb7770158ee12ac49
golang-github-svent-go-nbreader_0~20150201.orig.tar.xz 2.6 KiB 4b5c152cabef20649f953644a065c88fdd59220959f0d3ec6961aac2c77c18d0
golang-github-svent-go-nbreader_0~20150201-4.debian.tar.xz 2.7 KiB a85f378f5ac717bba8ba5d2677195b91f644d090b6f8ae146411e6ecc6e55d1c

Available diffs

No changes file available.

Binary packages built by this source

golang-github-svent-go-nbreader-dev: non-blocking io.Reader for go

 go-nbreader provides a non-blocking io.Reader for go (golang). It
 allows one to specify two timeouts:
 .
  * Timeout: Read() returns after the specified timeout, even if no data
    has been read.
 .
  * ChunkTimeout: Read() returns if no data has been read for the
    specified time, even if the overall timeout has not been hit yet.
    ChunkTimeout must be smaller than Timeout.
 .
 When the internal buffer contains at least blockSize bytes, Read()
 returns regardless of the specified timeouts.