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

Changelog

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

  * Source only upload for testing migration

 -- Pirate Praveen <email address hidden>  Tue, 21 Apr 2020 22:28:15 +0530

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-client9-reopen_1.0.0-2.dsc 2.2 KiB 892e17533bdadd7c8d5f8899227c2f6fdf47a57b77ac00317eb9de19a741fb5b
golang-github-client9-reopen_1.0.0.orig.tar.gz 6.1 KiB 64829db9b9fd0dd94b2444c45a2cb6e926b79c3a2e589a75a5edc2ba488a7875
golang-github-client9-reopen_1.0.0-2.debian.tar.xz 2.7 KiB ab65dd28e87efad98675e06ce3f921daf56f78558da85f62fab1599e9102463b

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.