File: control

package info (click to toggle)
golang-github-armon-circbuf 0.0~git20150827.0.bbbad09-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 56 kB
  • ctags: 18
  • sloc: makefile: 2
file content (25 lines) | stat: -rw-r--r-- 1,023 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
Source: golang-github-armon-circbuf
Section: devel
Priority: extra
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Tianon Gravi <tianon@debian.org>
Build-Depends: debhelper (>= 9),
               dh-golang,
               golang-go
Standards-Version: 3.9.6
Homepage: https://github.com/armon/circbuf
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-armon-circbuf.git
Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-github-armon-circbuf.git
XS-Go-Import-Path: github.com/armon/circbuf

Package: golang-github-armon-circbuf-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
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.