File: control

package info (click to toggle)
golang-github-pierrec-lz4 0.0~git20151216.222ab1f-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,376 kB
  • ctags: 85
  • sloc: makefile: 7
file content (27 lines) | stat: -rw-r--r-- 1,169 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
Source: golang-github-pierrec-lz4
Section: devel
Priority: extra
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Daniel Stender <stender@debian.org>
Build-Depends: debhelper (>= 9),
               dh-golang,
               golang-go,
               golang-github-pierrec-xxhash-dev
Standards-Version: 3.9.8
Homepage: https://github.com/pierrec/lz4
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-pierrec-lz4.git
Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-pierrec-lz4.git
XS-Go-Import-Path: github.com/pierrec/lz4

Package: golang-github-pierrec-lz4-dev
Architecture: all
Built-Using: ${misc:Built-Using}
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: LZ4 compression and decompression in pure Go
 This library implements reading and writing lz4 compressed data (a frame),
 as specified in
 http://fastcompression.blogspot.fr/2013/04/lz4-streaming-format-final.html,
 using an io.Reader (decompression) and io.Writer (compression).  It is
 designed to minimize memory usage while maximizing throughput by being
 able to [de]compress data concurrently.