pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel Add devel/go-compress version 1.9.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9aeb6ea8154f
branches:  trunk
changeset: 343563:9aeb6ea8154f
user:      ng0 <ng0%pkgsrc.org@localhost>
date:      Wed Nov 06 12:15:25 2019 +0000

description:
Add devel/go-compress version 1.9.1

go-compress is based on an optimized Deflate function,
which is used by gzip/zip/zlib packages.
It offers slightly better compression at lower compression
settings, and up to 3x faster encoding at highest compression level.

diffstat:

 devel/Makefile                  |    3 +-
 devel/go-compress/DESCR         |    4 +
 devel/go-compress/Makefile      |   27 +++
 devel/go-compress/PLIST         |  289 ++++++++++++++++++++++++++++++++++++++++
 devel/go-compress/buildlink3.mk |   18 ++
 devel/go-compress/distinfo      |    6 +
 6 files changed, 346 insertions(+), 1 deletions(-)

diffs (truncated from 381 to 300 lines):

diff -r d0211abcbdf0 -r 9aeb6ea8154f devel/Makefile
--- a/devel/Makefile    Wed Nov 06 11:59:50 2019 +0000
+++ b/devel/Makefile    Wed Nov 06 12:15:25 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2942 2019/11/06 11:08:13 ng0 Exp $
+# $NetBSD: Makefile,v 1.2943 2019/11/06 12:15:25 ng0 Exp $
 #
 
 COMMENT=       Development utilities
@@ -375,6 +375,7 @@
 SUBDIR+=       go-colorable
 SUBDIR+=       go-colortext
 SUBDIR+=       go-colour
+SUBDIR+=       go-compress
 SUBDIR+=       go-consul-api
 SUBDIR+=       go-cpuid
 SUBDIR+=       go-debounce
