Skip to content

Commit 9177abb

Browse files
authored
remove bzip2 from test suite (#64)
1 parent 3cdc5a2 commit 9177abb

File tree

4 files changed

+16
-17
lines changed

4 files changed

+16
-17
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ The user need to install codecs as a plug-in to do something meaningful.
7171

7272
The following codec packages support the protocol suite:
7373
- [CodecZlib.jl](https://github.com/bicycle1885/CodecZlib.jl)
74-
- [CodecBzip2.jl](https://github.com/bicycle1885/CodecBzip2.jl)
7574
- [CodecXz.jl](https://github.com/bicycle1885/CodecXz.jl)
7675
- [CodecZstd.jl](https://github.com/bicycle1885/CodecZstd.jl)
77-
- [CodecLz4.jl](https://github.com/invenia/CodecLz4.jl) by Invenia.
7876
- [CodecBase.jl](https://github.com/bicycle1885/CodecBase.jl)
77+
- [CodecBzip2.jl](https://github.com/bicycle1885/CodecBzip2.jl)
78+
- [CodecLz4.jl](https://github.com/invenia/CodecLz4.jl) by Invenia.
7979

8080
[travisci-img]: https://travis-ci.org/bicycle1885/TranscodingStreams.jl.svg?branch=master
8181
[travisci-url]: https://travis-ci.org/bicycle1885/TranscodingStreams.jl

docs/src/index.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,6 @@ alias of `TranscodingStream{GzipDecompressor,S}`, where `S` is a subtype of
8282
<td><code>DeflateDecompressorStream</code></td>
8383
<td>Decompress data in deflate format.</td>
8484
</tr>
85-
<tr>
86-
<td rowspan="2"><a href="https://github.com/bicycle1885/CodecBzip2.jl">CodecBzip2.jl</a></td>
87-
<td rowspan="2"><a href="http://www.bzip.org/">bzip2</a></td>
88-
<td rowspan="2"></td>
89-
<td><code>Bzip2Compressor</code></td>
90-
<td><code>Bzip2CompressorStream</code></td>
91-
<td>Compress data in bzip2 (.bz2) format.</td>
92-
</tr>
93-
<tr>
94-
<td><code>Bzip2Decompressor</code></td>
95-
<td><code>Bzip2DecompressorStream</code></td>
96-
<td>Decompress data in bzip2 (.bz2) format.</td>
97-
</tr>
9885
<tr>
9986
<td rowspan="2"><a href="https://github.com/bicycle1885/CodecXz.jl">CodecXz.jl</a></td>
10087
<td rowspan="2"><a href="https://tukaani.org/xz/">xz</a></td>
@@ -154,6 +141,19 @@ alias of `TranscodingStream{GzipDecompressor,S}`, where `S` is a subtype of
154141
<td><code>Base64DecoderStream</code></td>
155142
<td>Decode binary in base64 format.</td>
156143
</tr>
144+
<tr>
145+
<td rowspan="2"><a href="https://github.com/bicycle1885/CodecBzip2.jl">CodecBzip2.jl</a></td>
146+
<td rowspan="2"><a href="http://www.bzip.org/">bzip2</a></td>
147+
<td rowspan="2"></td>
148+
<td><code>Bzip2Compressor</code></td>
149+
<td><code>Bzip2CompressorStream</code></td>
150+
<td>Compress data in bzip2 (.bz2) format.</td>
151+
</tr>
152+
<tr>
153+
<td><code>Bzip2Decompressor</code></td>
154+
<td><code>Bzip2DecompressorStream</code></td>
155+
<td>Decompress data in bzip2 (.bz2) format.</td>
156+
</tr>
157157
</table>
158158
```
159159

test/REQUIRE

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
CodecZlib 0.4
2-
CodecBzip2 0.4
32
CodecXz 0.4
43
CodecZstd 0.4
54
CodecBase 0.1

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,6 @@ include("codecinvalid.jl")
122122
include("codecquadruple.jl")
123123

124124
# Test third-party codec packages.
125-
for pkg in ["CodecZlib", "CodecBzip2", "CodecXz", "CodecZstd", "CodecBase"]
125+
for pkg in ["CodecZlib", "CodecXz", "CodecZstd", "CodecBase"]
126126
Pkg.test(pkg)
127127
end

0 commit comments

Comments
 (0)