File: control

package info (click to toggle)
golang-github-armon-circbuf 0.0~git20190214.5111143-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 80 kB
  • sloc: makefile: 2
file content (29 lines) | stat: -rw-r--r-- 1,128 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Source: golang-github-armon-circbuf
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Tianon Gravi <tianon@debian.org>,
           Tim Potter <tpot@hpe.com>,
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
Standards-Version: 4.5.1
Homepage: https://github.com/armon/circbuf
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-armon-circbuf
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-armon-circbuf.git
XS-Go-Import-Path: github.com/armon/circbuf
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-go

Package: golang-github-armon-circbuf-dev
Architecture: all
Depends: ${misc:Depends},
         ${shlibs:Depends},
Multi-Arch: foreign
Description: Golang circular (ring) buffer
 This package provides the circbuf Go library. This provides a Buffer object
 which is a circular (or ring) buffer. It has a fixed size, but can be written
 to infinitely. Only the last size bytes are ever retained. The buffer
 implements the io.Writer interface.
 .
 This package contains the source.