diff -r d0211abcbdf0 -r 9aeb6ea8154f devel/go-compress/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-compress/DESCR   Wed Nov 06 12:15:25 2019 +0000
@@ -0,0 +1,4 @@
+go-compress is based on an optimized Deflate function,
+which is used by gzip/zip/zlib packages.
+It offers slightly better compression at lower compression
+settings, and up to 3x faster encoding at highest compression level.
diff -r d0211abcbdf0 -r 9aeb6ea8154f devel/go-compress/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-compress/Makefile        Wed Nov 06 12:15:25 2019 +0000
@@ -0,0 +1,27 @@
+# $NetBSD: Makefile,v 1.1 2019/11/06 12:15:25 ng0 Exp $
+
+GITHUB_TAG=            v${PKGVERSION_NOREV}
+DISTNAME=              go-compress-1.9.1
+CATEGORIES=            devel
+MASTER_SITES=          ${MASTER_SITE_GITHUB:=klauspost/}
+GITHUB_PROJECT=                compress
+
+MAINTAINER=            ng0%NetBSD.org@localhost
+HOMEPAGE=              https://github.com/klauspost/compress/
+COMMENT=               Optimized compression packages for Go
+LICENSE=               modified-bsd
+
+GO_SRCPATH=            github.com/klauspost/compress
+GO_DIST_BASE=          compress-${PKGVERSION_NOREV}
+
+# This is a Linux specific fuzzing file.
+# This is an sh script, no Bash syntax found.
+SUBST_CLASSES+=                bash
+SUBST_STAGE.bash=      pre-build
+SUBST_FILES.bash=      ${WRKDIR}/src/github.com/klauspost/compress/fuzzit.sh
+SUBST_SED.bash=                -e "s,bash,sh,g"
+
+.include "../../devel/go-cpuid/buildlink3.mk"
+.include "../../security/go-xxhash/buildlink3.mk"
+.include "../../lang/go/go-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r d0211abcbdf0 -r 9aeb6ea8154f devel/go-compress/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/go-compress/PLIST   Wed Nov 06 12:15:25 2019 +0000
@@ -0,0 +1,289 @@
+@comment $NetBSD: PLIST,v 1.1 2019/11/06 12:15:25 ng0 Exp $
+bin/s2c
+bin/s2d
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress.a
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress/flate.a
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress/fse.a
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress/gzip.a
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress/huff0.a
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress/s2.a
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress/snappy.a
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress/zip.a
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress/zlib.a
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress/zstd.a
+gopkg/pkg/${GO_PLATFORM}/github.com/klauspost/compress/zstd/internal/xxhash.a
+gopkg/src/github.com/klauspost/compress/LICENSE
+gopkg/src/github.com/klauspost/compress/README.md
+gopkg/src/github.com/klauspost/compress/compressible.go
+gopkg/src/github.com/klauspost/compress/compressible_test.go
+gopkg/src/github.com/klauspost/compress/flate/deflate.go
+gopkg/src/github.com/klauspost/compress/flate/deflate_test.go
+gopkg/src/github.com/klauspost/compress/flate/dict_decoder.go
+gopkg/src/github.com/klauspost/compress/flate/dict_decoder_test.go
+gopkg/src/github.com/klauspost/compress/flate/fast_encoder.go
+gopkg/src/github.com/klauspost/compress/flate/flate_test.go
+gopkg/src/github.com/klauspost/compress/flate/gen.go
+gopkg/src/github.com/klauspost/compress/flate/huffman_bit_writer.go
+gopkg/src/github.com/klauspost/compress/flate/huffman_bit_writer_test.go
+gopkg/src/github.com/klauspost/compress/flate/huffman_code.go
+gopkg/src/github.com/klauspost/compress/flate/inflate.go
+gopkg/src/github.com/klauspost/compress/flate/inflate_test.go
+gopkg/src/github.com/klauspost/compress/flate/level1.go
+gopkg/src/github.com/klauspost/compress/flate/level2.go
+gopkg/src/github.com/klauspost/compress/flate/level3.go
+gopkg/src/github.com/klauspost/compress/flate/level4.go
+gopkg/src/github.com/klauspost/compress/flate/level5.go
+gopkg/src/github.com/klauspost/compress/flate/level6.go
+gopkg/src/github.com/klauspost/compress/flate/reader_test.go
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-null-max.dyn.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-null-max.dyn.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-null-max.golden
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-null-max.in
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-null-max.sync.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-null-max.sync.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-null-max.wb.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-null-max.wb.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-pi.dyn.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-pi.dyn.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-pi.golden
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-pi.in
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-pi.sync.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-pi.sync.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-pi.wb.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-pi.wb.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.dyn.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.dyn.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.golden
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.in
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.sync.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.sync.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.wb.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-1k.wb.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.dyn.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.dyn.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.golden
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.in
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.sync.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.sync.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.wb.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-limit.wb.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-max.golden
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-rand-max.in
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-shifts.dyn.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-shifts.dyn.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-shifts.golden
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-shifts.in
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-shifts.sync.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-shifts.sync.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-shifts.wb.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-shifts.wb.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text-shift.dyn.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text-shift.dyn.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text-shift.golden
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text-shift.in
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text-shift.sync.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text-shift.sync.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text-shift.wb.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text-shift.wb.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text.dyn.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text.dyn.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text.golden
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text.in
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text.sync.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text.sync.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text.wb.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-text.wb.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-zero.dyn.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-zero.dyn.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-zero.golden
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-zero.in
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-zero.sync.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-zero.sync.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-zero.wb.expect
+gopkg/src/github.com/klauspost/compress/flate/testdata/huffman-zero.wb.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/null-long-match.dyn.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/null-long-match.sync.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/null-long-match.wb.expect-noinput
+gopkg/src/github.com/klauspost/compress/flate/testdata/regression.zip
+gopkg/src/github.com/klauspost/compress/flate/testdata/tokens.bin
+gopkg/src/github.com/klauspost/compress/flate/token.go
+gopkg/src/github.com/klauspost/compress/flate/token_test.go
+gopkg/src/github.com/klauspost/compress/flate/writer_test.go
+gopkg/src/github.com/klauspost/compress/fse/README.md
+gopkg/src/github.com/klauspost/compress/fse/bitreader.go
+gopkg/src/github.com/klauspost/compress/fse/bitwriter.go
+gopkg/src/github.com/klauspost/compress/fse/bytereader.go
+gopkg/src/github.com/klauspost/compress/fse/compress.go
+gopkg/src/github.com/klauspost/compress/fse/decompress.go
+gopkg/src/github.com/klauspost/compress/fse/fse.go
+gopkg/src/github.com/klauspost/compress/fse/fse_test.go
+gopkg/src/github.com/klauspost/compress/fuzzit.sh
+gopkg/src/github.com/klauspost/compress/gzip/example_test.go
+gopkg/src/github.com/klauspost/compress/gzip/gunzip.go
+gopkg/src/github.com/klauspost/compress/gzip/gunzip_test.go
+gopkg/src/github.com/klauspost/compress/gzip/gzip.go
+gopkg/src/github.com/klauspost/compress/gzip/gzip_test.go
+gopkg/src/github.com/klauspost/compress/gzip/testdata/issue6550.gz
+gopkg/src/github.com/klauspost/compress/gzip/testdata/test.json
+gopkg/src/github.com/klauspost/compress/huff0/.gitignore
+gopkg/src/github.com/klauspost/compress/huff0/README.md
+gopkg/src/github.com/klauspost/compress/huff0/bitreader.go
+gopkg/src/github.com/klauspost/compress/huff0/bitwriter.go
+gopkg/src/github.com/klauspost/compress/huff0/bytereader.go
+gopkg/src/github.com/klauspost/compress/huff0/compress.go
+gopkg/src/github.com/klauspost/compress/huff0/compress_test.go
+gopkg/src/github.com/klauspost/compress/huff0/decompress.go
+gopkg/src/github.com/klauspost/compress/huff0/decompress_test.go
+gopkg/src/github.com/klauspost/compress/huff0/huff0.go
+gopkg/src/github.com/klauspost/compress/huff0/testdata/regression.zip
+gopkg/src/github.com/klauspost/compress/s2/.gitignore
+gopkg/src/github.com/klauspost/compress/s2/LICENSE
+gopkg/src/github.com/klauspost/compress/s2/README.md
+gopkg/src/github.com/klauspost/compress/s2/cmd/s2c/main.go
+gopkg/src/github.com/klauspost/compress/s2/cmd/s2d/main.go
+gopkg/src/github.com/klauspost/compress/s2/decode.go
+gopkg/src/github.com/klauspost/compress/s2/decode_amd64.go
+gopkg/src/github.com/klauspost/compress/s2/decode_amd64.s
+gopkg/src/github.com/klauspost/compress/s2/decode_other.go
+gopkg/src/github.com/klauspost/compress/s2/decode_test.go
+gopkg/src/github.com/klauspost/compress/s2/encode.go
+gopkg/src/github.com/klauspost/compress/s2/encode_better.go
+gopkg/src/github.com/klauspost/compress/s2/encode_other.go
+gopkg/src/github.com/klauspost/compress/s2/encode_test.go
+gopkg/src/github.com/klauspost/compress/s2/s2.go
+gopkg/src/github.com/klauspost/compress/s2/s2_test.go
+gopkg/src/github.com/klauspost/compress/s2/testdata/Mark.Twain-Tom.Sawyer.txt
+gopkg/src/github.com/klauspost/compress/s2/testdata/Mark.Twain-Tom.Sawyer.txt.rawsnappy
+gopkg/src/github.com/klauspost/compress/s2/testdata/dec-block-regressions.zip
+gopkg/src/github.com/klauspost/compress/s2/testdata/random
+gopkg/src/github.com/klauspost/compress/snappy/.gitignore
+gopkg/src/github.com/klauspost/compress/snappy/AUTHORS
+gopkg/src/github.com/klauspost/compress/snappy/CONTRIBUTORS
+gopkg/src/github.com/klauspost/compress/snappy/LICENSE
+gopkg/src/github.com/klauspost/compress/snappy/README
+gopkg/src/github.com/klauspost/compress/snappy/cmd/snappytool/main.cpp
+gopkg/src/github.com/klauspost/compress/snappy/decode.go
+gopkg/src/github.com/klauspost/compress/snappy/decode_amd64.go
+gopkg/src/github.com/klauspost/compress/snappy/decode_amd64.s
+gopkg/src/github.com/klauspost/compress/snappy/decode_other.go
+gopkg/src/github.com/klauspost/compress/snappy/encode.go
+gopkg/src/github.com/klauspost/compress/snappy/encode_amd64.go
+gopkg/src/github.com/klauspost/compress/snappy/encode_amd64.s
+gopkg/src/github.com/klauspost/compress/snappy/encode_other.go
+gopkg/src/github.com/klauspost/compress/snappy/golden_test.go
+gopkg/src/github.com/klauspost/compress/snappy/runbench.cmd
+gopkg/src/github.com/klauspost/compress/snappy/snappy.go
+gopkg/src/github.com/klauspost/compress/snappy/snappy_test.go
+gopkg/src/github.com/klauspost/compress/snappy/testdata/Mark.Twain-Tom.Sawyer.txt
+gopkg/src/github.com/klauspost/compress/snappy/testdata/Mark.Twain-Tom.Sawyer.txt.rawsnappy
+gopkg/src/github.com/klauspost/compress/snappy/testdata/alice29.txt
+gopkg/src/github.com/klauspost/compress/snappy/testdata/asyoulik.txt
+gopkg/src/github.com/klauspost/compress/snappy/testdata/fireworks.jpeg
+gopkg/src/github.com/klauspost/compress/snappy/testdata/geo.protodata
+gopkg/src/github.com/klauspost/compress/snappy/testdata/html
+gopkg/src/github.com/klauspost/compress/snappy/testdata/html_x_4
+gopkg/src/github.com/klauspost/compress/snappy/testdata/kppkn.gtb
+gopkg/src/github.com/klauspost/compress/snappy/testdata/lcet10.txt
+gopkg/src/github.com/klauspost/compress/snappy/testdata/paper-100k.pdf
+gopkg/src/github.com/klauspost/compress/snappy/testdata/plrabn12.txt
+gopkg/src/github.com/klauspost/compress/snappy/testdata/random
+gopkg/src/github.com/klauspost/compress/snappy/testdata/urls.10K
+gopkg/src/github.com/klauspost/compress/testdata/Mark.Twain-Tom.Sawyer.txt
+gopkg/src/github.com/klauspost/compress/testdata/case1.bin
+gopkg/src/github.com/klauspost/compress/testdata/case2.bin
+gopkg/src/github.com/klauspost/compress/testdata/case3.bin
+gopkg/src/github.com/klauspost/compress/testdata/crash1.bin
+gopkg/src/github.com/klauspost/compress/testdata/crash2.bin
+gopkg/src/github.com/klauspost/compress/testdata/crash3.bin
+gopkg/src/github.com/klauspost/compress/testdata/crash4.bin
+gopkg/src/github.com/klauspost/compress/testdata/crash5.bin
+gopkg/src/github.com/klauspost/compress/testdata/dec-crash6.bin
+gopkg/src/github.com/klauspost/compress/testdata/dec-hang1.bin
+gopkg/src/github.com/klauspost/compress/testdata/dec-hang2.bin
+gopkg/src/github.com/klauspost/compress/testdata/dec-hang3.bin
+gopkg/src/github.com/klauspost/compress/testdata/dec-symlen1.bin
+gopkg/src/github.com/klauspost/compress/testdata/e.txt
+gopkg/src/github.com/klauspost/compress/testdata/endnonzero.bin
+gopkg/src/github.com/klauspost/compress/testdata/endzerobits.bin
+gopkg/src/github.com/klauspost/compress/testdata/fse-artifact3.bin
+gopkg/src/github.com/klauspost/compress/testdata/gettysburg.txt
+gopkg/src/github.com/klauspost/compress/testdata/html.txt
+gopkg/src/github.com/klauspost/compress/testdata/normcount2.bin
+gopkg/src/github.com/klauspost/compress/testdata/pi.txt
+gopkg/src/github.com/klauspost/compress/testdata/pngdata.bin
+gopkg/src/github.com/klauspost/compress/testdata/sharnd.out
+gopkg/src/github.com/klauspost/compress/zip/example_test.go
+gopkg/src/github.com/klauspost/compress/zip/reader.go
+gopkg/src/github.com/klauspost/compress/zip/reader_test.go
+gopkg/src/github.com/klauspost/compress/zip/register.go
+gopkg/src/github.com/klauspost/compress/zip/struct.go
+gopkg/src/github.com/klauspost/compress/zip/testdata/crc32-not-streamed.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/dd.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/go-no-datadesc-sig.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/go-with-datadesc-sig.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/gophercolor16x16.png
+gopkg/src/github.com/klauspost/compress/zip/testdata/readme.notzip
+gopkg/src/github.com/klauspost/compress/zip/testdata/readme.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/symlink.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/test-trailing-junk.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/test.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/unix.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/winxp.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/zip64-2.zip
+gopkg/src/github.com/klauspost/compress/zip/testdata/zip64.zip
+gopkg/src/github.com/klauspost/compress/zip/writer.go
+gopkg/src/github.com/klauspost/compress/zip/writer_test.go
+gopkg/src/github.com/klauspost/compress/zip/zip_test.go
+gopkg/src/github.com/klauspost/compress/zlib/example_test.go
+gopkg/src/github.com/klauspost/compress/zlib/reader.go
+gopkg/src/github.com/klauspost/compress/zlib/reader_test.go
+gopkg/src/github.com/klauspost/compress/zlib/writer.go



Home | Main Index | Thread Index | Old Index