File: control

package info (click to toggle)
golang-github-pierrec-lz4 2.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, bullseye-backports
  • size: 28,660 kB
  • sloc: asm: 215; makefile: 5
file content (28 lines) | stat: -rw-r--r-- 1,177 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
Source: golang-github-pierrec-lz4
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Shengjing Zhu <zhsj@debian.org>,
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
               golang-github-frankban-quicktest-dev,
Standards-Version: 4.5.0
Homepage: https://github.com/pierrec/lz4
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-pierrec-lz4
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-pierrec-lz4.git
XS-Go-Import-Path: github.com/pierrec/lz4
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-go

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