golang-github-client9-reopen 1.0.0-4 source package in Ubuntu

Changelog

golang-github-client9-reopen (1.0.0-4) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + golang-github-client9-reopen-dev: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 24 Nov 2022 01:25:22 +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-client9-reopen_1.0.0-4.dsc 2.2 KiB f67658ad92331ab7049d058b1b569596c07ee6911b7b5897fe92d8691f96733a
golang-github-client9-reopen_1.0.0.orig.tar.gz 6.1 KiB 64829db9b9fd0dd94b2444c45a2cb6e926b79c3a2e589a75a5edc2ba488a7875
golang-github-client9-reopen_1.0.0-4.debian.tar.xz 2.5 KiB db759e4649f347bf825373a9db7c5cc4086b9a8d467070365030bac648b5d231

Available diffs

No changes file available.

Binary packages built by this source

golang-github-client9-reopen-dev: freopen functionality for golang's io.Writers (library)

 Makes a standard os.File a "reopenable writer" and allows SIGHUP signals to
 reopen log files, as needed by logrotated. This is inspired by the C/Posix
 freopen.
 .
 The simple version reopen.NewFileWriter does unbuffered writing. A call
 to .Reopen closes the existing file handle, and then re-opens it using
 the original filename.
 .
 The more advanced version reopen.NewBufferedFileWriter buffers input and
 flushes when the internal buffer is full (with care) or if 30 seconds
 has elapsed.